@atlaskit/collab-provider 9.37.3 → 9.37.5
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/collab-provider
|
|
2
2
|
|
|
3
|
+
## 9.37.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#136085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/136085)
|
|
8
|
+
[`88f45948976f6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/88f45948976f6) -
|
|
9
|
+
Bump version of socket.io-client used to patch vulnerability in ws library
|
|
10
|
+
|
|
11
|
+
## 9.37.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#134213](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/134213)
|
|
16
|
+
[`93bd7032842ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93bd7032842ec) -
|
|
17
|
+
[ux] [ED-24636] Bump ADF Schema package
|
|
18
|
+
|
|
3
19
|
## 9.37.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.version = exports.nextMajorVersion = exports.name = void 0;
|
|
7
7
|
var name = exports.name = "@atlaskit/collab-provider";
|
|
8
|
-
var version = exports.version = "9.37.
|
|
8
|
+
var version = exports.version = "9.37.5";
|
|
9
9
|
var nextMajorVersion = exports.nextMajorVersion = function nextMajorVersion() {
|
|
10
10
|
return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
|
|
11
11
|
};
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Step } from '@atlaskit/editor-prosemirror/transform';
|
|
2
2
|
import type { AnalyticsWebClient } from '@atlaskit/analytics-listeners';
|
|
3
|
-
import type { Manager } from 'socket.io-client';
|
|
3
|
+
import type { Manager, Socket as SocketIOSocket } from 'socket.io-client';
|
|
4
4
|
import type { InternalError } from './errors/internal-errors';
|
|
5
5
|
import type { JSONDocNode } from '@atlaskit/editor-json-transformer';
|
|
6
6
|
import type { GetUserType } from './participants/participants-helper';
|
|
@@ -27,7 +27,7 @@ export interface Config {
|
|
|
27
27
|
lifecycle?: Lifecycle;
|
|
28
28
|
storage?: Storage;
|
|
29
29
|
need404?: boolean;
|
|
30
|
-
createSocket: (path: string, auth?: AuthCallback | InitAndAuthData, productInfo?: ProductInformation) =>
|
|
30
|
+
createSocket: (path: string, auth?: AuthCallback | InitAndAuthData, productInfo?: ProductInformation) => SocketIOSocket;
|
|
31
31
|
/**
|
|
32
32
|
* @deprecated: Use promise based getAnalyticsWebClient instead
|
|
33
33
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Step } from '@atlaskit/editor-prosemirror/transform';
|
|
2
2
|
import type { AnalyticsWebClient } from '@atlaskit/analytics-listeners';
|
|
3
|
-
import type { Manager } from 'socket.io-client';
|
|
3
|
+
import type { Manager, Socket as SocketIOSocket } from 'socket.io-client';
|
|
4
4
|
import type { InternalError } from './errors/internal-errors';
|
|
5
5
|
import type { JSONDocNode } from '@atlaskit/editor-json-transformer';
|
|
6
6
|
import type { GetUserType } from './participants/participants-helper';
|
|
@@ -27,7 +27,7 @@ export interface Config {
|
|
|
27
27
|
lifecycle?: Lifecycle;
|
|
28
28
|
storage?: Storage;
|
|
29
29
|
need404?: boolean;
|
|
30
|
-
createSocket: (path: string, auth?: AuthCallback | InitAndAuthData, productInfo?: ProductInformation) =>
|
|
30
|
+
createSocket: (path: string, auth?: AuthCallback | InitAndAuthData, productInfo?: ProductInformation) => SocketIOSocket;
|
|
31
31
|
/**
|
|
32
32
|
* @deprecated: Use promise based getAnalyticsWebClient instead
|
|
33
33
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/collab-provider",
|
|
3
|
-
"version": "9.37.
|
|
3
|
+
"version": "9.37.5",
|
|
4
4
|
"description": "A provider for collaborative editing.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -23,12 +23,7 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"atlaskit:src": "src/index.ts",
|
|
25
25
|
"atlassian": {
|
|
26
|
-
"team": "Editor: Collaboration"
|
|
27
|
-
"inPublicMirror": true,
|
|
28
|
-
"releaseModel": "continuous",
|
|
29
|
-
"productPushConsumption": [
|
|
30
|
-
"jira"
|
|
31
|
-
]
|
|
26
|
+
"team": "Editor: Collaboration"
|
|
32
27
|
},
|
|
33
28
|
"af:exports": {
|
|
34
29
|
".": "./src/index.ts",
|
|
@@ -39,7 +34,7 @@
|
|
|
39
34
|
"dependencies": {
|
|
40
35
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
41
36
|
"@atlaskit/analytics-listeners": "^8.11.0",
|
|
42
|
-
"@atlaskit/editor-common": "^88.
|
|
37
|
+
"@atlaskit/editor-common": "^88.6.0",
|
|
43
38
|
"@atlaskit/editor-json-transformer": "^8.18.0",
|
|
44
39
|
"@atlaskit/editor-prosemirror": "5.0.1",
|
|
45
40
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
@@ -49,7 +44,7 @@
|
|
|
49
44
|
"@babel/runtime": "^7.0.0",
|
|
50
45
|
"eventemitter2": "^4.1.0",
|
|
51
46
|
"lodash": "^4.17.21",
|
|
52
|
-
"socket.io-client": "^4.7.
|
|
47
|
+
"socket.io-client": "^4.7.5"
|
|
53
48
|
},
|
|
54
49
|
"techstack": {
|
|
55
50
|
"@atlassian/frontend": {
|
|
@@ -66,7 +61,7 @@
|
|
|
66
61
|
}
|
|
67
62
|
},
|
|
68
63
|
"devDependencies": {
|
|
69
|
-
"@atlaskit/adf-schema": "^40.
|
|
64
|
+
"@atlaskit/adf-schema": "^40.9.0",
|
|
70
65
|
"@atlassian/feature-flags-test-utils": "^0.2.0",
|
|
71
66
|
"typescript": "~5.4.2"
|
|
72
67
|
},
|