@azure/data-tables 13.1.2-alpha.20220503.1 → 13.1.2-alpha.20220524.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/CHANGELOG.md +0 -182
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/data-tables",
3
- "version": "13.1.2-alpha.20220503.1",
3
+ "version": "13.1.2-alpha.20220524.1",
4
4
  "description": "An isomorphic client library for the Azure Tables service.",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -41,8 +41,8 @@
41
41
  "integration-test:browser": "dev-tool run test:browser",
42
42
  "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 --exclude 'dist-esm/test/**/browser/*.spec.js' 'dist-esm/test/**/*.spec.js'",
43
43
  "integration-test": "npm run integration-test:node && npm run integration-test:browser",
44
- "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
45
- "lint": "eslint package.json api-extractor.json src test --ext .ts",
44
+ "lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix --fix-type [problem,suggestion]",
45
+ "lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
46
46
  "pack": "npm pack 2>&1",
47
47
  "test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
48
48
  "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
@@ -100,7 +100,7 @@
100
100
  "chai": "^4.2.0",
101
101
  "cross-env": "^7.0.2",
102
102
  "downlevel-dts": "^0.8.0",
103
- "eslint": "^7.15.0",
103
+ "eslint": "^8.0.0",
104
104
  "inherits": "^2.0.3",
105
105
  "karma": "^6.2.0",
106
106
  "karma-chrome-launcher": "^3.0.0",
package/CHANGELOG.md DELETED
@@ -1,182 +0,0 @@
1
- # Release History
2
-
3
- ## 13.1.2 (Unreleased)
4
-
5
- ### Features Added
6
-
7
- - Support cross tenant authentication [PR#21678](https://github.com/Azure/azure-sdk-for-js/pull/21678)
8
-
9
- ### Breaking Changes
10
-
11
- ### Bugs Fixed
12
-
13
- - fix react native bundling issue by adding a `react-native` mapping to ESM
14
- entry point so that dependencies can be loaded asynchronously.
15
-
16
- ### Other Changes
17
-
18
- ## 13.1.1 (2022-04-14)
19
-
20
- ### Bugs Fixed
21
-
22
- - Fixed issue where `deleteTable()` doesn't throw any errors [21408](https://github.com/Azure/azure-sdk-for-js/pull/21408).
23
-
24
- ## 13.1.0 (2022-04-07)
25
-
26
- ### Bugs Fixed
27
-
28
- - Fix issue when the Service returns an empty nextRowKey. [#20916](https://github.com/Azure/azure-sdk-for-js/pull/20916).
29
- - Fix issue with `getStatistics()` operation consistently failing and added test. [#20398](https://github.com/Azure/azure-sdk-for-js/pull/20398)
30
-
31
- ### Other Changes
32
-
33
- - Updated our `@azure/core-tracing` dependency to the latest version (1.0.0)
34
- - Notable changes include Removal of `@opentelemetry/api` as a transitive dependency and ensuring that the active context is properly propagated.
35
- - Customers who would like to continue using OpenTelemetry driven tracing should visit our [OpenTelemetry Instrumentation](https://www.npmjs.com/package/@azure/opentelemetry-instrumentation-azure-sdk) package for instructions.
36
- - Export NamedKeyCredential [#20935](https://github.com/Azure/azure-sdk-for-js/pull/20935). (A community contribution, courtesy of _[dhensby](https://github.com/dhensby))_
37
-
38
- ## 13.0.1 (2022-01-12)
39
-
40
- ### Bugs Fixed
41
-
42
- - Fix issue where custom HTTP Client passed in client options was being ignored in transactions. [#19470](https://github.com/Azure/azure-sdk-for-js/pull/19470)
43
- - Fix issue where optionality of expiresOn and permissions is not respected when signedIdentifier is provided.
44
- - Fix `createTable` not calling `onResponse` callback when the service returns `TableAlreadyExists`. [#18914](https://github.com/Azure/azure-sdk-for-js/pull/18914)
45
-
46
- ## 13.0.0 (2021-11-11)
47
-
48
- ### Acknowledgments
49
-
50
- Thank you to our developer community members who helped to make the Azure Tables client library better with their contributions to this release:
51
-
52
- - Daniel Hensby _([GitHub](https://github.com/dhensby))_
53
-
54
- ### Features Added
55
-
56
- - TableClient `listEntities` expose and can take as PageSetting `continuationToken` as a `PageSetting` when using `byPage`. [#18179](https://github.com/Azure/azure-sdk-for-js/pull/18179)
57
- - TableServiceClient `listTables` expose and can take PageSetting `continuationToken` as a `PageSetting` when using `byPage`. [#18277](https://github.com/Azure/azure-sdk-for-js/pull/18277)
58
-
59
- ### Breaking Changes
60
-
61
- - 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)
62
- - 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)
63
-
64
- ### Bugs Fixed
65
-
66
- - Document usage of SDK with Azurite. [#18211](https://github.com/Azure/azure-sdk-for-js/pull/18211)
67
- - Issue #17407 - Correctly handle etag in select filter. [#18211](https://github.com/Azure/azure-sdk-for-js/pull/18211)
68
- - Issue #18079 - Correctly handle creating entities with properties containing empty strings "". Fixes Insert throws "Unknown EDM type object" error with property value { value: "", type: "String" }. [#18211](https://github.com/Azure/azure-sdk-for-js/pull/18211)
69
- - Issue #18148 - Correctly deserialize Decimal numbers checking for isSafeInteger. Fixes listEntities always returns an Int32 type for a value of "1.23456789012346e+24". [#18211](https://github.com/Azure/azure-sdk-for-js/pull/18211)
70
- - Issue #18521 - `upsertEntity` doesn't work with "" for partition or row keys. [#18586](https://github.com/Azure/azure-sdk-for-js/pull/18586)
71
-
72
- ### Other Changes
73
-
74
- - Export RestError [#18635](https://github.com/Azure/azure-sdk-for-js/pull/18635). (A community contribution, courtesy of _[dhensby](https://github.com/dhensby))_
75
-
76
- ## 12.1.2 (2021-09-07)
77
-
78
- ### Bugs Fixed
79
-
80
- - Fix `disableTypeConversion` to also apply for booleans and convert value to string when there is no type metadata. [#17385](https://github.com/Azure/azure-sdk-for-js/pull/17385)
81
-
82
- ## 12.1.1 (2021-08-10)
83
-
84
- ### Bugs Fixed
85
-
86
- - Fixed inconsistent return type for number and strings when setting `disableTypeConversion` option. [#16736](https://github.com/Azure/azure-sdk-for-js/pull/16736)
87
- - Fix [#15854](https://github.com/Azure/azure-sdk-for-js/issues/15701) when submitting transactions by ensuring the `allowInsecureConnection` client option is respected. [#16587](https://github.com/Azure/azure-sdk-for-js/pull/16587)
88
-
89
- ### Other Changes
90
-
91
- - Update dependency of `@azure/core-xml`. [#16816](https://github.com/Azure/azure-sdk-for-js/pull/16816)
92
-
93
- ## 12.1.0 (2021-07-07)
94
-
95
- ### Acknowledgments
96
-
97
- Thank you to our developer community members who helped to make the Azure Tables client library better with their contributions to this release:
98
-
99
- - Eros Stein _([GitHub](https://github.com/eestein))_
100
-
101
- ### Features Added
102
-
103
- - With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
104
- - Updated our internal core package dependencies to their latest versions in order to add support for Opentelemetry 1.0.0 which is compatible with the latest versions of our other client libraries.
105
- - Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features
106
- - Support for Azure Active Directory (AAD) authorization has been added to `TableServiceClient` and `TableClient`. This enables use of `TokenCredential` credentials. Note: Only Azure Storage API endpoints currently support AAD authorization. [#15852](https://github.com/Azure/azure-sdk-for-js/pull/15852)
107
-
108
- ### Fixed
109
-
110
- - Fix [#15664](https://github.com/Azure/azure-sdk-for-js/issues/15701), adding check to make sure we always have only one forward slash (`/`) added to the end of the URL [#15698](https://github.com/Azure/azure-sdk-for-js/pull/15698) (A community contribution, courtesy of _[eestein](https://github.com/eestein))_
111
- - Fix [#15701](https://github.com/Azure/azure-sdk-for-js/issues/15701) by improving error handling and reporting on `submitTransaction`. [#15852](https://github.com/Azure/azure-sdk-for-js/pull/15852)
112
- - Fix [#15921](https://github.com/Azure/azure-sdk-for-js/issues/15921) incorrect `url` import and missing browser mapping for `computeHMACSHA256` [#15944](https://github.com/Azure/azure-sdk-for-js/pull/15944)
113
- - Fix [#15854]https://github.com/Azure/azure-sdk-for-js/issues/15854) by setting `allowInsecureConnection` to true when using the development connection string.
114
-
115
- ## 12.0.0 (2021-06-09)
116
-
117
- - Added support for generating SAS tokens using an `AzureNamedKeyCredential` [#15564](https://github.com/Azure/azure-sdk-for-js/pull/15564)
118
- - Use @azure/core-auth `AzureSASCredendial` [#15564](https://github.com/Azure/azure-sdk-for-js/pull/15564)
119
- - 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)
120
- - Fix date serialization on `getAccessPolicy` and `setAccessPolicy` Table client methods. [#15633](https://github.com/Azure/azure-sdk-for-js/pull/15633)
121
-
122
- ### Breaking Changes
123
-
124
- - Use @azure/core-auth `AzureNamedKeyCredential` [#15529](https://github.com/Azure/azure-sdk-for-js/pull/15529)
125
-
126
- ## 12.0.0-beta.3 (2021-05-17)
127
-
128
- - Update and Upsert operations have "merge" as default update mode. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
129
- - Expose Table Service url as a public client property. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
130
- - Make list and get entity methods have a default template type of `Record` for better UX. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
131
-
132
- ### Breaking Changes
133
-
134
- - Enable Type conversion of `DateTime -> Date` and `Int64 -> bigint` by default. Allow disabling type conversion with `disableTypeConversion` option in the get and list operations. [#15307](https://github.com/Azure/azure-sdk-for-js/pull/15307)
135
- - Node.js v8 support is dropped as it has reached end of life [#15307](https://github.com/Azure/azure-sdk-for-js/pull/15307)
136
- - Rename Batch to Transaction and redesign submitTransaction to provide a more declarative interface. [#15250](https://github.com/Azure/azure-sdk-for-js/pull/15250)
137
- - createTable and deleteTable don't throw on 409 or 404 respectively. Return type becomes `Promise<void>`. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
138
- - Clean up method options. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
139
- - Remove continuation tokens from options on list methods. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
140
-
141
- ## 12.0.0-beta.2 (2021-04-06)
142
-
143
- - Update open-telemetry dependency to 1.0.0-rc.0 [#14208](https://github.com/Azure/azure-sdk-for-js/pull/14208)
144
- - Update @azure/core-client and @azure/core-rest-pipeline dependencies to 1.0.0 [#14318](https://github.com/Azure/azure-sdk-for-js/pull/14318)
145
-
146
- ## 12.0.0-beta.1 (2021-03-09)
147
-
148
- - Exclude browser unsupported headers when building a Batch request in the browser [#13955](https://github.com/Azure/azure-sdk-for-js/pull/13955)
149
- - Make connection string keys case-insensitive [#13954](https://github.com/Azure/azure-sdk-for-js/pull/13954)
150
-
151
- ## 1.0.0-beta.5 (2021-02-09)
152
-
153
- ### Breaking Changes
154
-
155
- - Move generated client to use @azure/core-rest-pipeline. For more information about Core V2 read [here](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core#core-v1-and-core-v2). [#12548](https://github.com/Azure/azure-sdk-for-js/pull/12548).
156
- - With this change, the response types no longer contain the raw response `_response`. To access the raw response, an `onResponse` callback has to be passed in the request options bag.
157
- ```typescript
158
- let createResult: FullOperationResponse | undefined;
159
- await client.createEntity(testEntity, { onResponse: (response) => (createResult = response) });
160
- ```
161
-
162
- ## 1.0.0-beta.4 (2021-01-12)
163
-
164
- - Fix issue that prevented support for Azure Storage Emulator and Azurite [#13165](https://github.com/Azure/azure-sdk-for-js/pull/13165)
165
-
166
- ### Breaking Changes
167
-
168
- - Don't deserialize DateTime into a JavaScript Date to avoid losing precision [#12650](https://github.com/Azure/azure-sdk-for-js/pull/12650)
169
-
170
- ## 1.0.0-beta.3 (2020-11-12)
171
-
172
- ### Breaking Changes
173
-
174
- - Provide more idiomatic names for System properties, rename `odata.etag` to `etag` and `Timestamp` to `timestamp` [#12060](https://github.com/Azure/azure-sdk-for-js/pull/12060)
175
-
176
- ## 1.0.0-beta.2 (2020-10-06)
177
-
178
- - Add support for Entity Group Transactions (Batch) [#11551](https://github.com/Azure/azure-sdk-for-js/pull/11551).
179
-
180
- ## 1.0.0-beta.1 (2020-09-08)
181
-
182
- This is the first beta of the `@azure/data-tables` client library. The Azure Tables client library can seamlessly target either Azure Table storage or Azure Cosmos DB table service endpoints with no code changes.