Skip to content

Commit

Permalink
[core] Prepare for Feb 2024 releases (Azure#28407)
Browse files Browse the repository at this point in the history
- bump minor versions for @azure/abort-controller dependency version
upgrade
- update CHANGELOG

---------

Co-authored-by: Timo van Veenendaal <[email protected]>
  • Loading branch information
jeremymeng and timovv authored Jan 29, 2024
1 parent 96faafa commit 7a5a9e3
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 39 deletions.
8 changes: 3 additions & 5 deletions sdk/core/core-amqp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Release History

## 4.1.1 (Unreleased)

### Features Added

### Breaking Changes
## 4.2.0 (2024-02-01)

### Bugs Fixed

- Correct timeToLive calculation to use absolute expiry time.

### Other Changes

- Upgrade dependency `@azure/abort-controller` version to `^2.0.0`.

## 4.1.0 (2023-11-07)

### Other Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-amqp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/core-amqp",
"sdk-type": "client",
"version": "4.1.1",
"version": "4.2.0",
"description": "Common library for amqp based azure sdks like @azure/event-hubs.",
"author": "Microsoft Corporation",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions sdk/core/core-client-rest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Release History

## 1.2.0 (Unreleased)
## 1.2.0 (2024-02-01)

### Features Added

- Add a new property endpoint in ClientOptions and mark the baseUri as deprecated to encourage people to use endpoint.

### Breaking Changes

### Bugs Fixed

- Fixed an issue where `multipart/form-data` requests with an array of files as a parameter would not work if any of the files were supplied as a `Uint8Array`.

### Other Changes

- Upgrade dependency `@azure/abort-controller` to `^2.0.0`.
Expand Down
8 changes: 3 additions & 5 deletions sdk/core/core-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Release History

## 1.7.4 (Unreleased)

### Features Added

### Breaking Changes
## 1.8.0 (2024-02-01)

### Bugs Fixed

- Fix an error when serializing browser ReadableStream [PR #27052](https://github.com/Azure/azure-sdk-for-js/pull/27052)

### Other Changes

- Upgrade dependency `@azure/abort-controller` version to `^2.0.0`.

## 1.7.3 (2023-06-01)

### Other Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/core-client",
"version": "1.7.4",
"version": "1.8.0",
"description": "Core library for interfacing with AutoRest generated code",
"sdk-type": "client",
"main": "dist/index.js",
Expand Down
9 changes: 2 additions & 7 deletions sdk/core/core-lro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
# Release History

## 2.5.5 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 2.6.0 (2024-02-01)

### Other Changes

- Search for the `resourceLocation` property in the raw response body if it cannot be found in the parsed response body.
- Upgrade dependency `@azure/abort-controller` version to `^2.0.0`.

## 2.5.4 (2023-07-24)

Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-lro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/core-lro",
"author": "Microsoft Corporation",
"sdk-type": "client",
"version": "2.5.5",
"version": "2.6.0",
"description": "Isomorphic client library for supporting long-running operations in node.js and browser.",
"tags": [
"isomorphic",
Expand Down
8 changes: 3 additions & 5 deletions sdk/core/core-rest-pipeline/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# Release History

## 1.13.1 (Unreleased)

### Features Added

### Breaking Changes
## 1.14.0 (2024-02-01)

### Bugs Fixed

Expand All @@ -15,6 +11,8 @@

### Other Changes

- Upgrade dependency `@azure/abort-controller` version to `^2.0.0`.

## 1.13.0 (2023-12-07)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-rest-pipeline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/core-rest-pipeline",
"version": "1.13.1",
"version": "1.14.0",
"description": "Isomorphic client library for making HTTP requests in node.js and browser.",
"sdk-type": "client",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-rest-pipeline/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const SDK_VERSION: string = "1.13.1";
export const SDK_VERSION: string = "1.14.0";

export const DEFAULT_RETRY_POLICY_COUNT = 3;
12 changes: 4 additions & 8 deletions sdk/core/core-util/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Release History

## 1.6.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 1.7.0 (2024-02-01)

### Other Changes

- Upgrade dependency `@azure/abort-controller` version to `^2.0.0`.

## 1.6.1 (2023-11-07)

### Bugs Fixed
Expand All @@ -21,7 +17,7 @@
### Features Added

- Add support for hex encoding to `uint8ArrayToString` and `stringToUint8Array`
- Fix bug when `uint8ArrayToString` with Base64 encoding would not decode binary data
- Fix bug when `uint8ArrayToString` with Base64 encoding would not decode binary data
containing bytes which are not valid ISO/IEC 8859-1 (latin1) characters.

### Bugs Fixed
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/core-util",
"version": "1.6.2",
"version": "1.7.0",
"description": "Core library for shared utility methods",
"sdk-type": "client",
"main": "dist/index.js",
Expand Down

0 comments on commit 7a5a9e3

Please sign in to comment.