Skip to content

Commit 60d4d5b

Browse files
authored
[Tables] Support SAS Credential and SAS generation (Azure#15564)
1 parent 3f9a868 commit 60d4d5b

File tree

120 files changed

+4482
-2558
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+4482
-2558
lines changed

sdk/tables/data-tables/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Release History
22

3-
## 12.0.0-beta.4 (Unreleased)
3+
## 12.0.0 (UNRELEASED)
44

5+
This release marks the general availability of the `@azure/data-tables` package.
6+
7+
- Added support for generating SAS tokens using an `AzureNamedKeyCredential` [#15564](https://github.com/Azure/azure-sdk-for-js/pull/15564)
8+
- Use @azure/core-auth `AzureSASCredendial` [#15564](https://github.com/Azure/azure-sdk-for-js/pull/15564)
9+
- Fix submit transaction issue [15403](https://github.com/Azure/azure-sdk-for-js/issues/15403) when sending multiple transactions. [#15493](https://github.com/Azure/azure-sdk-for-js/pull/15493)
10+
11+
### Breaking Changes
12+
13+
- Use @azure/core-auth `AzureNamedKeyCredential` [#15529](https://github.com/Azure/azure-sdk-for-js/pull/15529)
514

615
## 12.0.0-beta.3 (2021-05-17)
716

sdk/tables/data-tables/package.json

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/data-tables",
3-
"version": "12.0.0-beta.4",
3+
"version": "12.0.0",
44
"description": "An isomorphic client library for the Azure Tables service.",
55
"sdk-type": "client",
66
"main": "dist/index.js",
@@ -14,15 +14,22 @@
1414
"./dist-esm/test/public/utils/env.js": "./dist-esm/test/public/utils/env.browser.js"
1515
},
1616
"types": "types/latest/data-tables.d.ts",
17+
"typesVersions": {
18+
"<3.6": {
19+
"types/latest/*": [
20+
"types/3.1/*"
21+
]
22+
}
23+
},
1724
"scripts": {
1825
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
19-
"build:autorest": "autorest ./swagger/README.md --typescript --package-version=1.0.0-beta.4",
26+
"build:autorest": "autorest ./swagger/README.md --typescript",
2027
"build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
2128
"build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
2229
"build:samples": "echo Obsolete.",
2330
"build:test": "tsc -p . && rollup -c 2>&1",
2431
"build:types": "downlevel-dts types/latest types/3.1",
25-
"build": "tsc -p . && rollup -c 2>&1 && api-extractor run --local",
32+
"build": "tsc -p . && rollup -c 2>&1 && api-extractor run --local && npm run build:types",
2633
"check-format": "prettier --list-different \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
2734
"clean": "rimraf dist dist-* types *.tgz *.log",
2835
"execute:samples": "dev-tool samples run samples-dev",
@@ -48,6 +55,7 @@
4855
"dist-esm/src/",
4956
"types/tables.d.ts",
5057
"types/latest/",
58+
"types/3.1/",
5159
"README.md",
5260
"LICENSE"
5361
],
@@ -140,13 +148,13 @@
140148
},
141149
"//metadata": {
142150
"constantPaths": [
143-
{
144-
"path": "src/generated/generatedClientContext.ts",
145-
"prefix": "packageVersion"
146-
},
147151
{
148152
"path": "src/utils/constants.ts",
149153
"prefix": "SDK_VERSION"
154+
},
155+
{
156+
"path": "swagger/README.md",
157+
"prefix": "package-version"
150158
}
151159
]
152160
}

sdk/tables/data-tables/recordings/browsers/batch_operations/recording_should_send_a_set_of_create_actions_when_using_tabletransaction_helper.json

Lines changed: 0 additions & 48 deletions
This file was deleted.

sdk/tables/data-tables/recordings/browsers/batch_operations/recording_should_send_a_set_of_create_batch_operations.json

Lines changed: 0 additions & 48 deletions
This file was deleted.

sdk/tables/data-tables/recordings/browsers/batch_operations/recording_should_send_a_set_of_delete_batch_operations.json

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)