Skip to content

Commit

Permalink
Update version to 3.25.0 (#2063)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueww committed Jul 24, 2023
1 parent 5c46c67 commit bb90e25
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/blob/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/queue/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/table/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb90e25

Please sign in to comment.