@atlaskit/tmp-editor-statsig 139.0.0 → 141.0.0
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,44 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 141.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`1f436e4732b98`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1f436e4732b98) -
|
|
8
|
+
Clean up the shipped smart link drag-and-drop feature gate and make the drag-and-drop path
|
|
9
|
+
permanent.
|
|
10
|
+
|
|
11
|
+
## 140.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- [`83cf312c45f2f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/83cf312c45f2f) -
|
|
16
|
+
Detect process suspension on reconnect so catchup runs after a device wakes from sleep, where
|
|
17
|
+
`disconnectedAt` is only stamped once the process resumes. Behind
|
|
18
|
+
`collab_check_sleep_detection_experiment`, read through `@atlaskit/platform-feature-experiments`.
|
|
19
|
+
|
|
20
|
+
`@atlaskit/collab-provider` adds no public API. `SleepDetector` is internal: it is not reachable
|
|
21
|
+
from the `.`, `./provider`, `./socket-io-provider`, `./types` or `./version-wrapper` entry points
|
|
22
|
+
and does not appear in `report.api.md`. The provider constructs and drives it internally, so
|
|
23
|
+
consumers need no migration and no call sites change.
|
|
24
|
+
|
|
25
|
+
`@atlaskit/tmp-editor-statsig` drops `collab_bypass_out_of_sync_period_experiment` from
|
|
26
|
+
`editorExperimentsConfig`, which is part of its typed surface. The key had no call sites outside
|
|
27
|
+
`@atlaskit/collab-provider`, which no longer reads it, so no consumer migration is expected in
|
|
28
|
+
practice. Any remaining caller must move to the new experiment:
|
|
29
|
+
|
|
30
|
+
```ts
|
|
31
|
+
// before
|
|
32
|
+
if (expValEquals('collab_bypass_out_of_sync_period_experiment', 'isEnabled', true, false)) {
|
|
33
|
+
// catch up regardless of how long the client was offline
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// after
|
|
37
|
+
if (isExperimentEnabled('collab_check_sleep_detection_experiment')) {
|
|
38
|
+
// catch up when a suspension of at least OUT_OF_SYNC_PERIOD was detected
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
3
42
|
## 139.0.0
|
|
4
43
|
|
|
5
44
|
### Major Changes
|
|
@@ -1225,14 +1225,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1225
1225
|
param: 'isEnabled',
|
|
1226
1226
|
defaultValue: false
|
|
1227
1227
|
}),
|
|
1228
|
-
// Added 2026-01-23
|
|
1229
|
-
collab_bypass_out_of_sync_period_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1230
|
-
productKeys: {
|
|
1231
|
-
confluence: 'collab_bypass_out_of_sync_period_experiment'
|
|
1232
|
-
},
|
|
1233
|
-
param: 'isEnabled',
|
|
1234
|
-
defaultValue: false
|
|
1235
|
-
}),
|
|
1236
1228
|
// Added 2026-07-16
|
|
1237
1229
|
platform_editor_fix_lagging_embed_resize_handle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1238
1230
|
productKeys: {
|
|
@@ -1714,14 +1706,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1714
1706
|
param: 'isEnabled',
|
|
1715
1707
|
defaultValue: false
|
|
1716
1708
|
}),
|
|
1717
|
-
// Added 2026-03-05
|
|
1718
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1719
|
-
productKeys: {
|
|
1720
|
-
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1721
|
-
},
|
|
1722
|
-
param: 'isEnabled',
|
|
1723
|
-
defaultValue: false
|
|
1724
|
-
}),
|
|
1725
1709
|
platform_editor_small_font_size: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1726
1710
|
productKeys: {
|
|
1727
1711
|
confluence: 'platform_editor_small_font_size',
|
|
@@ -1219,14 +1219,6 @@ export const editorExperimentsConfig = {
|
|
|
1219
1219
|
param: 'isEnabled',
|
|
1220
1220
|
defaultValue: false
|
|
1221
1221
|
}),
|
|
1222
|
-
// Added 2026-01-23
|
|
1223
|
-
collab_bypass_out_of_sync_period_experiment: createBooleanExperiment({
|
|
1224
|
-
productKeys: {
|
|
1225
|
-
confluence: 'collab_bypass_out_of_sync_period_experiment'
|
|
1226
|
-
},
|
|
1227
|
-
param: 'isEnabled',
|
|
1228
|
-
defaultValue: false
|
|
1229
|
-
}),
|
|
1230
1222
|
// Added 2026-07-16
|
|
1231
1223
|
platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
|
|
1232
1224
|
productKeys: {
|
|
@@ -1708,14 +1700,6 @@ export const editorExperimentsConfig = {
|
|
|
1708
1700
|
param: 'isEnabled',
|
|
1709
1701
|
defaultValue: false
|
|
1710
1702
|
}),
|
|
1711
|
-
// Added 2026-03-05
|
|
1712
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1713
|
-
productKeys: {
|
|
1714
|
-
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1715
|
-
},
|
|
1716
|
-
param: 'isEnabled',
|
|
1717
|
-
defaultValue: false
|
|
1718
|
-
}),
|
|
1719
1703
|
platform_editor_small_font_size: createBooleanExperiment({
|
|
1720
1704
|
productKeys: {
|
|
1721
1705
|
confluence: 'platform_editor_small_font_size',
|
|
@@ -1219,14 +1219,6 @@ export var editorExperimentsConfig = {
|
|
|
1219
1219
|
param: 'isEnabled',
|
|
1220
1220
|
defaultValue: false
|
|
1221
1221
|
}),
|
|
1222
|
-
// Added 2026-01-23
|
|
1223
|
-
collab_bypass_out_of_sync_period_experiment: createBooleanExperiment({
|
|
1224
|
-
productKeys: {
|
|
1225
|
-
confluence: 'collab_bypass_out_of_sync_period_experiment'
|
|
1226
|
-
},
|
|
1227
|
-
param: 'isEnabled',
|
|
1228
|
-
defaultValue: false
|
|
1229
|
-
}),
|
|
1230
1222
|
// Added 2026-07-16
|
|
1231
1223
|
platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
|
|
1232
1224
|
productKeys: {
|
|
@@ -1708,14 +1700,6 @@ export var editorExperimentsConfig = {
|
|
|
1708
1700
|
param: 'isEnabled',
|
|
1709
1701
|
defaultValue: false
|
|
1710
1702
|
}),
|
|
1711
|
-
// Added 2026-03-05
|
|
1712
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: createBooleanExperiment({
|
|
1713
|
-
productKeys: {
|
|
1714
|
-
confluence: 'cc_drag_and_drop_smart_link_from_content_to_tree'
|
|
1715
|
-
},
|
|
1716
|
-
param: 'isEnabled',
|
|
1717
|
-
defaultValue: false
|
|
1718
|
-
}),
|
|
1719
1703
|
platform_editor_small_font_size: createBooleanExperiment({
|
|
1720
1704
|
productKeys: {
|
|
1721
1705
|
confluence: 'platform_editor_small_font_size',
|
|
@@ -888,12 +888,6 @@ export declare const editorExperimentsConfig: {
|
|
|
888
888
|
productKeys?: ProductKeys;
|
|
889
889
|
typeGuard: IsBooleanType;
|
|
890
890
|
};
|
|
891
|
-
collab_bypass_out_of_sync_period_experiment: {
|
|
892
|
-
defaultValue: boolean;
|
|
893
|
-
param: string;
|
|
894
|
-
productKeys?: ProductKeys;
|
|
895
|
-
typeGuard: IsBooleanType;
|
|
896
|
-
};
|
|
897
891
|
platform_editor_renderer_toolbar_updates: {
|
|
898
892
|
defaultValue: boolean;
|
|
899
893
|
param: string;
|
|
@@ -1323,12 +1317,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1323
1317
|
productKeys?: ProductKeys;
|
|
1324
1318
|
typeGuard: IsBooleanType;
|
|
1325
1319
|
};
|
|
1326
|
-
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1327
|
-
defaultValue: boolean;
|
|
1328
|
-
param: string;
|
|
1329
|
-
productKeys?: ProductKeys;
|
|
1330
|
-
typeGuard: IsBooleanType;
|
|
1331
|
-
};
|
|
1332
1320
|
platform_editor_small_font_size: {
|
|
1333
1321
|
defaultValue: boolean;
|
|
1334
1322
|
param: string;
|
package/package.json
CHANGED