Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 70 additions & 70 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

8 changes: 2 additions & 6 deletions sdk/storage/storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 12.32.0-beta.2 (Unreleased)
## 12.32.0 (2026-05-22)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Includes all features released in 12.32.0-beta.1.

## 12.32.0-beta.1 (2026-03-05)

Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-blob/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-blob",
"sdk-type": "client",
"version": "12.32.0-beta.2",
"version": "12.32.0",
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -108,7 +108,7 @@
"@azure/core-util": "^1.11.0",
"@azure/core-xml": "^1.4.5",
"@azure/logger": "^1.1.4",
"@azure/storage-common": "^12.4.0-beta.1",
"@azure/storage-common": "^12.4.0",
"events": "^3.0.0",
"tslib": "^2.8.1"
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.32.0-beta.2";
export const SDK_VERSION: string = "12.32.0";
export const SERVICE_VERSION: string = "2026-04-06";

export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/swagger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ add-credentials: false
core-http-compat-mode: true
use-extension:
"@autorest/typescript": "6.0.42"
package-version: 12.32.0-beta.2
package-version: 12.32.0
```

## Customizations for Track 2 Generator
Expand Down
6 changes: 2 additions & 4 deletions sdk/storage/storage-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Release History

## 12.4.0-beta.2 (Unreleased)
## 12.4.0 (2026-05-22)

### Features Added

### Breaking Changes
- Includes all features released in 12.4.0-beta.1.

### Bugs Fixed

- Fixed CRC64 checksum calculator failing under both module systems: `ReferenceError: require is not defined` when loaded as ESM under Node, and `SyntaxError: Unexpected token 'export'` when loaded as CommonJS. The bundled Emscripten output now polyfills `require`/`__filename`/`__dirname` from `import.meta.url` for the ESM build, and the CommonJS copy is rewritten to use `module.exports`. Issues [#38069](https://github.com/Azure/azure-sdk-for-js/issues/38069) and [#38501](https://github.com/Azure/azure-sdk-for-js/issues/38501).

### Other Changes

## 12.4.0-beta.1 (2026-03-05)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sdk-type": "client",
"sideEffects": false,
"author": "Microsoft Corporation",
"version": "12.4.0-beta.2",
"version": "12.4.0",
"description": "Azure Storage Common Client Library for JavaScript",
"license": "MIT",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ For the complete API surface, see the corresponding -node.api.md file.
-
-// @public
export interface UserDelegationKey {
signedDelegatedUserTenantId: string | undefined;
signedDelegatedUserTenantId?: string;
signedExpiresOn: Date;
signedObjectId: string;
@@ -227,10 +218,13 @@
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export interface StructuredMessageEncodingStreamOptions {

// @public
export interface UserDelegationKey {
signedDelegatedUserTenantId: string | undefined;
signedDelegatedUserTenantId?: string;
signedExpiresOn: Date;
signedObjectId: string;
signedService: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ For the complete API surface, see the corresponding -node.api.md file.
-
-// @public
export interface UserDelegationKey {
signedDelegatedUserTenantId: string | undefined;
signedDelegatedUserTenantId?: string;
signedExpiresOn: Date;
signedObjectId: string;
@@ -227,10 +217,13 @@
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface UserDelegationKey {
/**
* The delegated user tenant id in Azure AD. Return if DelegatedUserTenantId is specified.
*/
signedDelegatedUserTenantId: string | undefined;
signedDelegatedUserTenantId?: string;
/**
* The key as a base64 string.
*/
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-common/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

export const SDK_VERSION: string = "1.0.0";
export const SDK_VERSION: string = "12.4.0";

export const URLConstants = {
Parameters: {
Expand Down
18 changes: 2 additions & 16 deletions sdk/storage/storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
# Release History

## 12.30.0-beta.3 (Unreleased)
## 12.30.0 (2026-05-22)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 12.30.0-beta.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Includes all features released in 12.30.0-beta.1.

## 12.30.0-beta.1 (2026-03-05)

Expand Down
6 changes: 3 additions & 3 deletions sdk/storage/storage-file-datalake/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/storage-file-datalake",
"version": "12.30.0-beta.3",
"version": "12.30.0",
"description": "Microsoft Azure Storage SDK for JavaScript - DataLake",
"sdk-type": "client",
"main": "./dist/commonjs/index.js",
Expand Down Expand Up @@ -96,8 +96,8 @@
"@azure/core-util": "^1.11.0",
"@azure/core-xml": "^1.4.3",
"@azure/logger": "^1.1.4",
"@azure/storage-blob": "^12.32.0-beta.1",
"@azure/storage-common": "^12.4.0-beta.1",
"@azure/storage-blob": "^12.32.0",
"@azure/storage-common": "^12.4.0",
"events": "^3.3.0",
"tslib": "^2.8.1"
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/storage/storage-file-datalake/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.30.0-beta.3";
export const SDK_VERSION: string = "12.30.0";
export const SERVICE_VERSION: string = "2026-04-06";

export const KB: number = 1024;
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file-datalake/swagger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ core-http-compat-mode: true
add-credentials: false
use-extension:
"@autorest/typescript": "6.0.42"
package-version: 12.30.0-beta.3
package-version: 12.30.0
```

## Customizations for Track 2 Generator
Expand Down
8 changes: 2 additions & 6 deletions sdk/storage/storage-file-share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 12.31.0-beta.2 (Unreleased)
## 12.31.0 (2026-05-22)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Includes all features released in 12.31.0-beta.1.

## 12.31.0-beta.1 (2026-03-05)

Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-file-share/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-file-share",
"sdk-type": "client",
"version": "12.31.0-beta.2",
"version": "12.31.0",
"description": "Microsoft Azure Storage SDK for JavaScript - File",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -103,7 +103,7 @@
"@azure/core-util": "^1.11.0",
"@azure/core-xml": "^1.4.3",
"@azure/logger": "^1.1.4",
"@azure/storage-common": "^12.4.0-beta.1",
"@azure/storage-common": "^12.4.0",
"events": "^3.0.0",
"tslib": "^2.8.1"
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/storage/storage-file-share/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.31.0-beta.2";
export const SDK_VERSION: string = "12.31.0";
export const SERVICE_VERSION: string = "2026-04-06";

export const FILE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024 * 1024; // 4TB
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file-share/swagger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ add-credentials: false
core-http-compat-mode: true
use-extension:
"@autorest/typescript": "6.0.42"
package-version: 12.31.0-beta.2
package-version: 12.31.0
```

## Customizations for Track 2 Generator
Expand Down
6 changes: 6 additions & 0 deletions sdk/storage/storage-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 12.30.0 (2026-05-22)

### Features Added

- Includes all features released in 12.30.0-beta.1.

## 12.30.0-beta.1 (2026-03-05)

### Features Added
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-queue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-queue",
"sdk-type": "client",
"version": "12.30.0-beta.1",
"version": "12.30.0",
"description": "Microsoft Azure Storage SDK for JavaScript - Queue",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -102,7 +102,7 @@
"@azure/core-util": "^1.11.0",
"@azure/core-xml": "^1.4.3",
"@azure/logger": "^1.1.4",
"@azure/storage-common": "^12.4.0-beta.1",
"@azure/storage-common": "^12.4.0",
"tslib": "^2.8.1"
},
"devDependencies": {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.30.0-beta.1";
export const SDK_VERSION: string = "12.30.0";
export const SERVICE_VERSION: string = "2026-04-06";

/**
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/swagger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ add-credentials: false
core-http-compat-mode: true
use-extension:
"@autorest/typescript": "6.0.42"
package-version: 12.30.0-beta.1
package-version: 12.30.0
```

## Customizations for Track 2 Generator
Expand Down