@azure/data-tables 13.0.0-alpha.20211109.2 → 13.0.1-alpha.20211112.1
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 +20 -3
- package/dist/index.js +9 -6
- package/dist/index.js.map +1 -1
- package/dist-esm/src/generated/generatedClientContext.js +1 -1
- package/dist-esm/src/generated/generatedClientContext.js.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models.js.map +1 -1
- package/dist-esm/src/serialization.js +2 -5
- package/dist-esm/src/serialization.js.map +1 -1
- package/package.json +1 -1
- package/types/3.1/data-tables.d.ts +3 -1
- package/types/latest/data-tables.d.ts +4 -1
- package/types/latest/tsdoc-metadata.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
-
## 13.0.
|
|
3
|
+
## 13.0.1 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
## 13.0.0 (2021-11-11)
|
|
14
|
+
|
|
15
|
+
### Acknowledgments
|
|
16
|
+
|
|
17
|
+
Thank you to our developer community members who helped to make the Azure Tables client library better with their contributions to this release:
|
|
18
|
+
|
|
19
|
+
- Daniel Hensby _([GitHub](https://github.com/dhensby))_
|
|
4
20
|
|
|
5
21
|
### Features Added
|
|
6
22
|
|
|
@@ -9,7 +25,8 @@
|
|
|
9
25
|
|
|
10
26
|
### Breaking Changes
|
|
11
27
|
|
|
12
|
-
- Encode single quote where the partition/row key is used to format the URL - i.e. upsert, update and delete. For more details see [#3356](https://github.com/Azure/azure-sdk/issues/3356)
|
|
28
|
+
- Encode single quote where the partition/row key is used to format the URL - i.e. upsert, update and delete. For more details see Issue [#3356](https://github.com/Azure/azure-sdk/issues/3356). Fixed in [#18520](https://github.com/Azure/azure-sdk-for-js/pull/18520)
|
|
29
|
+
- Setting a binary property on an entity without automatic type conversion takes raw string instead of Uint8Array [#18251](https://github.com/Azure/azure-sdk-for-js/pull/18251)
|
|
13
30
|
|
|
14
31
|
### Bugs Fixed
|
|
15
32
|
|
|
@@ -20,7 +37,7 @@
|
|
|
20
37
|
- Issue #18521 - `upsertEntity` doesn't work with "" for partition or row keys. [#18586](https://github.com/Azure/azure-sdk-for-js/pull/18586)
|
|
21
38
|
|
|
22
39
|
### Other Changes
|
|
23
|
-
|
|
40
|
+
- Export RestError [#18635](https://github.com/Azure/azure-sdk-for-js/pull/18635). (A community contribution, courtesy of _[dhensby](https://github.com/dhensby))_
|
|
24
41
|
## 12.1.2 (2021-09-07)
|
|
25
42
|
|
|
26
43
|
### Bugs Fixed
|
package/dist/index.js
CHANGED
|
@@ -3068,7 +3068,7 @@ class GeneratedClientContext extends coreClient.ServiceClient {
|
|
|
3068
3068
|
const defaults = {
|
|
3069
3069
|
requestContentType: "application/json; charset=utf-8"
|
|
3070
3070
|
};
|
|
3071
|
-
const packageDetails = `azsdk-js-data-tables/13.0.
|
|
3071
|
+
const packageDetails = `azsdk-js-data-tables/13.0.1`;
|
|
3072
3072
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
3073
3073
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
3074
3074
|
: `${packageDetails}`;
|
|
@@ -4124,14 +4124,11 @@ function serializeObject(obj) {
|
|
|
4124
4124
|
obj.type === "Guid" ||
|
|
4125
4125
|
obj.type === "Int32" ||
|
|
4126
4126
|
obj.type === "Int64" ||
|
|
4127
|
-
obj.type === "String"
|
|
4127
|
+
obj.type === "String" ||
|
|
4128
|
+
obj.type === "Binary") {
|
|
4128
4129
|
serializedValue.value = obj.value;
|
|
4129
4130
|
serializedValue.type = Edm[obj.type];
|
|
4130
4131
|
}
|
|
4131
|
-
else if (obj.type === "Binary") {
|
|
4132
|
-
serializedValue.value = base64Encode(obj.value);
|
|
4133
|
-
serializedValue.type = Edm.Binary;
|
|
4134
|
-
}
|
|
4135
4132
|
else {
|
|
4136
4133
|
throw new Error(`Unknown EDM type ${typeof obj.value}`);
|
|
4137
4134
|
}
|
|
@@ -4992,6 +4989,12 @@ Object.defineProperty(exports, 'AzureSASCredential', {
|
|
|
4992
4989
|
return coreAuth.AzureSASCredential;
|
|
4993
4990
|
}
|
|
4994
4991
|
});
|
|
4992
|
+
Object.defineProperty(exports, 'RestError', {
|
|
4993
|
+
enumerable: true,
|
|
4994
|
+
get: function () {
|
|
4995
|
+
return coreRestPipeline.RestError;
|
|
4996
|
+
}
|
|
4997
|
+
});
|
|
4995
4998
|
exports.TableClient = TableClient;
|
|
4996
4999
|
exports.TableServiceClient = TableServiceClient;
|
|
4997
5000
|
exports.TableTransaction = TableTransaction;
|