@azure/data-tables 13.0.0-alpha.20211111.1 → 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -2
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/package.json +4 -4
- package/types/3.1/data-tables.d.ts +2 -0
- package/types/latest/data-tables.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
-
## 13.0.0 (2021-11-
|
|
3
|
+
## 13.0.0 (2021-11-11)
|
|
4
|
+
|
|
5
|
+
### Acknowledgments
|
|
6
|
+
|
|
7
|
+
Thank you to our developer community members who helped to make the Azure Tables client library better with their contributions to this release:
|
|
8
|
+
|
|
9
|
+
- Daniel Hensby _([GitHub](https://github.com/dhensby))_
|
|
4
10
|
|
|
5
11
|
### Features Added
|
|
6
12
|
|
|
@@ -21,7 +27,7 @@
|
|
|
21
27
|
- Issue #18521 - `upsertEntity` doesn't work with "" for partition or row keys. [#18586](https://github.com/Azure/azure-sdk-for-js/pull/18586)
|
|
22
28
|
|
|
23
29
|
### Other Changes
|
|
24
|
-
|
|
30
|
+
- Export RestError [#18635](https://github.com/Azure/azure-sdk-for-js/pull/18635). (A community contribution, courtesy of _[dhensby](https://github.com/dhensby))_
|
|
25
31
|
## 12.1.2 (2021-09-07)
|
|
26
32
|
|
|
27
33
|
### Bugs Fixed
|
package/dist/index.js
CHANGED
|
@@ -4989,6 +4989,12 @@ Object.defineProperty(exports, 'AzureSASCredential', {
|
|
|
4989
4989
|
return coreAuth.AzureSASCredential;
|
|
4990
4990
|
}
|
|
4991
4991
|
});
|
|
4992
|
+
Object.defineProperty(exports, 'RestError', {
|
|
4993
|
+
enumerable: true,
|
|
4994
|
+
get: function () {
|
|
4995
|
+
return coreRestPipeline.RestError;
|
|
4996
|
+
}
|
|
4997
|
+
});
|
|
4992
4998
|
exports.TableClient = TableClient;
|
|
4993
4999
|
exports.TableServiceClient = TableServiceClient;
|
|
4994
5000
|
exports.TableTransaction = TableTransaction;
|