From 8c9156b7c20e4a338ea8b57396fd9a7906789ccd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 16:04:03 +0000 Subject: [PATCH 1/3] chore(deps): bump codeinwp/themeisle-sdk from 3.3.48 to 3.3.49 Bumps [codeinwp/themeisle-sdk](https://github.com/Codeinwp/themeisle-sdk) from 3.3.48 to 3.3.49. - [Release notes](https://github.com/Codeinwp/themeisle-sdk/releases) - [Changelog](https://github.com/Codeinwp/themeisle-sdk/blob/v3.3.49/CHANGELOG.md) - [Commits](https://github.com/Codeinwp/themeisle-sdk/compare/v3.3.48...v3.3.49) --- updated-dependencies: - dependency-name: codeinwp/themeisle-sdk dependency-version: 3.3.49 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.lock b/composer.lock index 2bf78d33d..9d638f7d8 100644 --- a/composer.lock +++ b/composer.lock @@ -8,16 +8,16 @@ "packages": [ { "name": "codeinwp/themeisle-sdk", - "version": "3.3.48", + "version": "3.3.49", "source": { "type": "git", "url": "https://github.com/Codeinwp/themeisle-sdk.git", - "reference": "0727d2cf2fc9bfb81b42968aeaf2bf4e340f021e" + "reference": "605f78bbbd8526f7597a89077791043d9ecc8c20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/0727d2cf2fc9bfb81b42968aeaf2bf4e340f021e", - "reference": "0727d2cf2fc9bfb81b42968aeaf2bf4e340f021e", + "url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/605f78bbbd8526f7597a89077791043d9ecc8c20", + "reference": "605f78bbbd8526f7597a89077791043d9ecc8c20", "shasum": "" }, "require-dev": { @@ -36,16 +36,16 @@ "homepage": "https://themeisle.com" } ], - "description": "ThemeIsle SDK", + "description": "Themeisle SDK.", "homepage": "https://github.com/Codeinwp/themeisle-sdk", "keywords": [ "wordpress" ], "support": { "issues": "https://github.com/Codeinwp/themeisle-sdk/issues", - "source": "https://github.com/Codeinwp/themeisle-sdk/tree/v3.3.48" + "source": "https://github.com/Codeinwp/themeisle-sdk/tree/v3.3.49" }, - "time": "2025-08-11T16:47:24+00:00" + "time": "2025-09-18T13:41:05+00:00" }, { "name": "neitanod/forceutf8", From a9a37216e645d07b9c914747e2be4f8f2721117e Mon Sep 17 00:00:00 2001 From: girishpanchal30 Date: Wed, 5 Nov 2025 14:30:44 +0530 Subject: [PATCH 2/3] fix: prevent SQL injection --- classes/Visualizer/Gutenberg/Block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Visualizer/Gutenberg/Block.php b/classes/Visualizer/Gutenberg/Block.php index c648112b7..ef1f8d8a8 100644 --- a/classes/Visualizer/Gutenberg/Block.php +++ b/classes/Visualizer/Gutenberg/Block.php @@ -492,7 +492,7 @@ public function get_visualizer_data( $post ) { * @access public */ public function get_query_data( $data ) { - if ( ! current_user_can( 'edit_posts' ) ) { + if ( ! current_user_can( 'administrator' ) ) { return false; } From 8f32e054e0043f733486dbd0ee640b43328f1b19 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Thu, 6 Nov 2025 13:39:11 +0000 Subject: [PATCH 3/3] chore(release): 3.11.13 ##### [Version 3.11.13](https://github.com/Codeinwp/visualizer/compare/v3.11.12...v3.11.13) (2025-11-06) - Enhanced security --- CHANGELOG.md | 4 ++++ classes/Visualizer/Plugin.php | 2 +- css/media.css | 2 +- index.php | 2 +- package.json | 2 +- readme.md | 7 +++++++ readme.txt | 7 +++++++ 7 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a22be57ff..02c5a7f00 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +##### [Version 3.11.13](https://github.com/Codeinwp/visualizer/compare/v3.11.12...v3.11.13) (2025-11-06) + +- Enhanced security + ##### [Version 3.11.12](https://github.com/Codeinwp/visualizer/compare/v3.11.11...v3.11.12) (2025-09-04) - Updated dependencies diff --git a/classes/Visualizer/Plugin.php b/classes/Visualizer/Plugin.php index 0c8ef8410..7a7f01c52 100644 --- a/classes/Visualizer/Plugin.php +++ b/classes/Visualizer/Plugin.php @@ -28,7 +28,7 @@ class Visualizer_Plugin { const NAME = 'visualizer'; - const VERSION = '3.11.12'; + const VERSION = '3.11.13'; // custom post types const CPT_VISUALIZER = 'visualizer'; diff --git a/css/media.css b/css/media.css index 42c9b59b3..d58df9f48 100644 --- a/css/media.css +++ b/css/media.css @@ -1,5 +1,5 @@ /* - Version: 3.11.12 + Version: 3.11.13 */ #visualizer-library-view { padding: 30px 10px 10px 30px; diff --git a/index.php b/index.php index f9a507323..2531c773e 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ Plugin Name: Visualizer: Tables and Charts for WordPress Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs/ Description: Effortlessly create and embed responsive charts and tables with Visualizer, a powerful WordPress plugin that enhances data presentation from multiple sources. - Version: 3.11.12 + Version: 3.11.13 Author: Themeisle Author URI: http://themeisle.com License: GPL v2.0 or later diff --git a/package.json b/package.json index 1f193ac2d..acaffd117 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "visualizer", - "version": "3.11.12", + "version": "3.11.13", "description": "Visualizer Lite", "repository": { "type": "git", diff --git a/readme.md b/readme.md index cdab42b06..1ed616a04 100755 --- a/readme.md +++ b/readme.md @@ -223,6 +223,13 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have ` ## Changelog ## +##### [Version 3.11.13](https://github.com/Codeinwp/visualizer/compare/v3.11.12...v3.11.13) (2025-11-06) + +- Enhanced security + + + + ##### [Version 3.11.12](https://github.com/Codeinwp/visualizer/compare/v3.11.11...v3.11.12) (2025-09-04) - Updated dependencies diff --git a/readme.txt b/readme.txt index 0a08850fb..32979540d 100755 --- a/readme.txt +++ b/readme.txt @@ -223,6 +223,13 @@ Pay attention that to turn your shortcodes into graphs, your theme has to have ` == Changelog == +##### [Version 3.11.13](https://github.com/Codeinwp/visualizer/compare/v3.11.12...v3.11.13) (2025-11-06) + +- Enhanced security + + + + ##### [Version 3.11.12](https://github.com/Codeinwp/visualizer/compare/v3.11.11...v3.11.12) (2025-09-04) - Updated dependencies