From 525f697c813da95c1327053cc6fac27032a436ce Mon Sep 17 00:00:00 2001 From: EmmaZhu-MSFT Date: Mon, 7 Aug 2023 13:56:16 +0800 Subject: [PATCH] Bump version for hot fix (#2085) --- ChangeLog.md | 7 +++---- README.md | 2 +- package-lock.json | 6 +++--- package.json | 2 +- src/blob/utils/constants.ts | 2 +- src/queue/utils/constants.ts | 2 +- src/table/utils/constants.ts | 2 +- 7 files changed, 11 insertions(+), 12 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 7c357f11f..557108024 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,17 +4,16 @@ ## Upcoming Release -Table: - -- Fixed issue with queries on empty string partition keys failing +## 2023.08 Version 3.25.1 Blob: - Fixed issue of: Append block not returning requestId in response. Table: - - Fixed an issue when querying datetimes with microsecond precision which resulted in match failures. (issue #2069) +- Fixed issue with queries on empty string partition keys failing +- Fixed an issue when querying datetimes with microsecond precision which resulted in match failures. (issue #2069) ## 2023.07 Version 3.25.0 diff --git a/README.md b/README.md index 3a5a96aef..a6b47e38c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ | Version | Azure Storage API Version | Service Support | Description | Reference Links | | ------------------------------------------------------------------ | ------------------------- | ------------------------------ | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| 3.25.0 | 2023-01-03 | 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.25.1 | 2023-01-03 | 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) | - [Azurite V3](#azurite-v3) diff --git a/package-lock.json b/package-lock.json index aa9e91bb4..0b839a345 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "azurite", - "version": "3.25.0", + "version": "3.25.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "azurite", - "version": "3.25.0", + "version": "3.25.1", "license": "MIT", "dependencies": { "@azure/ms-rest-js": "^1.5.0", @@ -18314,4 +18314,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index a00d4a779..74ab5979e 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.25.0", + "version": "3.25.1", "publisher": "Azurite", "categories": [ "Other" diff --git a/src/blob/utils/constants.ts b/src/blob/utils/constants.ts index 99b758252..6c4f41ee9 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.25.0"; +export const VERSION = "3.25.1"; export const BLOB_API_VERSION = "2023-01-03"; 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 c61ce00fc..02cd3f377 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.25.0"; +export const VERSION = "3.25.1"; export const QUEUE_API_VERSION = "2023-01-03"; 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 582afb723..8e9d16d64 100644 --- a/src/table/utils/constants.ts +++ b/src/table/utils/constants.ts @@ -18,7 +18,7 @@ export enum TABLE_STATUSCODE { export const DEFAULT_TABLE_CONTEXT_PATH = "azurite_table_context"; export const TABLE_API_VERSION = "2023-01-03"; -export const VERSION = "3.25.0"; +export const VERSION = "3.25.1"; // Max Body size is 4 MB export const BODY_SIZE_MAX = 1024 * 1024 * 4; // Max Entity sizxe is 1 MB