From e38443222c26b850c47d8abd11bd037c176f7fb9 Mon Sep 17 00:00:00 2001 From: code-snippets-bot <139164393+code-snippets-bot@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:23:35 +0000 Subject: [PATCH 1/5] chore(release): update changelog for v3.7.1-beta.3 --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b12e762..2885abe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ + +## [3.7.1-beta.3] (2025-10-22) + +### Added +* Snippets REST API now supports pagination via page and per_page query parameters. +* Collection responses include pagination metadata headers for total items and total pages. + +### Changed +* Settings UI CSS switched to logical properties for better RTL support and consistent layout. + +### Fixed +* Snippets REST API now correctly respects the network parameter when listing snippets. +* Pagination logic corrected to reliably slice results and return stable pages. + ## [3.7.1-beta.2] (2025-10-22) ### Added From c7d9c1079faf17d9cb6c1a2cfba0db9b8d57da24 Mon Sep 17 00:00:00 2001 From: code-snippets-bot <139164393+code-snippets-bot@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:23:35 +0000 Subject: [PATCH 2/5] chore(release): update readme for v3.7.1-beta.3 --- src/readme.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/readme.txt b/src/readme.txt index b5b0bf43..55844435 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -105,6 +105,23 @@ You can report security bugs found in the source code of this plugin through the == Changelog == + += 3.7.1-beta.3 (2025-10-22) = + +__Added__ + +* Snippets REST API now supports pagination via page and per_page query parameters. +* Collection responses include pagination metadata headers for total items and total pages. + +__Changed__ + +* Settings UI CSS switched to logical properties for better RTL support and consistent layout. + +__Fixed__ + +* Snippets REST API now correctly respects the network parameter when listing snippets. +* Pagination logic corrected to reliably slice results and return stable pages. + = 3.7.1-beta.2 (2025-10-22) = __Added__ From e1e12699647b87e817fd555bc72bdc5bc5617007 Mon Sep 17 00:00:00 2001 From: code-snippets-bot <139164393+code-snippets-bot@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:24:15 +0000 Subject: [PATCH 3/5] chore(release): bump version to v3.7.1-beta.3 --- package-lock.json | 4 ++-- package.json | 2 +- src/code-snippets.php | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index a6ff81b7..fe96a6f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-snippets", - "version": "3.7.1-beta.2", + "version": "3.7.1-beta.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-snippets", - "version": "3.7.1-beta.2", + "version": "3.7.1-beta.3", "license": "GPL-2.0-or-later", "dependencies": { "@codemirror/fold": "^0.19.4", diff --git a/package.json b/package.json index 63237fe4..8d664089 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-snippets", "description": "Manage code snippets running on a WordPress-powered site through a graphical interface.", "homepage": "https://codesnippets.pro", - "version": "3.7.1-beta.2", + "version": "3.7.1-beta.3", "main": "src/dist/edit.js", "directories": { "test": "tests" diff --git a/src/code-snippets.php b/src/code-snippets.php index abcf2270..9f7789c1 100644 --- a/src/code-snippets.php +++ b/src/code-snippets.php @@ -8,11 +8,11 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.7.1-beta.2 + * Version: 3.7.1-beta.3-beta.3 * Requires PHP: 7.4 * Requires at least: 5.0 * - * @version 3.7.1-beta.2 + * @version 3.7.1-beta.3 * @package Code_Snippets * @author Shea Bunge * @copyright 2012-2024 Code Snippets Pro @@ -37,7 +37,7 @@ * * @const string */ - define( 'CODE_SNIPPETS_VERSION', '3.7.1-beta.2' ); + define( 'CODE_SNIPPETS_VERSION', '3.7.1-beta.3' ); /** * The full path to the main file of this plugin. From 27a80f2edb01c34f79eca51cede8fb75e7c9c08e Mon Sep 17 00:00:00 2001 From: Imants Date: Wed, 22 Oct 2025 16:27:47 +0300 Subject: [PATCH 4/5] fix: changelog --- CHANGELOG.md | 7 ------- src/readme.txt | 9 --------- 2 files changed, 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2885abe9..5a333535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,7 @@ ### Added * Snippets REST API now supports pagination via page and per_page query parameters. -* Collection responses include pagination metadata headers for total items and total pages. -### Changed -* Settings UI CSS switched to logical properties for better RTL support and consistent layout. - -### Fixed -* Snippets REST API now correctly respects the network parameter when listing snippets. -* Pagination logic corrected to reliably slice results and return stable pages. ## [3.7.1-beta.2] (2025-10-22) diff --git a/src/readme.txt b/src/readme.txt index 55844435..167f9bf3 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -111,16 +111,7 @@ You can report security bugs found in the source code of this plugin through the __Added__ * Snippets REST API now supports pagination via page and per_page query parameters. -* Collection responses include pagination metadata headers for total items and total pages. -__Changed__ - -* Settings UI CSS switched to logical properties for better RTL support and consistent layout. - -__Fixed__ - -* Snippets REST API now correctly respects the network parameter when listing snippets. -* Pagination logic corrected to reliably slice results and return stable pages. = 3.7.1-beta.2 (2025-10-22) = From 95af256ad459ab4789058bd6712d26e23fd85e4c Mon Sep 17 00:00:00 2001 From: Imants Date: Wed, 22 Oct 2025 16:27:56 +0300 Subject: [PATCH 5/5] fix: version --- src/code-snippets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code-snippets.php b/src/code-snippets.php index 9f7789c1..1db3c0bc 100644 --- a/src/code-snippets.php +++ b/src/code-snippets.php @@ -8,7 +8,7 @@ * License: GPL-2.0-or-later * License URI: license.txt * Text Domain: code-snippets - * Version: 3.7.1-beta.3-beta.3 + * Version: 3.7.1-beta.3 * Requires PHP: 7.4 * Requires at least: 5.0 *