@atlaskit/tmp-editor-statsig 195.0.0 → 197.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,32 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 197.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`cd25a56e957e5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cd25a56e957e5) -
|
|
8
|
+
Clean up experiment `cc-maui-overlay-by-localid`. The enabled behaviour is now permanent: the
|
|
9
|
+
inline-Rovo streaming target for a media node is always the node's `localId`, so the AI-generating
|
|
10
|
+
overlay only lights up the node the user acted on instead of every copy/pasted duplicate sharing
|
|
11
|
+
the same media file id.
|
|
12
|
+
|
|
13
|
+
`@atlaskit/tmp-editor-statsig` removes the `cc-maui-overlay-by-localid` key from
|
|
14
|
+
`editorExperimentsConfig`, so reading it via `expValEquals`/`expValEqualsNoExposure` is now a type
|
|
15
|
+
error - remove those call sites.
|
|
16
|
+
|
|
17
|
+
`@atlassian/editor-rovo-bridge` removes `onPrepareImageUpdate` and `onClearAIGenerating` from the
|
|
18
|
+
`PassThroughCommandProps` type. The ACTION_PREPARE overlay path they drove is dead now that the
|
|
19
|
+
overlay is keyed on `localId`, and the payload only ever carried a media file id. Consumers
|
|
20
|
+
passing either callback should drop it; no replacement is needed.
|
|
21
|
+
|
|
22
|
+
## 196.0.0
|
|
23
|
+
|
|
24
|
+
### Major Changes
|
|
25
|
+
|
|
26
|
+
- [`76cb6eaf691bb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/76cb6eaf691bb) -
|
|
27
|
+
Remove the retired rovogrowth-635-pre-auth-cta-preview-exp experiment and feature gate, preserving
|
|
28
|
+
the shipped control CTA.
|
|
29
|
+
|
|
3
30
|
## 195.0.0
|
|
4
31
|
|
|
5
32
|
### Major Changes
|
|
@@ -743,15 +743,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
743
743
|
param: 'isEnabled',
|
|
744
744
|
defaultValue: false
|
|
745
745
|
}),
|
|
746
|
-
// Added 2026-05-11 — Pre-auth inline CTA 'Preview' experiment for unauthorised 3P inline smart links
|
|
747
|
-
'rovogrowth-635-pre-auth-cta-preview-exp': (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
748
|
-
productKeys: {
|
|
749
|
-
confluence: 'rovogrowth-635-pre-auth-cta-preview-exp',
|
|
750
|
-
jira: 'rovogrowth-635-pre-auth-cta-preview-exp'
|
|
751
|
-
},
|
|
752
|
-
param: 'isEnabled',
|
|
753
|
-
defaultValue: false
|
|
754
|
-
}),
|
|
755
746
|
// Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
|
|
756
747
|
platform_sl_3p_preauth_social_proof_inline_cta: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
757
748
|
productKeys: {
|
|
@@ -889,14 +880,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
889
880
|
param: 'isEnabled',
|
|
890
881
|
defaultValue: false
|
|
891
882
|
}),
|
|
892
|
-
// Added 2026-07-07
|
|
893
|
-
'cc-maui-overlay-by-localid': (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
894
|
-
productKeys: {
|
|
895
|
-
confluence: 'cc-maui-overlay-by-localid'
|
|
896
|
-
},
|
|
897
|
-
param: 'isEnabled',
|
|
898
|
-
defaultValue: false
|
|
899
|
-
}),
|
|
900
883
|
// Added 2026-07-29
|
|
901
884
|
cc_maui_polish_changes_batch_4: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
902
885
|
productKeys: {
|
|
@@ -737,15 +737,6 @@ export const editorExperimentsConfig = {
|
|
|
737
737
|
param: 'isEnabled',
|
|
738
738
|
defaultValue: false
|
|
739
739
|
}),
|
|
740
|
-
// Added 2026-05-11 — Pre-auth inline CTA 'Preview' experiment for unauthorised 3P inline smart links
|
|
741
|
-
'rovogrowth-635-pre-auth-cta-preview-exp': createBooleanExperiment({
|
|
742
|
-
productKeys: {
|
|
743
|
-
confluence: 'rovogrowth-635-pre-auth-cta-preview-exp',
|
|
744
|
-
jira: 'rovogrowth-635-pre-auth-cta-preview-exp'
|
|
745
|
-
},
|
|
746
|
-
param: 'isEnabled',
|
|
747
|
-
defaultValue: false
|
|
748
|
-
}),
|
|
749
740
|
// Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
|
|
750
741
|
platform_sl_3p_preauth_social_proof_inline_cta: createBooleanExperiment({
|
|
751
742
|
productKeys: {
|
|
@@ -883,14 +874,6 @@ export const editorExperimentsConfig = {
|
|
|
883
874
|
param: 'isEnabled',
|
|
884
875
|
defaultValue: false
|
|
885
876
|
}),
|
|
886
|
-
// Added 2026-07-07
|
|
887
|
-
'cc-maui-overlay-by-localid': createBooleanExperiment({
|
|
888
|
-
productKeys: {
|
|
889
|
-
confluence: 'cc-maui-overlay-by-localid'
|
|
890
|
-
},
|
|
891
|
-
param: 'isEnabled',
|
|
892
|
-
defaultValue: false
|
|
893
|
-
}),
|
|
894
877
|
// Added 2026-07-29
|
|
895
878
|
cc_maui_polish_changes_batch_4: createBooleanExperiment({
|
|
896
879
|
productKeys: {
|
|
@@ -737,15 +737,6 @@ export var editorExperimentsConfig = {
|
|
|
737
737
|
param: 'isEnabled',
|
|
738
738
|
defaultValue: false
|
|
739
739
|
}),
|
|
740
|
-
// Added 2026-05-11 — Pre-auth inline CTA 'Preview' experiment for unauthorised 3P inline smart links
|
|
741
|
-
'rovogrowth-635-pre-auth-cta-preview-exp': createBooleanExperiment({
|
|
742
|
-
productKeys: {
|
|
743
|
-
confluence: 'rovogrowth-635-pre-auth-cta-preview-exp',
|
|
744
|
-
jira: 'rovogrowth-635-pre-auth-cta-preview-exp'
|
|
745
|
-
},
|
|
746
|
-
param: 'isEnabled',
|
|
747
|
-
defaultValue: false
|
|
748
|
-
}),
|
|
749
740
|
// Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
|
|
750
741
|
platform_sl_3p_preauth_social_proof_inline_cta: createBooleanExperiment({
|
|
751
742
|
productKeys: {
|
|
@@ -883,14 +874,6 @@ export var editorExperimentsConfig = {
|
|
|
883
874
|
param: 'isEnabled',
|
|
884
875
|
defaultValue: false
|
|
885
876
|
}),
|
|
886
|
-
// Added 2026-07-07
|
|
887
|
-
'cc-maui-overlay-by-localid': createBooleanExperiment({
|
|
888
|
-
productKeys: {
|
|
889
|
-
confluence: 'cc-maui-overlay-by-localid'
|
|
890
|
-
},
|
|
891
|
-
param: 'isEnabled',
|
|
892
|
-
defaultValue: false
|
|
893
|
-
}),
|
|
894
877
|
// Added 2026-07-29
|
|
895
878
|
cc_maui_polish_changes_batch_4: createBooleanExperiment({
|
|
896
879
|
productKeys: {
|
|
@@ -528,12 +528,6 @@ export declare const editorExperimentsConfig: {
|
|
|
528
528
|
productKeys?: ProductKeys;
|
|
529
529
|
typeGuard: IsBooleanType;
|
|
530
530
|
};
|
|
531
|
-
'rovogrowth-635-pre-auth-cta-preview-exp': {
|
|
532
|
-
defaultValue: boolean;
|
|
533
|
-
param: string;
|
|
534
|
-
productKeys?: ProductKeys;
|
|
535
|
-
typeGuard: IsBooleanType;
|
|
536
|
-
};
|
|
537
531
|
platform_sl_3p_preauth_social_proof_inline_cta: {
|
|
538
532
|
defaultValue: boolean;
|
|
539
533
|
param: string;
|
|
@@ -691,12 +685,6 @@ export declare const editorExperimentsConfig: {
|
|
|
691
685
|
productKeys?: ProductKeys;
|
|
692
686
|
typeGuard: IsBooleanType;
|
|
693
687
|
};
|
|
694
|
-
'cc-maui-overlay-by-localid': {
|
|
695
|
-
defaultValue: boolean;
|
|
696
|
-
param: string;
|
|
697
|
-
productKeys?: ProductKeys;
|
|
698
|
-
typeGuard: IsBooleanType;
|
|
699
|
-
};
|
|
700
688
|
cc_maui_polish_changes_batch_4: {
|
|
701
689
|
defaultValue: boolean;
|
|
702
690
|
param: string;
|
package/package.json
CHANGED