diff --git a/ChangeLog.md b/ChangeLog.md index a0dfafc12..25c57e27e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,9 +4,11 @@ ## Upcoming Release +## 2021.6 Version 3.13.1 + Blob: -- Fixed get service properties or account properties failure from blob endpoint when Uri has suffix '/' after account name. +- Fixed list containers, get service properties or account properties API failure, when request Uri has a suffix '/' after account name. - Fixed get system container failure. ## 2021.6 Version 3.13.0 diff --git a/README.md b/README.md index f7aa19a96..e5199a77b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ | Version | Azure Storage API Version | Service Support | Description | Reference Links | | ------------------------------------------------------------------ | ------------------------- | ------------------------------ | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| 3.13.0 | 2020-08-04 | Blob, Queue and Table(preview) | Azurite V3 based on TypeScript & New Architecture | [NPM](https://www.npmjs.com/package/azurite) - [Docker](https://hub.docker.com/_/microsoft-azure-storage-azurite) - [Visual Studio Code Extension](https://marketplace.visualstudio.com/items?itemName=Azurite.azurite) | +| 3.13.1 | 2020-08-04 | Blob, Queue and Table(preview) | Azurite V3 based on TypeScript & New Architecture | [NPM](https://www.npmjs.com/package/azurite) - [Docker](https://hub.docker.com/_/microsoft-azure-storage-azurite) - [Visual Studio Code Extension](https://marketplace.visualstudio.com/items?itemName=Azurite.azurite) | | [Legacy (v2)](https://github.com/Azure/Azurite/tree/legacy-master) | 2016-05-31 | Blob, Queue and Table | Legacy Azurite V2 | [NPM](https://www.npmjs.com/package/azurite) | ## Introduction diff --git a/package-lock.json b/package-lock.json index f87203081..5b0fcac89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "azurite", - "version": "3.13.0", + "version": "3.13.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 72f1bd934..6d84cf73c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Azurite", "description": "An open source Azure Storage API compatible server", "icon": "icon.png", - "version": "3.13.0", + "version": "3.13.1", "publisher": "Azurite", "categories": [ "Other" diff --git a/src/blob/utils/constants.ts b/src/blob/utils/constants.ts index b2daaaba5..779fb2a0d 100644 --- a/src/blob/utils/constants.ts +++ b/src/blob/utils/constants.ts @@ -1,7 +1,7 @@ import { StoreDestinationArray } from "../../common/persistence/IExtentStore"; import * as Models from "../generated/artifacts/models"; -export const VERSION = "3.13.0"; +export const VERSION = "3.13.1"; export const BLOB_API_VERSION = "2020-08-04"; export const DEFAULT_BLOB_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access export const DEFAULT_LIST_BLOBS_MAX_RESULTS = 5000; diff --git a/src/queue/utils/constants.ts b/src/queue/utils/constants.ts index 5f59b8249..9d1836fa6 100644 --- a/src/queue/utils/constants.ts +++ b/src/queue/utils/constants.ts @@ -1,6 +1,6 @@ import { StoreDestinationArray } from "../../common/persistence/IExtentStore"; -export const VERSION = "3.13.0"; +export const VERSION = "3.13.1"; export const QUEUE_API_VERSION = "2020-08-04"; export const DEFAULT_QUEUE_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access export const DEFAULT_QUEUE_LISTENING_PORT = 10001; diff --git a/src/table/utils/constants.ts b/src/table/utils/constants.ts index 865575760..7870ee44a 100644 --- a/src/table/utils/constants.ts +++ b/src/table/utils/constants.ts @@ -14,7 +14,7 @@ export enum TABLE_STATUSCODE { export const DEFAULT_TABLE_CONTEXT_PATH = "azurite_table_context"; export const TABLE_API_VERSION = "2020-08-04"; -export const VERSION = "3.13.0"; +export const VERSION = "3.13.1"; export const HeaderConstants = { SERVER: "Server",