@azure/core-client 1.6.0 → 1.6.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 -117
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/core-client",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1-alpha.20220523.1",
|
|
4
4
|
"description": "Core library for interfacing with AutoRest generated code",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -83,12 +83,12 @@
|
|
|
83
83
|
"@types/mocha": "^7.0.2",
|
|
84
84
|
"@types/node": "^12.0.0",
|
|
85
85
|
"@types/sinon": "^9.0.4",
|
|
86
|
-
"@azure/eslint-plugin-azure-sdk": "
|
|
87
|
-
"@azure/dev-tool": "
|
|
86
|
+
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
87
|
+
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
88
88
|
"chai": "^4.2.0",
|
|
89
89
|
"downlevel-dts": "^0.8.0",
|
|
90
90
|
"cross-env": "^7.0.2",
|
|
91
|
-
"eslint": "^
|
|
91
|
+
"eslint": "^8.0.0",
|
|
92
92
|
"inherits": "^2.0.3",
|
|
93
93
|
"karma": "^6.2.0",
|
|
94
94
|
"karma-chrome-launcher": "^3.0.0",
|
package/CHANGELOG.md
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
# Release History
|
|
2
|
-
|
|
3
|
-
## 1.6.0 (2022-05-05)
|
|
4
|
-
|
|
5
|
-
### Features Added
|
|
6
|
-
|
|
7
|
-
- Added a new property endpoint in ServiceClientOptions and mark the baseUri as deprecated to encourage people to use endpoint. See issue link [here](https://github.com/Azure/autorest.typescript/issues/1337)
|
|
8
|
-
- Upgraded our `@azure/core-tracing` dependency to version 1.0
|
|
9
|
-
- Add callbacks to support Storage challenge authentication [PR#21678](https://github.com/Azure/azure-sdk-for-js/pull/21678)
|
|
10
|
-
|
|
11
|
-
## 1.5.0 (2022-02-03)
|
|
12
|
-
|
|
13
|
-
### Features Added
|
|
14
|
-
|
|
15
|
-
- Added new `CommonClientOptions` member `additionalPolicies` to allow passing custom pipeline policies to client constructors. [PR #19920](https://github.com/Azure/azure-sdk-for-js/pull/19920)
|
|
16
|
-
|
|
17
|
-
### Bugs Fixed
|
|
18
|
-
|
|
19
|
-
- Addressed an issue where the `onResponse` callback wouldn't be called in certain cases where an unexpected response was received from the service. [PR #19702](https://github.com/Azure/azure-sdk-for-js/pull/19702)
|
|
20
|
-
|
|
21
|
-
## 1.4.0 (2022-01-06)
|
|
22
|
-
|
|
23
|
-
### Features Added
|
|
24
|
-
|
|
25
|
-
- Added a new function `authorizeRequestOnClaimChallenge`, that can be used with the `@azure/core-rest-pipeline`'s `bearerTokenAuthenticationPolicy` to support [Continuous Access Evaluation (CAE) challenges](https://docs.microsoft.com/azure/active-directory/conditional-access/concept-continuous-access-evaluation).
|
|
26
|
-
- Call the `bearerTokenAuthenticationPolicy` with the following options: `bearerTokenAuthenticationPolicy({ authorizeRequestOnChallenge: authorizeRequestOnClaimChallenge })`. Once provided, the `bearerTokenAuthenticationPolicy` policy will internally handle Continuous Access Evaluation (CAE) challenges. When it can't complete a challenge it will return the 401 (unauthorized) response from ARM.
|
|
27
|
-
|
|
28
|
-
### Bugs Fixed
|
|
29
|
-
|
|
30
|
-
- Fixed a serializer issue with nested polymorphics. [PR #19455](https://github.com/Azure/azure-sdk-for-js/pull/19455)
|
|
31
|
-
|
|
32
|
-
## 1.3.3 (2021-12-02)
|
|
33
|
-
|
|
34
|
-
### Bugs Fixed
|
|
35
|
-
|
|
36
|
-
- Added a check to handle undefined value during the parsing of query parameters. Please refer to [PR #18621](https://github.com/Azure/azure-sdk-for-js/pull/18621) for further details.
|
|
37
|
-
|
|
38
|
-
## 1.3.2 (2021-10-25)
|
|
39
|
-
|
|
40
|
-
### Bugs Fixed
|
|
41
|
-
|
|
42
|
-
- Skip query parameter replacement for absolute URLs. [PR #18310](https://github.com/Azure/azure-sdk-for-js/pull/18310)
|
|
43
|
-
|
|
44
|
-
## 1.3.1 (2021-09-30)
|
|
45
|
-
|
|
46
|
-
### Other Changes
|
|
47
|
-
|
|
48
|
-
- Updates package to work with the react native bundler. Browser APIs may still need to be pollyfilled for this package to run in react native. [PR #17783](https://github.com/Azure/azure-sdk-for-js/pull/17783)
|
|
49
|
-
|
|
50
|
-
## 1.3.0 (2021-08-04)
|
|
51
|
-
|
|
52
|
-
### Features Added
|
|
53
|
-
|
|
54
|
-
- Updated to use version 1.0.0-preview.13 of `@azure/core-tracing`.
|
|
55
|
-
|
|
56
|
-
### Key Bugs Fixed
|
|
57
|
-
|
|
58
|
-
- Fixed an issue where APIs that accepted a Blob didn't work with File objects. See [#16754](https://github.com/Azure/azure-sdk-for-js/issues/16754) for more details.
|
|
59
|
-
|
|
60
|
-
## 1.2.2 (2021-07-13)
|
|
61
|
-
|
|
62
|
-
### Key Bugs Fixed
|
|
63
|
-
|
|
64
|
-
- Fixed the return value during the flattening the response for `HEAD` HTTP Requests. This will ensure that the return value will indicate the presence/absence of the resource. Please refer [#1037](https://github.com/Azure/autorest.typescript/issues/1037) for more details.
|
|
65
|
-
|
|
66
|
-
## 1.2.1 (2021-06-30)
|
|
67
|
-
|
|
68
|
-
### Features Added
|
|
69
|
-
|
|
70
|
-
- Moved `allowInsecureConnection` from `ServiceClientOptions` to `CommonClientOptions` [issue 15938](https://github.com/azure/azure-sdk-for-js/issues/15938)
|
|
71
|
-
|
|
72
|
-
## 1.1.3 (2021-06-17)
|
|
73
|
-
|
|
74
|
-
### Key Bugs Fixed
|
|
75
|
-
|
|
76
|
-
- Fix an issue of lost properties when flattening array in deserialization [issue 15653](https://github.com/azure/azure-sdk-for-js/issues/15653)
|
|
77
|
-
- Fix an issue with appending query parameters while constructing the url. Please refer [Issue #1035](https://github.com/Azure/autorest.typescript/issues/1035) for more details.
|
|
78
|
-
|
|
79
|
-
## 1.1.2 (2021-05-20)
|
|
80
|
-
|
|
81
|
-
### Fixed
|
|
82
|
-
|
|
83
|
-
- Fixed an issue to check for the mandatory parameter in the header and query values. [PR 15278](https://github.com/Azure/azure-sdk-for-js/pull/15278)
|
|
84
|
-
|
|
85
|
-
## 1.1.1 (2021-05-06)
|
|
86
|
-
|
|
87
|
-
### Features Added
|
|
88
|
-
|
|
89
|
-
- Expose `allowInsecureConnection` in `ServiceClientOptions` and `OperationRequestOptions` to allow operation requests to HTTP endpoints
|
|
90
|
-
|
|
91
|
-
### Fixed
|
|
92
|
-
|
|
93
|
-
- Consider more mapper types as primitive thus requires wrapping
|
|
94
|
-
|
|
95
|
-
## 1.1.0 (2021-03-30)
|
|
96
|
-
|
|
97
|
-
### Breaking Changes
|
|
98
|
-
|
|
99
|
-
- If the response body is empty and the mapper for it says it is nullable, then a null is returned.
|
|
100
|
-
- Updated @azure/core-tracing to version `1.0.0-preview.11`. See [@azure/core-tracing CHANGELOG](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/CHANGELOG.md) for details about breaking changes with tracing.
|
|
101
|
-
|
|
102
|
-
## 1.0.0 (2021-03-15)
|
|
103
|
-
|
|
104
|
-
GA release of this package.
|
|
105
|
-
|
|
106
|
-
## 1.0.0-beta.2 (2021-03-10)
|
|
107
|
-
|
|
108
|
-
- [Breaking] Removed `createSpanFunction` and `SpanConfig`. These have been moved into
|
|
109
|
-
`@azure/core-tracing`.
|
|
110
|
-
|
|
111
|
-
## 1.0.0-beta.1 (2021-02-04)
|
|
112
|
-
|
|
113
|
-
- First release of package, see README.md for details.
|
|
114
|
-
- Changes from related functionality in `core-http`:
|
|
115
|
-
- Replace URLBuilder with runtime-supported URL primitive.
|
|
116
|
-
- Rewrite `ServiceClient` on top of `core-rest-pipeline` and remove unused codepaths.
|
|
117
|
-
- Remove `_response` on operation results and replace with `onResponse` callback.
|