PluginProbe
Code Snippets / 4.0.0-beta.2
Code Snippets v4.0.0-beta.2
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
← All changes | readme.txt +33 -9 3.10.1 → 4.0.0-beta.2 View file →
@@ -1,13 +1,13 @@
1 1 === Code Snippets ===
2 -Contributors: bungeshea, ver3, lightbulbman, 0aksmith, johnpixle, louiswol94, carolinaop
2 +Contributors: bungeshea, ver3, lightbulbman, 0aksmith, johnpixle, carolinaop, tallblokeuk
3 3 Donate link: https://codesnippets.pro
4 4 Tags: code, snippets, multisite, php, css
5 5 License: GPL-2.0-or-later
6 6 License URI: license.txt
7 -Stable tag: 3.10.1
7 +Stable tag: 3.10.2
8 8 Requires at least: 5.5
9 -Tested up to: 7.0.3
9 +Tested up to: 7.1
10 10 Requires PHP: 7.4
11 11
12 12 An easy, clean, and simple way to enhance your site with code snippets.
13 13
@@ -105,21 +105,45 @@
105 105 4. Importing snippets from an export file
106 106
107 107 == Changelog ==
108 108
109 += 3.10.2 (2026-09-01) =
110 +
111 +__Added__
112 +
113 +* Added a confirmation flow for run-once snippet execution and hardened the handler to prevent failed or confusing actions.
114 +
115 +__Changed__
116 +
117 +* Snippet names now respect the row truncation Screen Option in the admin list for better readability.
118 +* Version switching AJAX requests now validate the correct nonce, improving reliability when updating snippet versions.
119 +
120 +__Fixed__
121 +
122 +* Fixed safe mode fatal errors caused by an undefined wp_get_current_user() call.
123 +* Fixed PHP validation being triggered incorrectly when activating snippets in bulk.
124 +* Fixed saving issues after a user session expires.
125 +* Fixed warnings caused by aliased field names when reading modified snippet fields.
126 +* Fixed vendor autoloader issues by stripping unprefixed namespace references.
127 +* Resolved issues where snippet names and version switches could behave inconsistently in the admin UI.
128 +
109 129 = 3.10.1 (2026-08-28) =
110 130
111 131 __Changed__
112 132
113 -* Enhanced active-link visibility in the toolbar with border-based styling
114 -* Standardized sidebar label font sizing for consistency
133 +* Enhanced active-link visibility in the toolbar with border-based styling.
115 134
116 135 __Fixed__
117 136
118 -* Fixed admin bar script loading on core to work correctly on front-end
119 -* Fixed snippet modification dates to send with proper UTC offset
120 -* Fixed row truncation screen option to persist correctly across sessions
121 -* Fixed sticky sidebar from displaying unwanted horizontal scrollbar
137 +* Fixed a fatal error affecting snippets that use a `namespace` or `declare` statement.
138 +* Fixed the snippets page rendering blank when another plugin's screen settings filter returned an invalid value.
139 +* Fixed snippet saving on hosts that block REST API `PUT` and `PATCH` requests, by sending writes as `POST` with a method override.
140 +* Fixed the Snippets List Order setting not being applied to the snippets list.
141 +* Fixed admin bar snippet scripts failing to load on the free version, including on the site front end.
142 +* Fixed snippet modified dates being sent without the correct UTC offset.
143 +* Fixed the row truncation screen option not persisting across sessions.
144 +* Fixed inconsistent sidebar label sizes.
145 +* Fixed the sticky editor sidebar showing an unwanted horizontal scrollbar.
122 146
123 147 = 3.10.0 (2026-08-24) =
124 148
125 149 __Added__