Skip to content

Commit 1e79017

Browse files
authored
Bump Azurite version for release (#2306)
1 parent 85e2fdc commit 1e79017

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
55
## Upcoming Release
66

7+
## 2023.11 Version 3.28.0
8+
79
General:
810

911
- Add `--inMemoryPersistence` and `--extentMemoryLimit` options and related configs to store all data in-memory without disk persistence. (issue #2227)
@@ -13,6 +15,7 @@ Blob:
1315
- Fixed issue of not requiring SAS permission for some specific operations. (issue #2299)
1416

1517
Table:
18+
1619
- Fixed table sas request failure with table name include upper case letter (Issue #1359)
1720

1821
## 2023.10 Version 3.27.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
| Version | Azure Storage API Version | Service Support | Description | Reference Links |
1111
| ------------------------------------------------------------------ | ------------------------- | ------------------------------ | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
12-
| 3.27.0 | 2023-11-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) |
12+
| 3.28.0 | 2023-11-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) |
1313
| [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) |
1414

1515
- [Azurite V3](#azurite-v3)

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Azurite",
44
"description": "An open source Azure Storage API compatible server",
55
"icon": "icon.png",
6-
"version": "3.27.0",
6+
"version": "3.28.0",
77
"publisher": "Azurite",
88
"categories": [
99
"Other"

src/blob/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { StoreDestinationArray } from "../../common/persistence/IExtentStore";
22
import * as Models from "../generated/artifacts/models";
33

4-
export const VERSION = "3.27.0";
4+
export const VERSION = "3.28.0";
55
export const BLOB_API_VERSION = "2023-11-03";
66
export const DEFAULT_BLOB_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access
77
export const DEFAULT_LIST_BLOBS_MAX_RESULTS = 5000;

src/queue/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StoreDestinationArray } from "../../common/persistence/IExtentStore";
22

3-
export const VERSION = "3.27.0";
3+
export const VERSION = "3.28.0";
44
export const QUEUE_API_VERSION = "2023-11-03";
55
export const DEFAULT_QUEUE_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access
66
export const DEFAULT_QUEUE_LISTENING_PORT = 10001;

src/table/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export enum TABLE_STATUSCODE {
1818

1919
export const DEFAULT_TABLE_CONTEXT_PATH = "azurite_table_context";
2020
export const TABLE_API_VERSION = "2023-11-03";
21-
export const VERSION = "3.27.0";
21+
export const VERSION = "3.28.0";
2222
// Max Body size is 4 MB
2323
export const BODY_SIZE_MAX = 1024 * 1024 * 4;
2424
// Max Entity sizxe is 1 MB

0 commit comments

Comments
 (0)