@atlaskit/collab-provider 9.25.4 → 9.25.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 +6 -0
- package/dist/cjs/document/document-service.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/document/document-service.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/document/document-service.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/collab-provider
|
|
2
2
|
|
|
3
|
+
## 9.25.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#79657](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79657) [`c6d2ac213900`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d2ac213900) - Add usereconcile to reinit errors
|
|
8
|
+
|
|
3
9
|
## 9.25.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -306,7 +306,7 @@ var DocumentService = exports.DocumentService = /*#__PURE__*/function () {
|
|
|
306
306
|
numUnconfirmedSteps: unconfirmedSteps === null || unconfirmedSteps === void 0 ? void 0 : unconfirmedSteps.length,
|
|
307
307
|
useReconcile: useReconcile
|
|
308
308
|
});
|
|
309
|
-
(_this$analyticsHelper13 = _this.analyticsHelper) === null || _this$analyticsHelper13 === void 0 || _this$analyticsHelper13.sendErrorEvent(_context3.t0,
|
|
309
|
+
(_this$analyticsHelper13 = _this.analyticsHelper) === null || _this$analyticsHelper13 === void 0 || _this$analyticsHelper13.sendErrorEvent(_context3.t0, "Error while reinitialising document. Use Reconcile: ".concat(useReconcile));
|
|
310
310
|
_this.onErrorHandled({
|
|
311
311
|
message: 'Caught error while trying to recover the document',
|
|
312
312
|
data: {
|
|
@@ -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.25.
|
|
8
|
+
var version = exports.version = "9.25.5";
|
|
9
9
|
var nextMajorVersion = exports.nextMajorVersion = function nextMajorVersion() {
|
|
10
10
|
return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
|
|
11
11
|
};
|
|
@@ -244,7 +244,7 @@ export class DocumentService {
|
|
|
244
244
|
numUnconfirmedSteps: unconfirmedSteps === null || unconfirmedSteps === void 0 ? void 0 : unconfirmedSteps.length,
|
|
245
245
|
useReconcile
|
|
246
246
|
});
|
|
247
|
-
(_this$analyticsHelper13 = this.analyticsHelper) === null || _this$analyticsHelper13 === void 0 ? void 0 : _this$analyticsHelper13.sendErrorEvent(restoreError,
|
|
247
|
+
(_this$analyticsHelper13 = this.analyticsHelper) === null || _this$analyticsHelper13 === void 0 ? void 0 : _this$analyticsHelper13.sendErrorEvent(restoreError, `Error while reinitialising document. Use Reconcile: ${useReconcile}`);
|
|
248
248
|
this.onErrorHandled({
|
|
249
249
|
message: 'Caught error while trying to recover the document',
|
|
250
250
|
data: {
|
|
@@ -299,7 +299,7 @@ export var DocumentService = /*#__PURE__*/function () {
|
|
|
299
299
|
numUnconfirmedSteps: unconfirmedSteps === null || unconfirmedSteps === void 0 ? void 0 : unconfirmedSteps.length,
|
|
300
300
|
useReconcile: useReconcile
|
|
301
301
|
});
|
|
302
|
-
(_this$analyticsHelper13 = _this.analyticsHelper) === null || _this$analyticsHelper13 === void 0 || _this$analyticsHelper13.sendErrorEvent(_context3.t0,
|
|
302
|
+
(_this$analyticsHelper13 = _this.analyticsHelper) === null || _this$analyticsHelper13 === void 0 || _this$analyticsHelper13.sendErrorEvent(_context3.t0, "Error while reinitialising document. Use Reconcile: ".concat(useReconcile));
|
|
303
303
|
_this.onErrorHandled({
|
|
304
304
|
message: 'Caught error while trying to recover the document',
|
|
305
305
|
data: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/collab-provider",
|
|
3
|
-
"version": "9.25.
|
|
3
|
+
"version": "9.25.5",
|
|
4
4
|
"description": "A provider for collaborative editing.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -77,4 +77,4 @@
|
|
|
77
77
|
"type": "boolean"
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
|
-
}
|
|
80
|
+
}
|