Skip to content

Commit 39591c2

Browse files
authored
[Tables] Skip Node8 for Live Test Validation (Azure#15307)
Node8 Validation was dropped for Tables CI. Live tests need to drop Node8 validation as well as it is not compatible with bigint
1 parent 4cf3566 commit 39591c2

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

sdk/tables/data-tables/CHANGELOG.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# Release History
22

3-
## 12.0.0-beta.3 (UNRELEASED)
3+
## 12.0.0-beta.3 (2021-05-17)
44

5-
- Update and Upsert operations have "merge" as default update mode. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956/files)
6-
- Expose Table Service url as a public client property. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956/files)
7-
- 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/files)
5+
- Update and Upsert operations have "merge" as default update mode. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
6+
- Expose Table Service url as a public client property. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
7+
- 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)
88

99
### Breaking Changes
1010

11+
- 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)
12+
- Node.js v8 support is dropped as it has reached end of life [#15307](https://github.com/Azure/azure-sdk-for-js/pull/15307)
1113
- Rename Batch to Transaction and redesign submitTransaction to provide a more declarative interface. [#15250](https://github.com/Azure/azure-sdk-for-js/pull/15250)
12-
- 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/files)
13-
- Clean up method options. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956/files)
14-
- Remove continuation tokens from options on list methods. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956/files)
14+
- 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)
15+
- Clean up method options. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
16+
- Remove continuation tokens from options on list methods. [#14956](https://github.com/Azure/azure-sdk-for-js/pull/14956)
1517

1618
## 12.0.0-beta.2 (2021-04-06)
1719

sdk/tables/data-tables/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
trigger: none
22

3+
variables:
4+
jobMatrixFilter: ^((?!8x_node).)*$
5+
36
stages:
47
- template: /eng/pipelines/templates/stages/archetype-sdk-tests.yml
58
parameters:

0 commit comments

Comments
 (0)