Skip to content

Commit

Permalink
Upgrade version to 3.13.1 (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueww authored Jun 11, 2021
1 parent d3caad6 commit ca7a54c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.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
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0",
"version": "3.13.1",
"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.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;
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.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;
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 @@ -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",
Expand Down

0 comments on commit ca7a54c

Please sign in to comment.