Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into https
Browse files Browse the repository at this point in the history
  • Loading branch information
jongio committed Mar 18, 2020
2 parents cf0cb61 + 45ef4c4 commit 5f2392e
Show file tree
Hide file tree
Showing 47 changed files with 4,032 additions and 277 deletions.
6 changes: 6 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": false
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"editor.tabSize": 2,
"editor.formatOnSave": true
"editor.formatOnSave": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
9 changes: 9 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

> Note. This file includes changes after 3.0.0-preview. For legacy Azurite changes, please goto GitHub [releases](https://github.com/Azure/Azurite/releases).
## 2020.03 Version 3.6.0

- Supported conditional headers.
- Compatible with upper case or lower case of x-ms-sequence-number-action values.
- Fixed issue that x-ms-blob-sequence-number of 0 should be returned for HEAD requests on Page blob.
- Uploading blocks with different lengths of IDs to the same blob will fail.
- Check if block blob exists should fail if blocks are all uncommitted.
- Case sensitive with metadata keys.

## 2020.02 Version 3.5.0

- Bump up Azure Storage service API version to 2019-07-07.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
| Version | Azure Storage API Version | Service Support | Description | Reference Links |
| ------------------------------------------------------------------ | ------------------------- | --------------------- | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 3.5.0 | 2019-07-07 | Blob<br>Queue | 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.6.0 | 2019-07-07 | Blob<br>Queue | 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 Expand Up @@ -569,7 +569,7 @@ All the generated code is kept in `generated` folder, including the generated mi

## Support Matrix

3.5.0 release targets **2019-07-07** API version **blob** service.
Latest release targets **2019-07-07** API version **blob** service.
Detailed support matrix:

- Supported Vertical Features
Expand Down Expand Up @@ -603,19 +603,19 @@ Detailed support matrix:
- Snapshot Blob
- Copy Blob (Only supports copy within same account in Azurite)
- Abort Copy Blob (Only supports copy within same account in Azurite)
- Access control based on conditional headers
- Following features or REST APIs are NOT supported or limited supported in this release (will support more features per customers feedback in future releases)

- SharedKey Lite
- OAuth authentication
- Access control based on conditional headers (Requests will be blocked in strict mode)
- Static Website
- Soft delete & Undelete Blob
- Put Block from URL
- Incremental Copy Blob
- Create Append Blob, Append Block

3.5.0 release added support for **2019-07-07** API version **queue** service.
Detailed support matrix:
Latest version supports for **2019-07-07** API version **queue** service.
Detailed support matrix:

- Supported Vertical Features
- SharedKey Authentication
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- job: blobtestmac
displayName: Blob Test Mac
pool:
vmImage: "macOS-10.13"
vmImage: "macOS-10.14"
strategy:
matrix:
node_8_x:
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
- job: queuetestmac
displayName: Queue Test Mac
pool:
vmImage: "macOS-10.13"
vmImage: "macOS-10.14"
strategy:
matrix:
node_8_x:
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
- job: azuritenodejsmac
displayName: Azurite Mac
pool:
vmImage: "macOS-10.13"
vmImage: "macOS-10.14"
strategy:
matrix:
node_8_x:
Expand Down
Loading

0 comments on commit 5f2392e

Please sign in to comment.