@atlaskit/tmp-editor-statsig 138.1.0 → 140.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,48 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 140.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`83cf312c45f2f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/83cf312c45f2f) -
|
|
8
|
+
Detect process suspension on reconnect so catchup runs after a device wakes from sleep, where
|
|
9
|
+
`disconnectedAt` is only stamped once the process resumes. Behind
|
|
10
|
+
`collab_check_sleep_detection_experiment`, read through `@atlaskit/platform-feature-experiments`.
|
|
11
|
+
|
|
12
|
+
`@atlaskit/collab-provider` adds no public API. `SleepDetector` is internal: it is not reachable
|
|
13
|
+
from the `.`, `./provider`, `./socket-io-provider`, `./types` or `./version-wrapper` entry points
|
|
14
|
+
and does not appear in `report.api.md`. The provider constructs and drives it internally, so
|
|
15
|
+
consumers need no migration and no call sites change.
|
|
16
|
+
|
|
17
|
+
`@atlaskit/tmp-editor-statsig` drops `collab_bypass_out_of_sync_period_experiment` from
|
|
18
|
+
`editorExperimentsConfig`, which is part of its typed surface. The key had no call sites outside
|
|
19
|
+
`@atlaskit/collab-provider`, which no longer reads it, so no consumer migration is expected in
|
|
20
|
+
practice. Any remaining caller must move to the new experiment:
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
// before
|
|
24
|
+
if (expValEquals('collab_bypass_out_of_sync_period_experiment', 'isEnabled', true, false)) {
|
|
25
|
+
// catch up regardless of how long the client was offline
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// after
|
|
29
|
+
if (isExperimentEnabled('collab_check_sleep_detection_experiment')) {
|
|
30
|
+
// catch up when a suspension of at least OUT_OF_SYNC_PERIOD was detected
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## 139.0.0
|
|
35
|
+
|
|
36
|
+
### Major Changes
|
|
37
|
+
|
|
38
|
+
- [`72f7cec91a1d4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/72f7cec91a1d4) -
|
|
39
|
+
Remove the `editor_synced_block_perf` experiment. The lazy node-view init and cached
|
|
40
|
+
status-decoration apply path are now always on, and the legacy full-document `descendants()`
|
|
41
|
+
decoration walk has been removed.
|
|
42
|
+
- [`72f7cec91a1d4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/72f7cec91a1d4) -
|
|
43
|
+
Remove the `platform_synced_block_use_new_source_nodeview` experiment. The new source node view is
|
|
44
|
+
now always used and the superseded implementation has been deleted.
|
|
45
|
+
|
|
3
46
|
## 138.1.0
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|
|
@@ -928,15 +928,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
928
928
|
param: 'isEnabled',
|
|
929
929
|
defaultValue: false
|
|
930
930
|
}),
|
|
931
|
-
// Added 2026-03-05
|
|
932
|
-
platform_synced_block_use_new_source_nodeview: (0, _experimentBuilders.createBooleanExperiment)({
|
|
933
|
-
productKeys: {
|
|
934
|
-
confluence: 'platform_synced_block_use_new_source_nodeview',
|
|
935
|
-
jira: 'platform_synced_block_use_new_source_nodeview'
|
|
936
|
-
},
|
|
937
|
-
param: 'isEnabled',
|
|
938
|
-
defaultValue: false
|
|
939
|
-
}),
|
|
940
931
|
// Added 2025-08-18
|
|
941
932
|
platform_editor_locale_datepicker: (0, _experimentBuilders.createBooleanExperiment)({
|
|
942
933
|
productKeys: {
|
|
@@ -1234,14 +1225,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1234
1225
|
param: 'isEnabled',
|
|
1235
1226
|
defaultValue: false
|
|
1236
1227
|
}),
|
|
1237
|
-
// Added 2026-01-23
|
|
1238
|
-
collab_bypass_out_of_sync_period_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1239
|
-
productKeys: {
|
|
1240
|
-
confluence: 'collab_bypass_out_of_sync_period_experiment'
|
|
1241
|
-
},
|
|
1242
|
-
param: 'isEnabled',
|
|
1243
|
-
defaultValue: false
|
|
1244
|
-
}),
|
|
1245
1228
|
// Added 2026-07-16
|
|
1246
1229
|
platform_editor_fix_lagging_embed_resize_handle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1247
1230
|
productKeys: {
|
|
@@ -2202,14 +2185,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2202
2185
|
param: 'isEnabled',
|
|
2203
2186
|
defaultValue: false
|
|
2204
2187
|
}),
|
|
2205
|
-
// Added 2026-05-05
|
|
2206
|
-
editor_synced_block_perf: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2207
|
-
productKeys: {
|
|
2208
|
-
confluence: 'editor_synced_block_perf'
|
|
2209
|
-
},
|
|
2210
|
-
param: 'isEnabled',
|
|
2211
|
-
defaultValue: false
|
|
2212
|
-
}),
|
|
2213
2188
|
// Added 2026-07-09
|
|
2214
2189
|
platform_editor_sync_block_activation: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2215
2190
|
productKeys: {
|
|
@@ -922,15 +922,6 @@ export const editorExperimentsConfig = {
|
|
|
922
922
|
param: 'isEnabled',
|
|
923
923
|
defaultValue: false
|
|
924
924
|
}),
|
|
925
|
-
// Added 2026-03-05
|
|
926
|
-
platform_synced_block_use_new_source_nodeview: createBooleanExperiment({
|
|
927
|
-
productKeys: {
|
|
928
|
-
confluence: 'platform_synced_block_use_new_source_nodeview',
|
|
929
|
-
jira: 'platform_synced_block_use_new_source_nodeview'
|
|
930
|
-
},
|
|
931
|
-
param: 'isEnabled',
|
|
932
|
-
defaultValue: false
|
|
933
|
-
}),
|
|
934
925
|
// Added 2025-08-18
|
|
935
926
|
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
936
927
|
productKeys: {
|
|
@@ -1228,14 +1219,6 @@ export const editorExperimentsConfig = {
|
|
|
1228
1219
|
param: 'isEnabled',
|
|
1229
1220
|
defaultValue: false
|
|
1230
1221
|
}),
|
|
1231
|
-
// Added 2026-01-23
|
|
1232
|
-
collab_bypass_out_of_sync_period_experiment: createBooleanExperiment({
|
|
1233
|
-
productKeys: {
|
|
1234
|
-
confluence: 'collab_bypass_out_of_sync_period_experiment'
|
|
1235
|
-
},
|
|
1236
|
-
param: 'isEnabled',
|
|
1237
|
-
defaultValue: false
|
|
1238
|
-
}),
|
|
1239
1222
|
// Added 2026-07-16
|
|
1240
1223
|
platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
|
|
1241
1224
|
productKeys: {
|
|
@@ -2196,14 +2179,6 @@ export const editorExperimentsConfig = {
|
|
|
2196
2179
|
param: 'isEnabled',
|
|
2197
2180
|
defaultValue: false
|
|
2198
2181
|
}),
|
|
2199
|
-
// Added 2026-05-05
|
|
2200
|
-
editor_synced_block_perf: createBooleanExperiment({
|
|
2201
|
-
productKeys: {
|
|
2202
|
-
confluence: 'editor_synced_block_perf'
|
|
2203
|
-
},
|
|
2204
|
-
param: 'isEnabled',
|
|
2205
|
-
defaultValue: false
|
|
2206
|
-
}),
|
|
2207
2182
|
// Added 2026-07-09
|
|
2208
2183
|
platform_editor_sync_block_activation: createBooleanExperiment({
|
|
2209
2184
|
productKeys: {
|
|
@@ -922,15 +922,6 @@ export var editorExperimentsConfig = {
|
|
|
922
922
|
param: 'isEnabled',
|
|
923
923
|
defaultValue: false
|
|
924
924
|
}),
|
|
925
|
-
// Added 2026-03-05
|
|
926
|
-
platform_synced_block_use_new_source_nodeview: createBooleanExperiment({
|
|
927
|
-
productKeys: {
|
|
928
|
-
confluence: 'platform_synced_block_use_new_source_nodeview',
|
|
929
|
-
jira: 'platform_synced_block_use_new_source_nodeview'
|
|
930
|
-
},
|
|
931
|
-
param: 'isEnabled',
|
|
932
|
-
defaultValue: false
|
|
933
|
-
}),
|
|
934
925
|
// Added 2025-08-18
|
|
935
926
|
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
936
927
|
productKeys: {
|
|
@@ -1228,14 +1219,6 @@ export var editorExperimentsConfig = {
|
|
|
1228
1219
|
param: 'isEnabled',
|
|
1229
1220
|
defaultValue: false
|
|
1230
1221
|
}),
|
|
1231
|
-
// Added 2026-01-23
|
|
1232
|
-
collab_bypass_out_of_sync_period_experiment: createBooleanExperiment({
|
|
1233
|
-
productKeys: {
|
|
1234
|
-
confluence: 'collab_bypass_out_of_sync_period_experiment'
|
|
1235
|
-
},
|
|
1236
|
-
param: 'isEnabled',
|
|
1237
|
-
defaultValue: false
|
|
1238
|
-
}),
|
|
1239
1222
|
// Added 2026-07-16
|
|
1240
1223
|
platform_editor_fix_lagging_embed_resize_handle: createBooleanExperiment({
|
|
1241
1224
|
productKeys: {
|
|
@@ -2196,14 +2179,6 @@ export var editorExperimentsConfig = {
|
|
|
2196
2179
|
param: 'isEnabled',
|
|
2197
2180
|
defaultValue: false
|
|
2198
2181
|
}),
|
|
2199
|
-
// Added 2026-05-05
|
|
2200
|
-
editor_synced_block_perf: createBooleanExperiment({
|
|
2201
|
-
productKeys: {
|
|
2202
|
-
confluence: 'editor_synced_block_perf'
|
|
2203
|
-
},
|
|
2204
|
-
param: 'isEnabled',
|
|
2205
|
-
defaultValue: false
|
|
2206
|
-
}),
|
|
2207
2182
|
// Added 2026-07-09
|
|
2208
2183
|
platform_editor_sync_block_activation: createBooleanExperiment({
|
|
2209
2184
|
productKeys: {
|
|
@@ -834,24 +834,12 @@ export declare const editorExperimentsConfig: {
|
|
|
834
834
|
productKeys?: ProductKeys;
|
|
835
835
|
typeGuard: IsBooleanType;
|
|
836
836
|
};
|
|
837
|
-
platform_synced_block_use_new_source_nodeview: {
|
|
838
|
-
defaultValue: boolean;
|
|
839
|
-
param: string;
|
|
840
|
-
productKeys?: ProductKeys;
|
|
841
|
-
typeGuard: IsBooleanType;
|
|
842
|
-
};
|
|
843
837
|
platform_editor_sync_block_activation: {
|
|
844
838
|
defaultValue: boolean;
|
|
845
839
|
param: string;
|
|
846
840
|
productKeys?: ProductKeys;
|
|
847
841
|
typeGuard: IsBooleanType;
|
|
848
842
|
};
|
|
849
|
-
editor_synced_block_perf: {
|
|
850
|
-
defaultValue: boolean;
|
|
851
|
-
param: string;
|
|
852
|
-
productKeys?: ProductKeys;
|
|
853
|
-
typeGuard: IsBooleanType;
|
|
854
|
-
};
|
|
855
843
|
platform_use_llm_space_recommendations: {
|
|
856
844
|
defaultValue: boolean;
|
|
857
845
|
param: string;
|
|
@@ -900,12 +888,6 @@ export declare const editorExperimentsConfig: {
|
|
|
900
888
|
productKeys?: ProductKeys;
|
|
901
889
|
typeGuard: IsBooleanType;
|
|
902
890
|
};
|
|
903
|
-
collab_bypass_out_of_sync_period_experiment: {
|
|
904
|
-
defaultValue: boolean;
|
|
905
|
-
param: string;
|
|
906
|
-
productKeys?: ProductKeys;
|
|
907
|
-
typeGuard: IsBooleanType;
|
|
908
|
-
};
|
|
909
891
|
platform_editor_renderer_toolbar_updates: {
|
|
910
892
|
defaultValue: boolean;
|
|
911
893
|
param: string;
|
package/package.json
CHANGED