From bb90e2595bf8cf5bd409ed8babdadb2794ea4910 Mon Sep 17 00:00:00 2001 From: Wei Wei Date: Mon, 24 Jul 2023 07:33:36 +0000 Subject: [PATCH] Update version to 3.25.0 (#2063) --- ChangeLog.md | 3 +++ README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/blob/utils/constants.ts | 2 +- src/queue/utils/constants.ts | 2 +- src/table/utils/constants.ts | 2 +- 7 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 7c4abadde..786b6ced3 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,8 +4,11 @@ ## Upcoming Release +## 2023.07 Version 3.25.0 + Table: +- Refactor table query code - Fixed issue with query table fail with filter condition as string.Empty. (issue #1880) - Fixed merge table entity fail with single quota in PK/RK. (issue #2009) diff --git a/README.md b/README.md index 4c6d688aa..3a5a96aef 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ | Version | Azure Storage API Version | Service Support | Description | Reference Links | | ------------------------------------------------------------------ | ------------------------- | ------------------------------ | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| 3.24.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.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) | | [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 02fed5a81..a881d8460 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "azurite", - "version": "3.24.0", + "version": "3.25.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "azurite", - "version": "3.24.0", + "version": "3.25.0", "license": "MIT", "dependencies": { "@azure/ms-rest-js": "^1.5.0", diff --git a/package.json b/package.json index c7b2def3e..a00d4a779 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.24.0", + "version": "3.25.0", "publisher": "Azurite", "categories": [ "Other" diff --git a/src/blob/utils/constants.ts b/src/blob/utils/constants.ts index ee48235ad..99b758252 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.24.0"; +export const VERSION = "3.25.0"; 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 618e398e3..c61ce00fc 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.24.0"; +export const VERSION = "3.25.0"; 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 a8a738363..582afb723 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.24.0"; +export const VERSION = "3.25.0"; // Max Body size is 4 MB export const BODY_SIZE_MAX = 1024 * 1024 * 4; // Max Entity sizxe is 1 MB