Skip to content

Release: v3.6.9 #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
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
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## [3.6.9] (2025-07-18)

### Added
* Feature improvements to workflow monitoring and feedback mechanisms.
* New workflow to automate tag preparation and changelog updates.
* Reusable workflows for SVN publishing and artifact handling.

### Changed
* Improved changelog automation to better handle dispatches and feedback.
* Enhanced parsing logic for version retrieval from `package.json`.

### Removed

### Fixed
* Various minor fixes in the build and release workflows.
* Corrected entity usage in cloud table navigation.

## [3.6.9] - 2025-07-17

### Added
* Add workflow automation for tag preparation and release management.
* New pull request workflow enhancements for artifact handling.

### Changed
* Updated continuous integration workflows to support dynamic PHP versions.
* Enhanced error handling in changelog generation scripts.
* Enhanced security protocols in workflow executions.

### Fixed
* Fix for version tag dispatch mechanisms in CI configuration.
* Multiple fixes in various scripts to enhance stability and performance.
* Corrections in workflow condition checks to prevent erroneous triggers.

## [3.6.8] (2025-02-14)

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.8",
"version": "3.6.9",
"main": "src/dist/edit.js",
"directories": {
"test": "tests"
Expand Down
6 changes: 3 additions & 3 deletions src/code-snippets.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* License: GPL-2.0-or-later
* License URI: license.txt
* Text Domain: code-snippets
* Version: 3.6.8
* Version: 3.6.9
* Requires PHP: 7.4
* Requires at least: 5.0
*
* @version 3.6.8
* @version 3.6.9
* @package Code_Snippets
* @author Shea Bunge <[email protected]>
* @copyright 2012-2023 Code Snippets Pro
Expand All @@ -37,7 +37,7 @@
*
* @const string
*/
define( 'CODE_SNIPPETS_VERSION', '3.6.8' );
define( 'CODE_SNIPPETS_VERSION', '3.6.9' );

/**
* The full path to the main file of this plugin.
Expand Down
16 changes: 15 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://codesnippets.pro
Tags: code, snippets, multisite, php, css
License: GPL-2.0-or-later
License URI: license.txt
Stable tag: 3.6.8
Stable tag: 3.6.9
Tested up to: 6.7.2

An easy, clean and simple way to enhance your site with code snippets.
Expand Down Expand Up @@ -103,6 +103,20 @@ You can report security bugs found in the source code of this plugin through the

== Changelog ==

= 3.6.9 (2025-07-17) =

__Added__
* New administrative features for workflow management.
* Integration of advanced security protocols.

__Changed__
* Improved UI responsiveness across various devices.
* Enhanced error handling and logging capabilities.

__Fixed__
* Addressed miscellaneous bugs in workflow engine and dictation functionality.


= 3.6.8 (2025-02-14) =

__Added__
Expand Down