Skip to content

Commit 5a9d824

Browse files
authored
release(sync): Merge pull request #273 from codesnippetspro/tag/v3.8.0
Release: v3.8.0
2 parents a81b4f2 + 90e124e commit 5a9d824

File tree

5 files changed

+33
-31
lines changed

5 files changed

+33
-31
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,29 @@
11
# Changelog
22

3+
## [3.8.0] (2025-10-24)
34

5+
### Added
6+
* @CarolinaOP and @louiswol94 join the team as plugin contributors.
7+
* File-based execution mode for snippets (optional in plugin settings).
8+
* Version switch option for easily rolling back the plugin to an earlier release.
9+
10+
### Changed
11+
* Prefixed Composer packages to reduce collisions with other plugins.
12+
* Snippets REST API now supports pagination via page and per_page query parameters.
13+
* Improved editor preview behavior.
14+
* Minor UI improvements to the editor and sidebar.
415

16+
### Fixed
17+
* Issues with snippet evaluation and front-end initialization in edge cases.
18+
* Improved reliability of snippet evaluation.
19+
* JavaScript and CSS snippets loading twice due to a conditions bug. (PRO)
20+
* Issue where some conditions didn’t work due to loading before the loop. (PRO)
521

622
## [3.7.1-beta.3] (2025-10-22)
723

824
### Added
925
* Snippets REST API now supports pagination via page and per_page query parameters.
1026

11-
1227
## [3.7.1-beta.2] (2025-10-22)
1328

1429
### Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "code-snippets",
33
"description": "Manage code snippets running on a WordPress-powered site through a graphical interface.",
44
"homepage": "https://codesnippets.pro",
5-
"version": "3.7.1-beta.3",
5+
"version": "3.8.0",
66
"main": "src/dist/edit.js",
77
"directories": {
88
"test": "tests"

src/code-snippets.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* License: GPL-2.0-or-later
99
* License URI: license.txt
1010
* Text Domain: code-snippets
11-
* Version: 3.7.1-beta.3
11+
* Version: 3.8.0
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.0
1414
*
15-
* @version 3.7.1-beta.3
15+
* @version 3.8.0
1616
* @package Code_Snippets
1717
* @author Shea Bunge <[email protected]>
1818
* @copyright 2012-2024 Code Snippets Pro
@@ -37,7 +37,7 @@
3737
*
3838
* @const string
3939
*/
40-
define( 'CODE_SNIPPETS_VERSION', '3.7.1-beta.3' );
40+
define( 'CODE_SNIPPETS_VERSION', '3.8.0' );
4141

4242
/**
4343
* The full path to the main file of this plugin.

src/readme.txt

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro
44
Tags: code, snippets, multisite, php, css
55
License: GPL-2.0-or-later
66
License URI: license.txt
7-
Stable tag: 3.7.0
7+
Stable tag: 3.8.0
88
Tested up to: 6.8.2
99

1010
An easy, clean and simple way to enhance your site with code snippets.
@@ -106,41 +106,28 @@ You can report security bugs found in the source code of this plugin through the
106106

107107

108108

109-
= 3.7.1-beta.3 (2025-10-22) =
110-
111-
__Added__
112-
113-
* Snippets REST API now supports pagination via page and per_page query parameters.
114109

115-
116-
= 3.7.1-beta.2 (2025-10-22) =
110+
= 3.8.0 (2025-10-24) =
117111

118112
__Added__
119113

120-
* Implemented version switching with a new 'Version Switch' section in Settings
121-
122-
= 3.7.1-beta.1 (2025-10-16) =
123-
124-
__Added__
125-
126-
* Added @CarolinaOP and @louiswol94 as plugin contributors
127-
* File-based execution mode for snippets (Optional in Plugin Settings)
114+
* @CarolinaOP and @louiswol94 join the team as plugin contributors.
115+
* File-based execution mode for snippets (Optional in Plugin Settings).
116+
* Version switch option, to help easily rollback the plugin to an earlier release.
117+
* Minor UI improvements to the editor and sidebar.
128118

129119
__Changed__
130120

131-
* Minor UI/UX tweaks to the editor form and sidebar
121+
* Prefixed Composer packages to reduce collisions with other plugins.
122+
* Snippets REST API now supports pagination via page and per_page query parameters.
132123
* Improved editor preview behavior.
133124

134125
__Fixed__
135126

136-
* Improved reliability of snippet evaluation and front-end integration.
137-
* Prefixed Composer packages to reduce collisions with other plugins, especially those using Guzzle.
138-
* Functions conditions were loading before loop setup, resulting in some conditions not working. (PRO)
127+
* Fixed issues with snippet evaluation and front-end initialization in edge cases.
128+
* Improved reliability of snippet evaluation.
139129
* JavaScript and CSS snippets loading twice due to a conditions bug. (PRO)
140-
141-
__Removed__
142-
143-
* Removed CSS linting within the editor until a modern replacement can be implemented.
130+
* Fixed issue where some conditions didn’t work due to loading before the loop. (PRO)
144131

145132
= 3.7.0 (2025-08-29) =
146133

0 commit comments

Comments
 (0)