@azure/abort-controller 1.1.0 → 1.1.1-alpha.20220523.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/package.json +4 -4
- package/CHANGELOG.md +0 -34
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/abort-controller",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1-alpha.20220523.1",
|
|
5
5
|
"description": "Microsoft Azure SDK for JavaScript - Aborter",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "dist-esm/src/index.js",
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
"tslib": "^2.2.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@azure/dev-tool": "
|
|
76
|
-
"@azure/eslint-plugin-azure-sdk": "
|
|
75
|
+
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
76
|
+
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
77
77
|
"@microsoft/api-extractor": "7.18.11",
|
|
78
78
|
"@types/chai": "^4.1.6",
|
|
79
79
|
"@types/mocha": "^7.0.2",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"chai": "^4.2.0",
|
|
82
82
|
"cross-env": "^7.0.2",
|
|
83
83
|
"downlevel-dts": "^0.8.0",
|
|
84
|
-
"eslint": "^
|
|
84
|
+
"eslint": "^8.0.0",
|
|
85
85
|
"karma": "^6.2.0",
|
|
86
86
|
"karma-chrome-launcher": "^3.0.0",
|
|
87
87
|
"karma-coverage": "^2.0.0",
|
package/CHANGELOG.md
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# Release History
|
|
2
|
-
|
|
3
|
-
## 1.1.0 (2022-05-05)
|
|
4
|
-
|
|
5
|
-
- Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features
|
|
6
|
-
- 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.
|
|
7
|
-
|
|
8
|
-
## 1.0.4 (2021-03-04)
|
|
9
|
-
|
|
10
|
-
Fixes issue [13985](https://github.com/Azure/azure-sdk-for-js/issues/13985) where abort event listeners that removed themselves when invoked could prevent other event listeners from being invoked.
|
|
11
|
-
|
|
12
|
-
## 1.0.3 (2021-02-23)
|
|
13
|
-
|
|
14
|
-
Support Typescript version < 3.6 by down-leveling the type definition files. ([PR 12793](https://github.com/Azure/azure-sdk-for-js/pull/12793))
|
|
15
|
-
|
|
16
|
-
## 1.0.2 (2020-01-07)
|
|
17
|
-
|
|
18
|
-
Updates the `tslib` dependency to version 2.x.
|
|
19
|
-
|
|
20
|
-
## 1.0.1 (2019-12-04)
|
|
21
|
-
|
|
22
|
-
Fixes the [bug 6271](https://github.com/Azure/azure-sdk-for-js/issues/6271) that can occur with angular prod builds due to triple-slash directives.
|
|
23
|
-
([PR 6344](https://github.com/Azure/azure-sdk-for-js/pull/6344))
|
|
24
|
-
|
|
25
|
-
## 1.0.0 (2019-10-29)
|
|
26
|
-
|
|
27
|
-
This release marks the general availability of the `@azure/abort-controller` package.
|
|
28
|
-
|
|
29
|
-
Removed the browser bundle. A browser-compatible library can still be created through the use of a bundler such as Rollup, Webpack, or Parcel.
|
|
30
|
-
([#5860](https://github.com/Azure/azure-sdk-for-js/pull/5860))
|
|
31
|
-
|
|
32
|
-
## 1.0.0-preview.2 (2019-09-09)
|
|
33
|
-
|
|
34
|
-
Listeners attached to an `AbortSignal` now receive an event with the type `abort`. (PR #4756)
|