From 51eaa61792a0d6ca774b8047257b796b2ef6fcf7 Mon Sep 17 00:00:00 2001 From: Max Belanger Date: Mon, 13 May 2024 13:22:25 -0700 Subject: [PATCH 1/2] prep release notes for v12 --- UPGRADING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UPGRADING.md b/UPGRADING.md index cbae53c4..0d2007e9 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -3,6 +3,10 @@ This document is designed to show you how to upgrade to the latest version of the SDK accomodating any breaking changes introduced by major version updates. If you find any issues with either this guide on upgrading or the changes introduced in the new version, please see [CONTRIBUTING.md](CONTRIBUTING.md) +# Upgrading to v12.0.0 +* The SDK no longer provides its own CA bundle to verify SSL connections. It will continue to verify connections through the `requests` library, which makes use of [`certifi`](https://github.com/certifi/python-certifi). You may still provide your own bundle (useful in certain scenarios) through the `ca_certs` parameter of the main classes and of the `create_session` function. +* This will be the last major version to support Python 2. + # Upgrading from v10.X.X to v11.0.0 The major change that happened in this new version is that we regenerated the client files using Stone 3.2.0, so relative imports are removed from the generated client files. From b266524c5b521321ac16a35f28f74a4f1d1fc59f Mon Sep 17 00:00:00 2001 From: Max Belanger Date: Mon, 13 May 2024 14:02:42 -0700 Subject: [PATCH 2/2] small fixes --- UPGRADING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADING.md b/UPGRADING.md index 0d2007e9..1b6d029b 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -4,7 +4,7 @@ This document is designed to show you how to upgrade to the latest version of th If you find any issues with either this guide on upgrading or the changes introduced in the new version, please see [CONTRIBUTING.md](CONTRIBUTING.md) # Upgrading to v12.0.0 -* The SDK no longer provides its own CA bundle to verify SSL connections. It will continue to verify connections through the `requests` library, which makes use of [`certifi`](https://github.com/certifi/python-certifi). You may still provide your own bundle (useful in certain scenarios) through the `ca_certs` parameter of the main classes and of the `create_session` function. +* The SDK no longer provides its own CA bundle to verify TLS connections. It will continue to verify connections through the `requests` library, which makes use of [`certifi`](https://github.com/certifi/python-certifi). You may still provide your own bundle through the `ca_certs` parameter of the `Dropbox` classes and of the `create_session` function (see the [documentation](https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html) for details). * This will be the last major version to support Python 2. # Upgrading from v10.X.X to v11.0.0