From 775dcaf92dffb9a569d900026118956926be1fdf Mon Sep 17 00:00:00 2001 From: Josh Feinberg <15068619+joshafeinberg@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:01:26 -0500 Subject: [PATCH] Add additional notes for release --- CHANGELOG.md | 1 + README.md | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a3764f6..afd69b325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ 7.0.0 (2024-03-19) --------------------------------------------- - [#537](https://github.com/dropbox/dropbox-sdk-java/pull/537) Remove cert pinning from the SDK +- [#539](https://github.com/dropbox/dropbox-sdk-java/pull/539) Exclude pycache from task input key on StoneTask 6.1.0 (2024-03-19) --------------------------------------------- diff --git a/README.md b/README.md index aae63f47f..f2110e5e0 100644 --- a/README.md +++ b/README.md @@ -403,7 +403,10 @@ The only ProGuard rules necessary are for the SDK's required and optional depend ### How do I enable certificate pinning? As of version 7.0.0, the SDK no longer provides certificate pinning by default. We provide hooks for you to run each of your requests with -your own `SSLSocketFactory` or `CertificatePinner`. To provide this to your calls, you can use any of the requestors provided +your own `SSLSocketFactory` or `CertificatePinner`. To provide this to your calls, you can use any of the requestors provided. + +*Note*: If you were previously using `SSLConfig`, this is no longer available. You can view the source in [git history](https://github.com/dropbox/dropbox-sdk-java/blob/0f765cb69940ac047682cf117af7a94a1f66b6eb/core/src/main/java/com/dropbox/core/http/SSLConfig.java) +but we no longer provide any default certificate pinning or any other configuration. #### Using `StandardHttpRequestor`