Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Storage] Update version numbers - 12.0.0-preview.3 #5060

Merged
merged 1 commit into from
Sep 9, 2019
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
8 changes: 4 additions & 4 deletions sdk/storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ This project provides client libraries in JavaScript that makes it easy to consu
- [Source Code - File](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-file)
- [Source Code - Queue](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-queue)
- [Product documentation](https://docs.microsoft.com/en-us/azure/storage)
- @azure/storage-blob [Package (npm)](https://www.npmjs.com/package/@azure/storage-blob/v/12.0.0-preview.2)
- @azure/storage-file [Package (npm)](https://www.npmjs.com/package/@azure/storage-file/v/12.0.0-preview.2)
- @azure/storage-queue [Package (npm)](https://www.npmjs.com/package/@azure/storage-queue/v/12.0.0-preview.2)
- @azure/storage-blob [Package (npm)](https://www.npmjs.com/package/@azure/storage-blob/v/12.0.0-preview.3)
- @azure/storage-file [Package (npm)](https://www.npmjs.com/package/@azure/storage-file/v/12.0.0-preview.3)
- @azure/storage-queue [Package (npm)](https://www.npmjs.com/package/@azure/storage-queue/v/12.0.0-preview.3)
- [API Reference documentation](https://azure.github.io/azure-sdk-for-js)
- [Azure Storage REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/)

Expand Down Expand Up @@ -96,7 +96,7 @@ The preferred way to install the Azure Storage client libraries for JavaScript i
Simply type the following into a terminal window:

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

In your TypeScript or JavaScript file, import via following:
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/BreakingChanges.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Breaking Changes

### Coming soon... Version 12.0.0-preview.3
### 2019.09 Version 12.0.0-preview.3

- `RawTokenCredential` is dropped. TokenCredential implementations can be found in the [@azure/identity](https://www.npmjs.com/package/@azure/identity) library for authentication.

Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-blob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Azure Blob storage is Microsoft's object storage solution for the cloud. Blob st

This project provides a client library in JavaScript that makes it easy to consume Microsoft Azure Blob Storage service.

[Source code](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-blob) | [Package (npm)](https://www.npmjs.com/package/@azure/storage-blob/v/12.0.0-preview.2) | [API Reference Documentation](https://azure.github.io/azure-sdk-for-js/storage-blob/index.html) | [Product documentation](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blobs-overview) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-blob/samples) | [Azure Storage Blob REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api)
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-blob) | [Package (npm)](https://www.npmjs.com/package/@azure/storage-blob/v/12.0.0-preview.3) | [API Reference Documentation](https://azure.github.io/azure-sdk-for-js/storage-blob/index.html) | [Product documentation](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blobs-overview) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-blob/samples) | [Azure Storage Blob REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api)

## Key concepts

Expand Down Expand Up @@ -70,7 +70,7 @@ There are differences between Node.js and browsers runtime. When getting started
The preferred way to install the Azure Blob Storage client library for JavaScript is to use the npm package manager. Simply type the following into a terminal window:

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

In your TypeScript or JavaScript file, import via following:
Expand Down
2 changes: 1 addition & 1 deletion 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.0.0-preview.2",
"version": "12.0.0-preview.3",
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
"main": "./dist/index.js",
"module": "./dist-esm/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Run the below in your samples folder to install the npm package for Azure Storage Blob library.

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

## Get account credentials of your storage account
Expand Down
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. All rights reserved.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.0.0-preview.2";
export const SDK_VERSION: string = "12.0.0-preview.3";
export const SERVICE_VERSION: string = "2018-11-09";

export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Azure Files offers fully managed file shares in the cloud that are accessible vi

This project provides a client library in JavaScript that makes it easy to consume Microsoft Azure File Storage service.

[Source code](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-file) | [Package (npm)](https://www.npmjs.com/package/@azure/storage-blob/v/12.0.0-preview.2) | [API Reference Documentation](https://azure.github.io/azure-sdk-for-js/storage-file/index.html) | [Product documentation](https://docs.microsoft.com/en-us/azure/storage/files/storage-files-introduction) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-file/samples) | [Azure Storage File REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/file-service-rest-api)
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-file) | [Package (npm)](https://www.npmjs.com/package/@azure/storage-blob/v/12.0.0-preview.3) | [API Reference Documentation](https://azure.github.io/azure-sdk-for-js/storage-file/index.html) | [Product documentation](https://docs.microsoft.com/en-us/azure/storage/files/storage-files-introduction) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-file/samples) | [Azure Storage File REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/file-service-rest-api)

## Key concepts

Expand Down Expand Up @@ -69,7 +69,7 @@ There are differences between Node.js and browsers runtime. When getting started
The preferred way to install the Azure File Storage client library for JavaScript is to use the npm package manager. Simply type the following into a terminal window:

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

In your TypeScript or JavaScript file, import via following:
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-file",
"sdk-type": "client",
"version": "12.0.0-preview.2",
"version": "12.0.0-preview.3",
"description": "Microsoft Azure Storage SDK for JavaScript - File",
"main": "./dist/index.js",
"module": "./dist-esm/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Run the below in your samples folder to install the npm package for Azure Storage File library.

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

## Get account credentials of your storage account
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.0.0-preview.2";
export const SDK_VERSION: string = "12.0.0-preview.3";
export const SERVICE_VERSION: string = "2018-11-09";

export const FILE_MAX_SIZE_BYTES: number = 1024 * 1024 * 1024 * 1024; // 1TB
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/BreakingChanges.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Breaking Changes

### Coming soon... Version 12.0.0-preview.3
### 2019.09 Version 12.0.0-preview.3

- [Breaking] `RawTokenCredential` is dropped. TokenCredential implementations can be found in the [@azure/identity](https://www.npmjs.com/package/@azure/identity) library for authentication.

Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/storage-queue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Azure Queue storage provides cloud messaging between application components. In

This project provides a client library in JavaScript that makes it easy to consume Microsoft Azure Queue Storage service.

[Source code](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-queue) | [Package (npm)](https://www.npmjs.com/package/@azure/storage-queue/v/12.0.0-preview.2) | [API Reference Documentation](https://azure.github.io/azure-sdk-for-js/storage-queue/index.html) | [Product documentation](https://docs.microsoft.com/en-us/azure/storage/queues/storage-dotnet-how-to-use-queues) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-queue/samples) | [Azure Storage Queue REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/queue-service-rest-api)
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-queue) | [Package (npm)](https://www.npmjs.com/package/@azure/storage-queue/v/12.0.0-preview.3) | [API Reference Documentation](https://azure.github.io/azure-sdk-for-js/storage-queue/index.html) | [Product documentation](https://docs.microsoft.com/en-us/azure/storage/queues/storage-dotnet-how-to-use-queues) | [Samples](https://github.com/Azure/azure-sdk-for-js/tree/feature/storage/sdk/storage/storage-queue/samples) | [Azure Storage Queue REST APIs](https://docs.microsoft.com/en-us/rest/api/storageservices/queue-service-rest-api)

## Key concepts

Expand Down Expand Up @@ -58,7 +58,7 @@ There are differences between Node.js and browsers runtime. When getting started
The preferred way to install the Azure Queue Storage client library for JavaScript is to use the npm package manager. Simply type the following into a terminal window:

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

In your TypeScript or JavaScript file, import via following:
Expand Down
2 changes: 1 addition & 1 deletion 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.0.0-preview.2",
"version": "12.0.0-preview.3",
"description": "Microsoft Azure Storage SDK for JavaScript - Queue",
"main": "./dist/index.js",
"module": "./dist-esm/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Run the below in your samples folder to install the npm package for Azure Storage Queue library.

```bash
npm install @azure/[email protected].2
npm install @azure/[email protected].3
```

## Get account credentials of your storage account
Expand Down
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. All rights reserved.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.0.0-preview.2";
export const SDK_VERSION: string = "12.0.0-preview.3";
export const SERVICE_VERSION: string = "2018-11-09";

export const URLConstants = {
Expand Down