Skip to content

Commit ce8b854

Browse files
authored
[Key Vault] Prepare patch release for Key Vault JCA (#45286)
* Moved Key Vault v2 files to a separate folder * Updated shading configuration and added notice for effective_tld_names.dat * Update CHANGELOG.md
1 parent 765e14a commit ce8b854

File tree

6 files changed

+26
-20
lines changed

6 files changed

+26
-20
lines changed

NOTICE.txt

+17
Original file line numberDiff line numberDiff line change
@@ -593,3 +593,20 @@ Copyright [2023] [OpenTelemetry]
593593
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
594594
See the License for the specific language governing permissions and
595595
limitations under the License.
596+
597+
-------------------------------------------------------------------------------
598+
599+
License notice for Public Suffix List
600+
-------------------------------------------------------------------------------
601+
602+
This project includes the file `effective_tld_names.dat`, which is part of the Public Suffix List maintained by Mozilla
603+
and used under the Mozilla Public License 2.0. See https://publicsuffix.org/ for more information.
604+
605+
This file is licensed under the Mozilla Public License, Version 2.0 (the "License"); you may not use this file except in
606+
compliance with the License. You may obtain a copy of the License at:
607+
608+
https://www.mozilla.org/MPL/2.0/
609+
610+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
611+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
612+
language governing permissions and limitations under the License.

eng/versioning/version_client.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ com.azure:azure-security-attestation;1.1.32;1.2.0-beta.1
172172
com.azure:azure-security-confidentialledger;1.0.28;1.1.0-beta.2
173173
com.azure:azure-security-keyvault-administration;4.6.4;4.7.0-beta.2
174174
com.azure:azure-security-keyvault-certificates;4.7.4;4.8.0-beta.2
175-
com.azure:azure-security-keyvault-jca;2.10.0;2.11.0-beta.1
175+
com.azure:azure-security-keyvault-jca;2.10.0;2.10.1
176176
com.azure:azure-security-test-keyvault-jca;1.0.0;1.0.0
177177
com.azure:azure-security-keyvault-keys;4.9.4;4.10.0-beta.2
178178
com.azure:azure-security-keyvault-secrets;4.9.4;4.10.0-beta.2

sdk/keyvault/azure-security-keyvault-jca/CHANGELOG.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Release History
22

3-
## 2.11.0-beta.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 2.10.1 (2025-05-12)
84

95
### Bugs Fixed
106
- Fixed bug: Missing logging for abnormal http status codes when processing HTTP responses. [#42859](https://github.com/Azure/azure-sdk-for-java/issues/42859).
@@ -13,7 +9,8 @@
139

1410
#### Dependency Updates
1511

16-
- Upgraded from `org.apache.httpcomponents:httpclient:4.5.14` to `org.apache.httpcomponents.client5:httpclient5:5.4.3`.
12+
- Replaced `org.apache.httpcomponents:httpclient:4.5.14` with `org.apache.httpcomponents.client5:httpclient5:5.4.3`.
13+
- Updated `com.azure:azure-json:1.3.0` to `com.azure:azure-json:1.5.0`.
1714

1815
## 2.10.0 (2024-11-26)
1916

sdk/keyvault/azure-security-keyvault-jca/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ add the direct dependency to your project as follows.
6464
<dependency>
6565
<groupId>com.azure</groupId>
6666
<artifactId>azure-security-keyvault-jca</artifactId>
67-
<version>2.11.0-beta.1</version>
67+
<version>2.10.1</version>
6868
</dependency>
6969
```
7070
[//]: # ({x-version-update-end})

sdk/keyvault/azure-security-keyvault-jca/pom.xml

+3-11
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<groupId>com.azure</groupId>
1616
<artifactId>azure-security-keyvault-jca</artifactId>
17-
<version>2.11.0-beta.1</version> <!-- {x-version-update;com.azure:azure-security-keyvault-jca;current} -->
17+
<version>2.10.1</version> <!-- {x-version-update;com.azure:azure-security-keyvault-jca;current} -->
1818
<name>JCA Provider for Azure Key Vault</name>
1919
<description>The Java Crypto Architecture (JCA) Provider for Azure Key Vault</description>
2020

@@ -201,16 +201,8 @@
201201
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.com.azure.json</shadedPattern>
202202
</relocation>
203203
<relocation>
204-
<pattern>org.apache.commons</pattern>
205-
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.org.apache.commons</shadedPattern>
206-
</relocation>
207-
<relocation>
208-
<pattern>org.apache.http</pattern>
209-
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.org.apache.http</shadedPattern>
210-
</relocation>
211-
<relocation>
212-
<pattern>mozilla</pattern>
213-
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.mozilla</shadedPattern>
204+
<pattern>org.apache.hc</pattern>
205+
<shadedPattern>com.azure.security.keyvault.jca.implementation.shaded.org.apache.hc</shadedPattern>
214206
</relocation>
215207
<relocation>
216208
<pattern>org.slf4j</pattern>

sdk/keyvault/azure-security-test-keyvault-jca/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.azure</groupId>
2929
<artifactId>azure-security-keyvault-jca</artifactId>
30-
<version>2.11.0-beta.1</version> <!-- {x-version-update;com.azure:azure-security-keyvault-jca;current} -->
30+
<version>2.10.1</version> <!-- {x-version-update;com.azure:azure-security-keyvault-jca;current} -->
3131
</dependency>
3232

3333
<!-- Apache HttpClient -->

0 commit comments

Comments
 (0)