Skip to content

Commit bcc9b59

Browse files
committed
Version 9.9.4
1 parent 3a6ba9c commit bcc9b59

5 files changed

Lines changed: 13 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## 9.9.4 (2026-04-15)
4+
35
- Fixed an issue where crawled paths with redirects could be assigned
46
filenames.
57

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
with pkgs;
2020
let
2121
name = "staticweb-deploy";
22-
version = "9.9.3";
22+
version = "9.9.4";
2323
composerSrc = pkgs.lib.cleanSourceWith {
2424
src = self;
2525
filter =

readme.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: staticwebio
33
Tags: performance, s3, security, speed, static site generator
44
Requires at least: 6.4
55
Tested up to: 7.0
6-
Stable tag: 9.9.3
6+
Stable tag: 9.9.4
77
Requires PHP: 8.2
88
License: Unlicense
99
License URI: https://github.com/staticweb-io/static-deploy/blob/develop/LICENSE
@@ -34,6 +34,9 @@ This dramatically reduces the attack surface of your website and makes expensive
3434

3535
Full changelog available at https://github.com/staticweb-io/static-deploy/blob/develop/CHANGELOG.md
3636

37+
= 9.9.4 =
38+
Fix crawled redirects getting filenames assigned.
39+
3740
= 9.9.3 =
3841
Fix multiline options in admin did not save properly.
3942
Fix an issue where the crawler could pass along a directory path
@@ -44,11 +47,11 @@ Enable Direct Deploy Post by default in new installs.
4447
Show hashes and deployed at times on deploy cache pages.
4548
Numerous fixes.
4649

47-
= 9.8.0 =
48-
Require PHP 8.2 or later.
49-
5050
== Upgrade Notice ==
5151

52+
= 9.9.4 =
53+
Fix crawled redirects getting filenames assigned.
54+
5255
= 9.9.3 =
5356
Fix multiline options in admin did not save properly.
5457
Fix an issue where the crawler could pass along a directory path
@@ -58,6 +61,3 @@ instead of passing the index.html filename for a crawled page.
5861
Enable Direct Deploy Post by default in new installs.
5962
Show hashes and deployed at times on deploy cache pages.
6063
Numerous fixes.
61-
62-
= 9.8.0 =
63-
Require PHP 8.2 or later.

src-github/drop-in/advanced-cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Static Deploy Page Cache (Drop-in)
44
* Plugin URI: https://github.com/staticweb-io/static-deploy
55
* Description: Advanced page caching and optimization.
6-
* Version: 9.9.3
6+
* Version: 9.9.4
77
* Author: StaticWeb.io
88
* Author URI: https://github.com/staticweb-io/static-deploy
99
* Text Domain: static-deploy

staticweb-deploy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: StaticWeb Deploy
44
* Plugin URI: https://github.com/staticweb-io/static-deploy
55
* Description: Generate static sites for deployment as files or S3-compatible storage.
6-
* Version: 9.9.3
6+
* Version: 9.9.4
77
* Author: StaticWeb.io
88
* Author URI: https://staticweb.io
99
* Text Domain: staticweb-deploy
@@ -23,7 +23,7 @@
2323
return;
2424
}
2525

26-
define( 'STATIC_DEPLOY_VERSION', '9.9.3' );
26+
define( 'STATIC_DEPLOY_VERSION', '9.9.4' );
2727
define( 'STATIC_DEPLOY_PATH', plugin_dir_path( __FILE__ ) );
2828

2929
if ( ! defined( 'STATIC_DEPLOY_DEBUG' ) ) {

0 commit comments

Comments
 (0)