@atlaskit/tmp-editor-statsig 139.0.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,36 @@
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
+
3
34
  ## 139.0.0
4
35
 
5
36
  ### 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: {
@@ -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: {
@@ -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: {
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "139.0.0",
3
+ "version": "140.0.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",