Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
".git/*" \
".github/*" \
".gitignore" \
".distignore" \
"index.php" \
"node_modules/*" \
"models/*" \
Expand All @@ -60,7 +61,16 @@ jobs:
".vscode/*" \
"assets/css/src/*" \
"assets/js/src/*" \
"_docs/*"
"_docs/*" \
"README.md" \
"AGENTS.md" \
"CLAUDE.md" \
"SECURITY.md" \
".agents/*" \
"e2e/*" \
".wp-env.json" \
"playwright-report/*" \
"test-results/*"

- name: Release
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 6.4
**Tested up to:** 6.9
**Requires PHP:** 7.4
**Stable tag:** 1.4.1
**Stable tag:** 1.4.2
**License:** GPL-3.0-or-later
**License URI:** https://www.gnu.org/licenses/gpl-3.0.html

Expand Down
6 changes: 3 additions & 3 deletions internet-archive-wayback-machine-link-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* The wayback-link-fixer bootstrap file.
*
* @since 1.0.0
* @version 1.4.1
* @version 1.4.2-RC1
* @author Internet Archive
* @license GPL-3.0-or-later
*
Expand All @@ -12,7 +12,7 @@
* @wordpress-plugin
* Plugin Name: Internet Archive Wayback Machine Link Fixer
* Description: This plugin scans your content for links, replacing broken ones with archived versions from the Wayback Machine. It also features Auto Archiving, which automatically creates snapshots of your own pages and any other links on your site that aren’t yet archived, ensuring long-term accessibility.
* Version: 1.4.1
* Version: 1.4.2-RC1
* Requires at least: 6.4
* Tested up to: 7.0
* Requires PHP: 7.4
Expand All @@ -30,7 +30,7 @@
define( 'IAWMLF_BASENAME', plugin_basename( __FILE__ ) );
define( 'IAWMLF_PATH', plugin_dir_path( __FILE__ ) );
define( 'IAWMLF_URL', plugin_dir_url( __FILE__ ) );
define( 'IAWMLF_VERSION', '1.4.1' );
define( 'IAWMLF_VERSION', '1.4.2-RC1' );
define(
'IAWMLF_MINIMUM_VERSIONS',
array(
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: waybackmachineplugin, wpspecialprojects, cagrimmett, glynnquelch
Tags: wayback machine, internet archive, broken links, archive links
Requires at least: 6.4
Tested up to: 6.9
Stable tag: 1.4.1-RC1
Stable tag: 1.4.2
Requires PHP: 7.4
License: GPL-3.0-or-later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -116,6 +116,9 @@ The Internet Archive is a non-profit organization dedicated to preserving digita

== Changelog ==

= 1.4.2 =
* Fix: Manually excluded links sometimes revert to unexcluded and can still be run through the link checker process. Now fully respects manual exclusions.

= 1.4.1 =
* Fix: link data span now survives themes that wrap post content in `wp_kses_post` (previously the JSON could leak as visible text on category and archive templates).

Expand Down
Loading