@azure/web-pubsub 1.1.0-alpha.20220516.2 → 1.1.0-alpha.20220524.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/CHANGELOG.md +0 -51
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/web-pubsub",
|
3
|
-
"version": "1.1.0-alpha.
|
3
|
+
"version": "1.1.0-alpha.20220524.1",
|
4
4
|
"description": "Azure client library for Azure Web PubSub",
|
5
5
|
"sdk-type": "client",
|
6
6
|
"main": "dist/index.js",
|
@@ -22,8 +22,8 @@
|
|
22
22
|
"integration-test:browser": "echo \"Browser is not supported.\" && exit 0",
|
23
23
|
"integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/test/**/*.spec.js'",
|
24
24
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
25
|
-
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
|
26
|
-
"lint": "eslint package.json api-extractor.json src test --ext .ts",
|
25
|
+
"lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix --fix-type [problem,suggestion]",
|
26
|
+
"lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
|
27
27
|
"pack": "npm pack 2>&1",
|
28
28
|
"test:browser": "echo \"Browser is not supported.\" && exit 0",
|
29
29
|
"test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
|
@@ -92,7 +92,7 @@
|
|
92
92
|
"chai": "^4.2.0",
|
93
93
|
"cross-env": "^7.0.2",
|
94
94
|
"dotenv": "^8.2.0",
|
95
|
-
"eslint": "^
|
95
|
+
"eslint": "^8.0.0",
|
96
96
|
"esm": "^3.2.18",
|
97
97
|
"karma": "^6.2.0",
|
98
98
|
"karma-chrome-launcher": "^3.0.0",
|
package/CHANGELOG.md
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
# Release History
|
2
|
-
|
3
|
-
## 1.1.0 (Unreleased)
|
4
|
-
|
5
|
-
### Features Added
|
6
|
-
|
7
|
-
### Breaking Changes
|
8
|
-
|
9
|
-
### Bugs Fixed
|
10
|
-
|
11
|
-
### Other Changes
|
12
|
-
|
13
|
-
- Updated our `@azure/core-tracing` dependency to the latest version (1.0.0).
|
14
|
-
- Notable changes include Removal of `@opentelemetry/api` as a transitive dependency and ensuring that the active context is properly propagated.
|
15
|
-
- 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.
|
16
|
-
|
17
|
-
## 1.0.0 (2021-11-11)
|
18
|
-
|
19
|
-
No changes.
|
20
|
-
|
21
|
-
## 1.0.0-beta.4 (2021-11-09)
|
22
|
-
|
23
|
-
### Features Added
|
24
|
-
|
25
|
-
- Support for DefaultAzureCredential
|
26
|
-
- Added support for reverse proxies, enabling usage of Web Pubsub with Azure API Management.
|
27
|
-
- Added method to close all connections in a hub `serviceClient.closeAllConnections`,
|
28
|
-
- Added method to close all connections in a group `groupClient.closeAllConnections`
|
29
|
-
- Added method to close all connections for a user `serviceClient.closeUserConnections`.
|
30
|
-
|
31
|
-
### Breaking Changes
|
32
|
-
|
33
|
-
- Renamed method `getAuthenticationToken` to `getClientAccessToken`
|
34
|
-
- Renamed method `hasUser` to `userExists`
|
35
|
-
- Renamed method `hasGroup` to `groupExists`
|
36
|
-
- Renamed method `hasConnection` to `connnectionExists`
|
37
|
-
|
38
|
-
## 1.0.0-beta.3 (2021-07-07)
|
39
|
-
|
40
|
-
### Breaking Changes
|
41
|
-
|
42
|
-
- `hasUser` has been removed from `GroupClient` as that operation is no longer supported by the service.
|
43
|
-
- Updated to have void returns for most operations. If you were previously using `RestResponse`, you can instead use the `onResponse` callback in the operation options. See README for an example.
|
44
|
-
|
45
|
-
## 1.0.0-beta.2 (2021-05-19)
|
46
|
-
|
47
|
-
Remove "url" dependency
|
48
|
-
|
49
|
-
## 1.0.0-beta.1 (2021-04-23)
|
50
|
-
|
51
|
-
This is the first release of the @azure/web-pubsub package.
|