From 6a88a73e8131fa48098b89921efda36f76a9097f Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Wed, 6 Mar 2024 09:51:50 -0500 Subject: [PATCH] bumped version numbers to 3.11.0 --- .circleci/config.yml | 2 +- CHANGES.md | 3 +++ docker/dtale.env | 2 +- docs/source/conf.py | 4 ++-- frontend/package.json | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f69b866e..f0ddf68a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,7 +70,7 @@ python_variables: &python_variables CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_TEST_REPORTS: /tmp/circleci-test-results CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0 - VERSION: 3.10.0 + VERSION: 3.11.0 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases python_formatting: &python_formatting parallelism: 1 diff --git a/CHANGES.md b/CHANGES.md index 6d9d458c..85c916f0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ ## Changelog +### 3.11.0 (2024-3-6) +* Added extra security around whether a custom query can be used to protected against server-side attacks + ### 3.10.0 (2024-1-31) * Updated front-end packages (namely redux) * [#843](https://github.com/man-group/dtale/issues/843): Chart export background colors diff --git a/docker/dtale.env b/docker/dtale.env index 07b1f423..f62c76a9 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=3.10.0 +VERSION=3.11.0 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index 30575db9..80a13153 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "3.10.0" +version = "3.11.0" # The full version, including alpha/beta/rc tags. -release = "3.10.0" +release = "3.11.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/frontend/package.json b/frontend/package.json index 110ed90e..19fe352e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "3.10.0", + "version": "3.11.0", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/setup.py b/setup.py index 9c1fabf9..f9d046ee 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="3.10.0", + version="3.11.0", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",