@atlaskit/tmp-editor-statsig 89.0.0 → 89.1.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 89.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0f434033d49b4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f434033d49b4) -
|
|
8
|
+
Add remix, remix_edit, and inline_edit experience values to creation context payloads so frontend
|
|
9
|
+
requests can be logged and routed by experience.
|
|
10
|
+
|
|
3
11
|
## 89.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
|
@@ -177,6 +177,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
177
177
|
param: 'isEnabled',
|
|
178
178
|
defaultValue: false
|
|
179
179
|
}),
|
|
180
|
+
// Added 2026-06-01
|
|
181
|
+
rovo_remix_experience_context: (0, _experimentBuilders.createBooleanExperiment)({
|
|
182
|
+
productKeys: {
|
|
183
|
+
confluence: 'rovo_remix_experience_context'
|
|
184
|
+
},
|
|
185
|
+
param: 'isEnabled',
|
|
186
|
+
defaultValue: false
|
|
187
|
+
}),
|
|
180
188
|
// Added 2026-04-28
|
|
181
189
|
'agent-managed_blocks_mvp': (0, _experimentBuilders.createBooleanExperiment)({
|
|
182
190
|
productKeys: {
|
|
@@ -171,6 +171,14 @@ export const editorExperimentsConfig = {
|
|
|
171
171
|
param: 'isEnabled',
|
|
172
172
|
defaultValue: false
|
|
173
173
|
}),
|
|
174
|
+
// Added 2026-06-01
|
|
175
|
+
rovo_remix_experience_context: createBooleanExperiment({
|
|
176
|
+
productKeys: {
|
|
177
|
+
confluence: 'rovo_remix_experience_context'
|
|
178
|
+
},
|
|
179
|
+
param: 'isEnabled',
|
|
180
|
+
defaultValue: false
|
|
181
|
+
}),
|
|
174
182
|
// Added 2026-04-28
|
|
175
183
|
'agent-managed_blocks_mvp': createBooleanExperiment({
|
|
176
184
|
productKeys: {
|
|
@@ -171,6 +171,14 @@ export var editorExperimentsConfig = {
|
|
|
171
171
|
param: 'isEnabled',
|
|
172
172
|
defaultValue: false
|
|
173
173
|
}),
|
|
174
|
+
// Added 2026-06-01
|
|
175
|
+
rovo_remix_experience_context: createBooleanExperiment({
|
|
176
|
+
productKeys: {
|
|
177
|
+
confluence: 'rovo_remix_experience_context'
|
|
178
|
+
},
|
|
179
|
+
param: 'isEnabled',
|
|
180
|
+
defaultValue: false
|
|
181
|
+
}),
|
|
174
182
|
// Added 2026-04-28
|
|
175
183
|
'agent-managed_blocks_mvp': createBooleanExperiment({
|
|
176
184
|
productKeys: {
|
|
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
|
|
|
33
33
|
productKeys?: ProductKeys;
|
|
34
34
|
typeGuard: IsBooleanType;
|
|
35
35
|
};
|
|
36
|
+
rovo_remix_experience_context: {
|
|
37
|
+
defaultValue: boolean;
|
|
38
|
+
param: string;
|
|
39
|
+
productKeys?: ProductKeys;
|
|
40
|
+
typeGuard: IsBooleanType;
|
|
41
|
+
};
|
|
36
42
|
'databases-native-embeds-v2': {
|
|
37
43
|
defaultValue: boolean;
|
|
38
44
|
param: string;
|
|
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
|
|
|
33
33
|
productKeys?: ProductKeys;
|
|
34
34
|
typeGuard: IsBooleanType;
|
|
35
35
|
};
|
|
36
|
+
rovo_remix_experience_context: {
|
|
37
|
+
defaultValue: boolean;
|
|
38
|
+
param: string;
|
|
39
|
+
productKeys?: ProductKeys;
|
|
40
|
+
typeGuard: IsBooleanType;
|
|
41
|
+
};
|
|
36
42
|
'databases-native-embeds-v2': {
|
|
37
43
|
defaultValue: boolean;
|
|
38
44
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "89.
|
|
3
|
+
"version": "89.1.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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.7.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
|
-
"@atlaskit/react-ufo": "^6.
|
|
38
|
+
"@atlaskit/react-ufo": "^6.7.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"platform-feature-flags": {
|