From d2160f6bc27479e2b616b98fc54cd0fa95dbb1a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 23:08:31 +0000 Subject: [PATCH 1/5] Bump ipython from 7.16.3 to 8.10.0 Bumps [ipython](https://github.com/ipython/ipython) from 7.16.3 to 8.10.0. - [Release notes](https://github.com/ipython/ipython/releases) - [Commits](https://github.com/ipython/ipython/compare/7.16.3...8.10.0) --- updated-dependencies: - dependency-name: ipython dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cdf146a0..69925ce0 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ "colorama>=0.4.3", "keyring==18.0.1", "keyrings.alt==3.2.0", - "ipython==7.16.3", + "ipython==8.10.0", "pandas>=1.1.3", "py42>=1.26.0", ], From 6256981c7eaeccb36a1d18d93050314ee8b1dcfc Mon Sep 17 00:00:00 2001 From: Tim Abramson Date: Wed, 12 Apr 2023 08:19:15 -0500 Subject: [PATCH 2/5] Update setup.py --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 69925ce0..1f60a0c0 100644 --- a/setup.py +++ b/setup.py @@ -35,9 +35,10 @@ "click>=7.1.1", "click_plugins>=1.1.1", "colorama>=0.4.3", - "keyring==18.0.1", - "keyrings.alt==3.2.0", - "ipython==8.10.0", + "keyring>=18.0.1", + "keyrings.alt>=3.2.0", + "ipython>=7.16.3;python_version<'3.8'", + "ipython>=8.10.0;python_version>='3.8'", "pandas>=1.1.3", "py42>=1.26.0", ], From 741423ec4d9b9d5152a586eb9d9d1d5da81b8a7c Mon Sep 17 00:00:00 2001 From: Tim Abramson Date: Wed, 12 Apr 2023 09:44:16 -0500 Subject: [PATCH 3/5] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1f60a0c0..04663e40 100644 --- a/setup.py +++ b/setup.py @@ -35,8 +35,8 @@ "click>=7.1.1", "click_plugins>=1.1.1", "colorama>=0.4.3", - "keyring>=18.0.1", - "keyrings.alt>=3.2.0", + "keyring==18.0.1", + "keyrings.alt==3.2.0", "ipython>=7.16.3;python_version<'3.8'", "ipython>=8.10.0;python_version>='3.8'", "pandas>=1.1.3", From 4a4d79da2fe4fb9c03b266ee207e8b6f968b2d0b Mon Sep 17 00:00:00 2001 From: Tim Abramson Date: Wed, 12 Apr 2023 09:53:04 -0500 Subject: [PATCH 4/5] Update __version__.py --- src/code42cli/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code42cli/__version__.py b/src/code42cli/__version__.py index 9e1406d5..032e9cb4 100644 --- a/src/code42cli/__version__.py +++ b/src/code42cli/__version__.py @@ -1 +1 @@ -__version__ = "1.16.5" +__version__ = "1.16.6" From f0102bf450e46989ba9dc5a82aff7e8f79739e6c Mon Sep 17 00:00:00 2001 From: Tim Abramson Date: Wed, 12 Apr 2023 09:54:50 -0500 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcba330d..0ac452e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The intended audience of this file is for py42 consumers -- as such, changes that don't affect how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here. +## 1.16.6 - 2023-04-12 + +### Fixed + +- Vulnerability in `ipython` dependency for installs on Python 3.8+ ## 1.16.5 - 2023-02-01