@atlaskit/renderer 108.15.4 → 108.15.6
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 +252 -163
- package/dist/cjs/react/nodes/mediaSingle/index.js +21 -7
- package/dist/cjs/react/nodes/table/sticky.js +1 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/mediaSingle/index.js +22 -8
- package/dist/es2019/react/nodes/table/sticky.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/mediaSingle/index.js +22 -8
- package/dist/esm/react/nodes/table/sticky.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,94 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 108.15.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#40718](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40718) [`c1d4b48bdd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c1d4b48bdd9) - WHAT: This change removes plugin exports from editor-core that were used only for the mobile bridge.
|
|
8
|
+
|
|
9
|
+
This includes:
|
|
10
|
+
|
|
11
|
+
- All plugin keys
|
|
12
|
+
- Plugin commands
|
|
13
|
+
- Plugin types
|
|
14
|
+
|
|
15
|
+
The full list is:
|
|
16
|
+
|
|
17
|
+
- EditorFeatureFlags (available via '@atlaskit/editor-common/types' as `FeatureFlags`)
|
|
18
|
+
- EmojiResource (available via '@atlaskit/emoji/resource' as `EmojiResource`)
|
|
19
|
+
- mediaPlugin
|
|
20
|
+
- insertMediaSingleNode
|
|
21
|
+
- CustomMediaPicker
|
|
22
|
+
- mediaPluginKey
|
|
23
|
+
- textColorPluginKey
|
|
24
|
+
- TextColorPluginState
|
|
25
|
+
- changeColor
|
|
26
|
+
- CodeBlockPlugin
|
|
27
|
+
- PanelPlugin
|
|
28
|
+
- subscribeToToolbarAndPickerUpdates
|
|
29
|
+
- subscribeTypeAheadUpdates
|
|
30
|
+
- TextFormattingInputMethodToolbar
|
|
31
|
+
- TextFormattingInputMethodBasic
|
|
32
|
+
- createTable
|
|
33
|
+
- insertTaskDecisionCommand
|
|
34
|
+
- TaskDecisionInputMethod
|
|
35
|
+
- EventDispatcher
|
|
36
|
+
- statusPluginKey
|
|
37
|
+
- StatusState
|
|
38
|
+
- StatusType
|
|
39
|
+
- DatePluginState
|
|
40
|
+
- insertDate
|
|
41
|
+
- openDatePicker
|
|
42
|
+
- deleteDate
|
|
43
|
+
- dateToDateType
|
|
44
|
+
- datePluginKey
|
|
45
|
+
- commitStatusPicker
|
|
46
|
+
- setStatusPickerAt
|
|
47
|
+
- updateStatus
|
|
48
|
+
- updateStatusWithAnalytics
|
|
49
|
+
- removeStatus
|
|
50
|
+
- typeAheadPluginKey
|
|
51
|
+
- TypeAheadPluginState
|
|
52
|
+
- setKeyboardHeight
|
|
53
|
+
- setMobilePaddingTop
|
|
54
|
+
- setIsExpanded
|
|
55
|
+
- dedupe (available via '@atlaskit/editor-common/utils' as `dedupe`)
|
|
56
|
+
- GapCursorSelection (available via '@atlaskit/editor-common/selection' as `GapCursorSelection`)
|
|
57
|
+
- GapCursorSide (available via '@atlaskit/editor-common/selection' as `Side`)
|
|
58
|
+
- HistoryPluginState
|
|
59
|
+
- MentionPluginState
|
|
60
|
+
- InsertBlockInputMethodToolbar
|
|
61
|
+
- selectionPluginKey
|
|
62
|
+
- SelectionData
|
|
63
|
+
- SelectionDataState
|
|
64
|
+
- insertExpand
|
|
65
|
+
- createTypeAheadTools
|
|
66
|
+
- AbstractMentionResource (available via '@atlaskit/mention/resource' as `AbstractMentionResource`)
|
|
67
|
+
- PresenceResource (available via '@atlaskit/mention/resource' as `PresenceResource`)
|
|
68
|
+
- ReactEditorView
|
|
69
|
+
- BaseReactEditorView
|
|
70
|
+
- getDefaultPresetOptionsFromEditorProps
|
|
71
|
+
- lightModeStatusColorPalette
|
|
72
|
+
- darkModeStatusColorPalette
|
|
73
|
+
- PaletteColor
|
|
74
|
+
- DEFAULT_BORDER_COLOR
|
|
75
|
+
|
|
76
|
+
WHY: We have been extracting plugins out of `editor-core` and as we move them out we need to remove these exports as the new architecture does not support plugin keys or commands.
|
|
77
|
+
|
|
78
|
+
This major bump will remove all remaining commands and keys in one go - some of these features will be accessible in a safe manner in the future via the `ComposableEditor` and the appropriate plugins.
|
|
79
|
+
|
|
80
|
+
HOW: Should be no consumers using these methods currently (only mobile bridge which has been updated).
|
|
81
|
+
|
|
82
|
+
If there are any issues please reach out to the #help-editor for information on how to update appropriately.
|
|
83
|
+
|
|
84
|
+
- [#40841](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40841) [`de739cb4d0b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de739cb4d0b) - update renderer sticky header position to avoid flashing
|
|
85
|
+
|
|
86
|
+
## 108.15.5
|
|
87
|
+
|
|
88
|
+
### Patch Changes
|
|
89
|
+
|
|
90
|
+
- [#40666](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40666) [`77537cc2f90`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77537cc2f90) - ED-20094-fix-media-SSR
|
|
91
|
+
|
|
3
92
|
## 108.15.4
|
|
4
93
|
|
|
5
94
|
### Patch Changes
|
|
@@ -10,26 +99,26 @@
|
|
|
10
99
|
|
|
11
100
|
### Patch Changes
|
|
12
101
|
|
|
13
|
-
- [`1b31bd53b23`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b31bd53b23) - [ux] [ECA11Y-89] Added aria-label for sortable table header cell button
|
|
102
|
+
- [#40454](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40454) [`1b31bd53b23`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b31bd53b23) - [ux] [ECA11Y-89] Added aria-label for sortable table header cell button
|
|
14
103
|
|
|
15
104
|
## 108.15.2
|
|
16
105
|
|
|
17
106
|
### Patch Changes
|
|
18
107
|
|
|
19
|
-
- [`ae2c0db7186`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae2c0db7186) - Add datasource failed analytic events to card fallback error boundary
|
|
108
|
+
- [#40478](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40478) [`ae2c0db7186`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae2c0db7186) - Add datasource failed analytic events to card fallback error boundary
|
|
20
109
|
- Updated dependencies
|
|
21
110
|
|
|
22
111
|
## 108.15.1
|
|
23
112
|
|
|
24
113
|
### Patch Changes
|
|
25
114
|
|
|
26
|
-
- [`05b9c2db1dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05b9c2db1dc) - [ux] Increase visibility of table scroll shadows
|
|
115
|
+
- [#40231](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40231) [`05b9c2db1dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05b9c2db1dc) - [ux] Increase visibility of table scroll shadows
|
|
27
116
|
|
|
28
117
|
## 108.15.0
|
|
29
118
|
|
|
30
119
|
### Minor Changes
|
|
31
120
|
|
|
32
|
-
- [`e4721cc5a3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4721cc5a3f) - Make issue count clickable
|
|
121
|
+
- [#40408](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40408) [`e4721cc5a3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4721cc5a3f) - Make issue count clickable
|
|
33
122
|
|
|
34
123
|
### Patch Changes
|
|
35
124
|
|
|
@@ -39,20 +128,20 @@
|
|
|
39
128
|
|
|
40
129
|
### Minor Changes
|
|
41
130
|
|
|
42
|
-
- [`fd3a855ab5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd3a855ab5a) - [ED-19844] Add trailing telepointer logic to renderer behind feature flag
|
|
131
|
+
- [#40451](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40451) [`fd3a855ab5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd3a855ab5a) - [ED-19844] Add trailing telepointer logic to renderer behind feature flag
|
|
43
132
|
|
|
44
133
|
## 108.13.1
|
|
45
134
|
|
|
46
135
|
### Patch Changes
|
|
47
136
|
|
|
48
|
-
- [`c7f60374a72`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7f60374a72) - The ReactSerializer will now re-render when the passed extensionHandlers changes. This is avoid SSR pages with dynamic macros breaking when re-renders is reduced. Add safety catch tests to avoid future breakages.
|
|
137
|
+
- [#40237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40237) [`c7f60374a72`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7f60374a72) - The ReactSerializer will now re-render when the passed extensionHandlers changes. This is avoid SSR pages with dynamic macros breaking when re-renders is reduced. Add safety catch tests to avoid future breakages.
|
|
49
138
|
- Updated dependencies
|
|
50
139
|
|
|
51
140
|
## 108.13.0
|
|
52
141
|
|
|
53
142
|
### Minor Changes
|
|
54
143
|
|
|
55
|
-
- [`3d5a4dfddba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d5a4dfddba) - Make Smart Card frameStyle for embeds configurable via `@atlaskit/renderer`
|
|
144
|
+
- [#40052](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40052) [`3d5a4dfddba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d5a4dfddba) - Make Smart Card frameStyle for embeds configurable via `@atlaskit/renderer`
|
|
56
145
|
|
|
57
146
|
### Patch Changes
|
|
58
147
|
|
|
@@ -62,52 +151,52 @@
|
|
|
62
151
|
|
|
63
152
|
### Minor Changes
|
|
64
153
|
|
|
65
|
-
- [`ec4867e1376`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec4867e1376) - Removed captions flag and replaced with a new media prop `allowCaptions`. `allowCaptions` is set to `false` by default and products will need to opt in to be able to use captions from now on.
|
|
154
|
+
- [#39320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39320) [`ec4867e1376`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec4867e1376) - Removed captions flag and replaced with a new media prop `allowCaptions`. `allowCaptions` is set to `false` by default and products will need to opt in to be able to use captions from now on.
|
|
66
155
|
|
|
67
156
|
## 108.11.18
|
|
68
157
|
|
|
69
158
|
### Patch Changes
|
|
70
159
|
|
|
71
|
-
- [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) - NO-ISSUE Import doc builder types from editor-common
|
|
160
|
+
- [#39984](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39984) [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) - NO-ISSUE Import doc builder types from editor-common
|
|
72
161
|
|
|
73
162
|
## 108.11.17
|
|
74
163
|
|
|
75
164
|
### Patch Changes
|
|
76
165
|
|
|
77
|
-
- [`e6122bf1c9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6122bf1c9a) - MEX-2481 revert and re-introduce a new fix for media border gap issue
|
|
166
|
+
- [#39427](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39427) [`e6122bf1c9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6122bf1c9a) - MEX-2481 revert and re-introduce a new fix for media border gap issue
|
|
78
167
|
- Updated dependencies
|
|
79
168
|
|
|
80
169
|
## 108.11.16
|
|
81
170
|
|
|
82
171
|
### Patch Changes
|
|
83
172
|
|
|
84
|
-
- [`b821b2d7ac1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b821b2d7ac1) - Fix issue where tables with no column widths would render at their layout value when nested inside another node, render tables with no column widths in this scenario so they scale with the parent node.
|
|
173
|
+
- [#39892](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39892) [`b821b2d7ac1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b821b2d7ac1) - Fix issue where tables with no column widths would render at their layout value when nested inside another node, render tables with no column widths in this scenario so they scale with the parent node.
|
|
85
174
|
|
|
86
175
|
## 108.11.15
|
|
87
176
|
|
|
88
177
|
### Patch Changes
|
|
89
178
|
|
|
90
|
-
- [`2325dd0eb57`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2325dd0eb57) - fix width issue on initial load
|
|
179
|
+
- [#39656](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39656) [`2325dd0eb57`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2325dd0eb57) - fix width issue on initial load
|
|
91
180
|
|
|
92
181
|
## 108.11.14
|
|
93
182
|
|
|
94
183
|
### Patch Changes
|
|
95
184
|
|
|
96
|
-
- [`aeb5c9a01e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeb5c9a01e8) - Delete adf-schema from AFE and rely on npm package for adf-schema
|
|
185
|
+
- [#39481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39481) [`aeb5c9a01e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeb5c9a01e8) - Delete adf-schema from AFE and rely on npm package for adf-schema
|
|
97
186
|
- [`4b4dcfe0bba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b4dcfe0bba) - Delete adf-schema, use published version
|
|
98
187
|
|
|
99
188
|
## 108.11.13
|
|
100
189
|
|
|
101
190
|
### Patch Changes
|
|
102
191
|
|
|
103
|
-
- [`c06bb97591a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c06bb97591a) - [ED-19023] Add distorted duration to TTI event (tracking tab visibility)
|
|
192
|
+
- [#39837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39837) [`c06bb97591a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c06bb97591a) - [ED-19023] Add distorted duration to TTI event (tracking tab visibility)
|
|
104
193
|
- Updated dependencies
|
|
105
194
|
|
|
106
195
|
## 108.11.12
|
|
107
196
|
|
|
108
197
|
### Patch Changes
|
|
109
198
|
|
|
110
|
-
- [`7b6a2c6671b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6a2c6671b) - Introducing 'media-state' for handling media internal file state.
|
|
199
|
+
- [#38532](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38532) [`7b6a2c6671b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b6a2c6671b) - Introducing 'media-state' for handling media internal file state.
|
|
111
200
|
Introducing 'media-client-react' to provide hooks for seamless media-client integration with React.
|
|
112
201
|
Introducing 'MediaCardV2' with a feature flag to replace rxjs based fileState subscription with 'useFileState' hook.
|
|
113
202
|
Removed unused feature flags APIs from 'media-client' and its helper functions from 'media-common'.
|
|
@@ -117,28 +206,28 @@
|
|
|
117
206
|
|
|
118
207
|
### Patch Changes
|
|
119
208
|
|
|
120
|
-
- [`e0de9e09b5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0de9e09b5f) - Use table container width when calculating column widths to scale down, in renderer. Behind feature flag platform.editor.custom-table-width-scale-down-undefined-column_nkyvx
|
|
209
|
+
- [#39454](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39454) [`e0de9e09b5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0de9e09b5f) - Use table container width when calculating column widths to scale down, in renderer. Behind feature flag platform.editor.custom-table-width-scale-down-undefined-column_nkyvx
|
|
121
210
|
- Updated dependencies
|
|
122
211
|
|
|
123
212
|
## 108.11.10
|
|
124
213
|
|
|
125
214
|
### Patch Changes
|
|
126
215
|
|
|
127
|
-
- [`b4b0b6fa972`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4b0b6fa972) - Include hash when calling FF platform.editor.custom-table-width-scale-down-undefined-column_nkyvx
|
|
216
|
+
- [#39311](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39311) [`b4b0b6fa972`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4b0b6fa972) - Include hash when calling FF platform.editor.custom-table-width-scale-down-undefined-column_nkyvx
|
|
128
217
|
- Updated dependencies
|
|
129
218
|
|
|
130
219
|
## 108.11.9
|
|
131
220
|
|
|
132
221
|
### Patch Changes
|
|
133
222
|
|
|
134
|
-
- [`3fa17b4c298`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fa17b4c298) - Update type definitions to conform to changes within `@types/react@16.14.15`.
|
|
223
|
+
- [#39127](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39127) [`3fa17b4c298`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fa17b4c298) - Update type definitions to conform to changes within `@types/react@16.14.15`.
|
|
135
224
|
- Updated dependencies
|
|
136
225
|
|
|
137
226
|
## 108.11.8
|
|
138
227
|
|
|
139
228
|
### Patch Changes
|
|
140
229
|
|
|
141
|
-
- [`33cb07de05f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33cb07de05f) - change adf-schema to fixed versioning
|
|
230
|
+
- [#38976](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38976) [`33cb07de05f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33cb07de05f) - change adf-schema to fixed versioning
|
|
142
231
|
|
|
143
232
|
## 108.11.7
|
|
144
233
|
|
|
@@ -150,14 +239,14 @@
|
|
|
150
239
|
|
|
151
240
|
### Patch Changes
|
|
152
241
|
|
|
153
|
-
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
242
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
|
|
154
243
|
- Updated dependencies
|
|
155
244
|
|
|
156
245
|
## 108.11.5
|
|
157
246
|
|
|
158
247
|
### Patch Changes
|
|
159
248
|
|
|
160
|
-
- [`41e6188b408`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41e6188b408) - [ux] add scale down to undefined table in custom table width
|
|
249
|
+
- [#38554](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38554) [`41e6188b408`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41e6188b408) - [ux] add scale down to undefined table in custom table width
|
|
161
250
|
- Updated dependencies
|
|
162
251
|
|
|
163
252
|
## 108.11.4
|
|
@@ -176,19 +265,19 @@
|
|
|
176
265
|
|
|
177
266
|
### Patch Changes
|
|
178
267
|
|
|
179
|
-
- [`32f9d24dcdb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32f9d24dcdb) - Improve table renderer resizing performance.
|
|
268
|
+
- [#38451](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38451) [`32f9d24dcdb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32f9d24dcdb) - Improve table renderer resizing performance.
|
|
180
269
|
|
|
181
270
|
## 108.11.1
|
|
182
271
|
|
|
183
272
|
### Patch Changes
|
|
184
273
|
|
|
185
|
-
- [`39099193642`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39099193642) - Cleanup breakout styling when table has fragment mark ff
|
|
274
|
+
- [#38344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38344) [`39099193642`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39099193642) - Cleanup breakout styling when table has fragment mark ff
|
|
186
275
|
|
|
187
276
|
## 108.11.0
|
|
188
277
|
|
|
189
278
|
### Minor Changes
|
|
190
279
|
|
|
191
|
-
- [`0ea10bbad32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ea10bbad32) - Export type StickyHeaderProps for usages in CFE
|
|
280
|
+
- [#38273](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38273) [`0ea10bbad32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ea10bbad32) - Export type StickyHeaderProps for usages in CFE
|
|
192
281
|
|
|
193
282
|
## 108.10.1
|
|
194
283
|
|
|
@@ -200,7 +289,7 @@
|
|
|
200
289
|
|
|
201
290
|
### Minor Changes
|
|
202
291
|
|
|
203
|
-
- [`b9a083dc04d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9a083dc04d) - [ux] Adds error boundaries specific to datasource in editor and renderer. Fallback to unsupported block if no url or inline if url
|
|
292
|
+
- [#37644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37644) [`b9a083dc04d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9a083dc04d) - [ux] Adds error boundaries specific to datasource in editor and renderer. Fallback to unsupported block if no url or inline if url
|
|
204
293
|
|
|
205
294
|
## 108.9.1
|
|
206
295
|
|
|
@@ -212,7 +301,7 @@
|
|
|
212
301
|
|
|
213
302
|
### Minor Changes
|
|
214
303
|
|
|
215
|
-
- [`8695abdde8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8695abdde8e) - [ED-18289] Clean-up Editor Sentry feature flag
|
|
304
|
+
- [#38217](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38217) [`8695abdde8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8695abdde8e) - [ED-18289] Clean-up Editor Sentry feature flag
|
|
216
305
|
|
|
217
306
|
### Patch Changes
|
|
218
307
|
|
|
@@ -234,7 +323,7 @@
|
|
|
234
323
|
|
|
235
324
|
### Patch Changes
|
|
236
325
|
|
|
237
|
-
- [`35dbae44050`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35dbae44050) - [ux] [ED-19225] fix width of numbered column in table for renderer
|
|
326
|
+
- [#37790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37790) [`35dbae44050`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35dbae44050) - [ux] [ED-19225] fix width of numbered column in table for renderer
|
|
238
327
|
|
|
239
328
|
## 108.8.9
|
|
240
329
|
|
|
@@ -246,13 +335,13 @@
|
|
|
246
335
|
|
|
247
336
|
### Patch Changes
|
|
248
337
|
|
|
249
|
-
- [`02d1ab1d57d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02d1ab1d57d) - Improve DnD Experience in Datasource Table view
|
|
338
|
+
- [#37505](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37505) [`02d1ab1d57d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02d1ab1d57d) - Improve DnD Experience in Datasource Table view
|
|
250
339
|
|
|
251
340
|
## 108.8.7
|
|
252
341
|
|
|
253
342
|
### Patch Changes
|
|
254
343
|
|
|
255
|
-
- [`2babc4663c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2babc4663c5) - Fix unnecessary table scaling in Renderer
|
|
344
|
+
- [#37659](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37659) [`2babc4663c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2babc4663c5) - Fix unnecessary table scaling in Renderer
|
|
256
345
|
|
|
257
346
|
## 108.8.6
|
|
258
347
|
|
|
@@ -264,7 +353,7 @@
|
|
|
264
353
|
|
|
265
354
|
### Patch Changes
|
|
266
355
|
|
|
267
|
-
- [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) - [ED-19233] Import prosemirror libraries from internal facade package
|
|
356
|
+
- [#37785](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37785) [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) - [ED-19233] Import prosemirror libraries from internal facade package
|
|
268
357
|
|
|
269
358
|
## 108.8.4
|
|
270
359
|
|
|
@@ -276,13 +365,13 @@
|
|
|
276
365
|
|
|
277
366
|
### Patch Changes
|
|
278
367
|
|
|
279
|
-
- [`b9355830504`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9355830504) - Opt out of peer dependency enforcement
|
|
368
|
+
- [#37340](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37340) [`b9355830504`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9355830504) - Opt out of peer dependency enforcement
|
|
280
369
|
|
|
281
370
|
## 108.8.2
|
|
282
371
|
|
|
283
372
|
### Patch Changes
|
|
284
373
|
|
|
285
|
-
- [`7639c62cc20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7639c62cc20) - [ED-18776] Use local media types to avoid circular dependencies in renderer
|
|
374
|
+
- [#37281](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37281) [`7639c62cc20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7639c62cc20) - [ED-18776] Use local media types to avoid circular dependencies in renderer
|
|
286
375
|
|
|
287
376
|
## 108.8.1
|
|
288
377
|
|
|
@@ -294,7 +383,7 @@
|
|
|
294
383
|
|
|
295
384
|
### Minor Changes
|
|
296
385
|
|
|
297
|
-
- [`6bacee18c2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bacee18c2d) - [ux] Add new allowDatasource prop for enabling datasource in editor and add inlineCard fallback render for blockCard with datasource
|
|
386
|
+
- [#36750](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36750) [`6bacee18c2d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bacee18c2d) - [ux] Add new allowDatasource prop for enabling datasource in editor and add inlineCard fallback render for blockCard with datasource
|
|
298
387
|
|
|
299
388
|
### Patch Changes
|
|
300
389
|
|
|
@@ -304,37 +393,37 @@
|
|
|
304
393
|
|
|
305
394
|
### Patch Changes
|
|
306
395
|
|
|
307
|
-
- [`3e0e943a837`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e0e943a837) - [ux] Fix size issue for image with border in renderer
|
|
396
|
+
- [#37283](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37283) [`3e0e943a837`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e0e943a837) - [ux] Fix size issue for image with border in renderer
|
|
308
397
|
|
|
309
398
|
## 108.7.4
|
|
310
399
|
|
|
311
400
|
### Patch Changes
|
|
312
401
|
|
|
313
|
-
- [`5057217ab16`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5057217ab16) - [ux] Fix border cutoff on renderer for linked images
|
|
402
|
+
- [#37260](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37260) [`5057217ab16`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5057217ab16) - [ux] Fix border cutoff on renderer for linked images
|
|
314
403
|
|
|
315
404
|
## 108.7.3
|
|
316
405
|
|
|
317
406
|
### Patch Changes
|
|
318
407
|
|
|
319
|
-
- [`e7ed90bad7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ed90bad7c) - Use renderer appearance to use custom width
|
|
408
|
+
- [#36960](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36960) [`e7ed90bad7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ed90bad7c) - Use renderer appearance to use custom width
|
|
320
409
|
|
|
321
410
|
## 108.7.2
|
|
322
411
|
|
|
323
412
|
### Patch Changes
|
|
324
413
|
|
|
325
|
-
- [`3fb20c4aeba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fb20c4aeba) - Add postinstall check to enforce internal peer dependencies
|
|
414
|
+
- [#36757](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36757) [`3fb20c4aeba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fb20c4aeba) - Add postinstall check to enforce internal peer dependencies
|
|
326
415
|
|
|
327
416
|
## 108.7.1
|
|
328
417
|
|
|
329
418
|
### Patch Changes
|
|
330
419
|
|
|
331
|
-
- [`4fe49c40988`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4fe49c40988) - [ux] ED-18966 fix default table in renderer full-width appearance mode
|
|
420
|
+
- [#36968](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36968) [`4fe49c40988`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4fe49c40988) - [ux] ED-18966 fix default table in renderer full-width appearance mode
|
|
332
421
|
|
|
333
422
|
## 108.7.0
|
|
334
423
|
|
|
335
424
|
### Minor Changes
|
|
336
425
|
|
|
337
|
-
- [`5f028fb62a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f028fb62a1) - ED-19038 added mediaSingle.widthType support to renderer.
|
|
426
|
+
- [#36801](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36801) [`5f028fb62a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f028fb62a1) - ED-19038 added mediaSingle.widthType support to renderer.
|
|
338
427
|
|
|
339
428
|
### Patch Changes
|
|
340
429
|
|
|
@@ -344,58 +433,58 @@
|
|
|
344
433
|
|
|
345
434
|
### Patch Changes
|
|
346
435
|
|
|
347
|
-
- [`a46a10e8368`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a46a10e8368) - align table sticky header for custom table widths
|
|
436
|
+
- [#36835](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36835) [`a46a10e8368`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a46a10e8368) - align table sticky header for custom table widths
|
|
348
437
|
|
|
349
438
|
## 108.6.10
|
|
350
439
|
|
|
351
440
|
### Patch Changes
|
|
352
441
|
|
|
353
|
-
- [`76e2f35ef70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76e2f35ef70) - Updated `canRenderDatasource` to use object args.
|
|
442
|
+
- [#36344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36344) [`76e2f35ef70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76e2f35ef70) - Updated `canRenderDatasource` to use object args.
|
|
354
443
|
- Updated dependencies
|
|
355
444
|
|
|
356
445
|
## 108.6.9
|
|
357
446
|
|
|
358
447
|
### Patch Changes
|
|
359
448
|
|
|
360
|
-
- [`4d66cb26fcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d66cb26fcb) - Bump jsdom to ^17.0.0
|
|
449
|
+
- [#36822](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36822) [`4d66cb26fcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d66cb26fcb) - Bump jsdom to ^17.0.0
|
|
361
450
|
- Updated dependencies
|
|
362
451
|
|
|
363
452
|
## 108.6.8
|
|
364
453
|
|
|
365
454
|
### Patch Changes
|
|
366
455
|
|
|
367
|
-
- [`776a88442e4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/776a88442e4) - [ux] When on mobile, the datasources will fallback to inline smartcard views.
|
|
456
|
+
- [#35424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35424) [`776a88442e4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/776a88442e4) - [ux] When on mobile, the datasources will fallback to inline smartcard views.
|
|
368
457
|
|
|
369
458
|
## 108.6.7
|
|
370
459
|
|
|
371
460
|
### Patch Changes
|
|
372
461
|
|
|
373
|
-
- [`caa8dc8e5f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/caa8dc8e5f5) - ED-18758:Making the box-shadow used in table with sticky headers consistent in light theme to original
|
|
462
|
+
- [#36777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36777) [`caa8dc8e5f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/caa8dc8e5f5) - ED-18758:Making the box-shadow used in table with sticky headers consistent in light theme to original
|
|
374
463
|
|
|
375
464
|
## 108.6.6
|
|
376
465
|
|
|
377
466
|
### Patch Changes
|
|
378
467
|
|
|
379
|
-
- [`202f8c2ee69`](https://bitbucket.org/atlassian/atlassian-frontend/commits/202f8c2ee69) - The changes here adds support for datasource feature flag for rollout.
|
|
468
|
+
- [#36626](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36626) [`202f8c2ee69`](https://bitbucket.org/atlassian/atlassian-frontend/commits/202f8c2ee69) - The changes here adds support for datasource feature flag for rollout.
|
|
380
469
|
|
|
381
470
|
## 108.6.5
|
|
382
471
|
|
|
383
472
|
### Patch Changes
|
|
384
473
|
|
|
385
|
-
- [`f486dbd535c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f486dbd535c) - MEX-2481 Fix minor gap between image and border
|
|
474
|
+
- [#36498](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36498) [`f486dbd535c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f486dbd535c) - MEX-2481 Fix minor gap between image and border
|
|
386
475
|
- Updated dependencies
|
|
387
476
|
|
|
388
477
|
## 108.6.4
|
|
389
478
|
|
|
390
479
|
### Patch Changes
|
|
391
480
|
|
|
392
|
-
- [`0d603996f7f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0d603996f7f) - [ux] TSLA-609 update code block wrap button and copy button to work in dark/light theme by adding back the wrapper element behind the buttons.
|
|
481
|
+
- [#35173](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35173) [`0d603996f7f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0d603996f7f) - [ux] TSLA-609 update code block wrap button and copy button to work in dark/light theme by adding back the wrapper element behind the buttons.
|
|
393
482
|
|
|
394
483
|
## 108.6.3
|
|
395
484
|
|
|
396
485
|
### Patch Changes
|
|
397
486
|
|
|
398
|
-
- [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) - [ED-13910] Fix prosemirror types
|
|
487
|
+
- [#36241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36241) [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) - [ED-13910] Fix prosemirror types
|
|
399
488
|
|
|
400
489
|
## 108.6.2
|
|
401
490
|
|
|
@@ -407,17 +496,17 @@
|
|
|
407
496
|
|
|
408
497
|
### Patch Changes
|
|
409
498
|
|
|
410
|
-
- [`a8428f91c64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8428f91c64) - Block introduction of enzyme tests in editor code.
|
|
499
|
+
- [#36219](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36219) [`a8428f91c64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a8428f91c64) - Block introduction of enzyme tests in editor code.
|
|
411
500
|
|
|
412
501
|
## 108.6.0
|
|
413
502
|
|
|
414
503
|
### Minor Changes
|
|
415
504
|
|
|
416
|
-
- [`cb69e6847ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb69e6847ec) - [ux] The table colgroup will always set the width to the min width when the custom-table-width flag is enabled
|
|
505
|
+
- [#35767](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35767) [`cb69e6847ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb69e6847ec) - [ux] The table colgroup will always set the width to the min width when the custom-table-width flag is enabled
|
|
417
506
|
|
|
418
507
|
### Patch Changes
|
|
419
508
|
|
|
420
|
-
- [`0c22ffc68ac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c22ffc68ac) - Fix issue where attempting to add an inline comment (annotation) on inline code nodes wrapped in bidi warnings would result in the editor crashing
|
|
509
|
+
- [#36236](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36236) [`0c22ffc68ac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c22ffc68ac) - Fix issue where attempting to add an inline comment (annotation) on inline code nodes wrapped in bidi warnings would result in the editor crashing
|
|
421
510
|
- Updated dependencies
|
|
422
511
|
|
|
423
512
|
## 108.5.1
|
|
@@ -430,7 +519,7 @@
|
|
|
430
519
|
|
|
431
520
|
### Minor Changes
|
|
432
521
|
|
|
433
|
-
- [`a1b70608039`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1b70608039) - [ux] Adds editor toolbar to link datasource component
|
|
522
|
+
- [#35499](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35499) [`a1b70608039`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1b70608039) - [ux] Adds editor toolbar to link datasource component
|
|
434
523
|
|
|
435
524
|
### Patch Changes
|
|
436
525
|
|
|
@@ -440,26 +529,26 @@
|
|
|
440
529
|
|
|
441
530
|
### Patch Changes
|
|
442
531
|
|
|
443
|
-
- [`a390f5a61da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a390f5a61da) - [ux] The change here enables the datasource table to render based on the layout defined in ADF.
|
|
532
|
+
- [#35176](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35176) [`a390f5a61da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a390f5a61da) - [ux] The change here enables the datasource table to render based on the layout defined in ADF.
|
|
444
533
|
|
|
445
534
|
## 108.4.2
|
|
446
535
|
|
|
447
536
|
### Patch Changes
|
|
448
537
|
|
|
449
|
-
- [`05435759325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05435759325) - Revert ED-17462 due to scroll issue in renderer for table
|
|
538
|
+
- [#36116](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36116) [`05435759325`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05435759325) - Revert ED-17462 due to scroll issue in renderer for table
|
|
450
539
|
|
|
451
540
|
## 108.4.1
|
|
452
541
|
|
|
453
542
|
### Patch Changes
|
|
454
543
|
|
|
455
|
-
- [`9d91eb4b59b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d91eb4b59b) - MEX-2411 Remove Observed Width feature flag
|
|
544
|
+
- [#36051](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36051) [`9d91eb4b59b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d91eb4b59b) - MEX-2411 Remove Observed Width feature flag
|
|
456
545
|
- Updated dependencies
|
|
457
546
|
|
|
458
547
|
## 108.4.0
|
|
459
548
|
|
|
460
549
|
### Minor Changes
|
|
461
550
|
|
|
462
|
-
- [`5462d0142c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5462d0142c7) - [ux] Updating ORS response to include datasources and faciliating pasting JQL links turning into datasource tables
|
|
551
|
+
- [#35032](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35032) [`5462d0142c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5462d0142c7) - [ux] Updating ORS response to include datasources and faciliating pasting JQL links turning into datasource tables
|
|
463
552
|
|
|
464
553
|
### Patch Changes
|
|
465
554
|
|
|
@@ -475,32 +564,32 @@
|
|
|
475
564
|
|
|
476
565
|
### Patch Changes
|
|
477
566
|
|
|
478
|
-
- [`5e15dddfbe2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e15dddfbe2) - skip border mark if it is not a child of mediaSingle
|
|
567
|
+
- [#36011](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36011) [`5e15dddfbe2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e15dddfbe2) - skip border mark if it is not a child of mediaSingle
|
|
479
568
|
|
|
480
569
|
## 108.3.0
|
|
481
570
|
|
|
482
571
|
### Minor Changes
|
|
483
572
|
|
|
484
|
-
- [`714f16e525a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/714f16e525a) - [ux] Added blockCard integration with datasource ADFs
|
|
573
|
+
- [#34936](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34936) [`714f16e525a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/714f16e525a) - [ux] Added blockCard integration with datasource ADFs
|
|
485
574
|
|
|
486
575
|
## 108.2.6
|
|
487
576
|
|
|
488
577
|
### Patch Changes
|
|
489
578
|
|
|
490
|
-
- [`4807883cf8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4807883cf8e) - [MEX-2468] Disable Tooltip in Media Card in Hybrid Renderer
|
|
579
|
+
- [#35798](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35798) [`4807883cf8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4807883cf8e) - [MEX-2468] Disable Tooltip in Media Card in Hybrid Renderer
|
|
491
580
|
- Updated dependencies
|
|
492
581
|
|
|
493
582
|
## 108.2.5
|
|
494
583
|
|
|
495
584
|
### Patch Changes
|
|
496
585
|
|
|
497
|
-
- [`077e0fdfa41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/077e0fdfa41) - [MEX-2452] Add Inline in Viewer Carousel
|
|
586
|
+
- [#35558](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35558) [`077e0fdfa41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/077e0fdfa41) - [MEX-2452] Add Inline in Viewer Carousel
|
|
498
587
|
|
|
499
588
|
## 108.2.4
|
|
500
589
|
|
|
501
590
|
### Patch Changes
|
|
502
591
|
|
|
503
|
-
- [`d14653566eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d14653566eb) - Pass onClick to CardSSR component as prop
|
|
592
|
+
- [#35930](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35930) [`d14653566eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d14653566eb) - Pass onClick to CardSSR component as prop
|
|
504
593
|
|
|
505
594
|
## 108.2.3
|
|
506
595
|
|
|
@@ -512,36 +601,36 @@
|
|
|
512
601
|
|
|
513
602
|
### Patch Changes
|
|
514
603
|
|
|
515
|
-
- [`fef7f2e3676`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fef7f2e3676) - [ux] ED-17462 fix table column shriking in renderer
|
|
604
|
+
- [#34956](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34956) [`fef7f2e3676`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fef7f2e3676) - [ux] ED-17462 fix table column shriking in renderer
|
|
516
605
|
|
|
517
606
|
## 108.2.1
|
|
518
607
|
|
|
519
608
|
### Patch Changes
|
|
520
609
|
|
|
521
|
-
- [`1b8397cca2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b8397cca2c) - [ux] Stop event from bubbling when user clicks on either the copy clipboard button or wrap button for code blocks in renderer view
|
|
610
|
+
- [#35546](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35546) [`1b8397cca2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b8397cca2c) - [ux] Stop event from bubbling when user clicks on either the copy clipboard button or wrap button for code blocks in renderer view
|
|
522
611
|
|
|
523
612
|
## 108.2.0
|
|
524
613
|
|
|
525
614
|
### Minor Changes
|
|
526
615
|
|
|
527
|
-
- [`149b6c14e3e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/149b6c14e3e) - [ux] [ED-17634] Use the table width attribute in the renderer when platform.editor.custom-table-width FF is true
|
|
616
|
+
- [#35459](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35459) [`149b6c14e3e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/149b6c14e3e) - [ux] [ED-17634] Use the table width attribute in the renderer when platform.editor.custom-table-width FF is true
|
|
528
617
|
|
|
529
618
|
### Patch Changes
|
|
530
619
|
|
|
531
|
-
- [`406f89ad910`](https://bitbucket.org/atlassian/atlassian-frontend/commits/406f89ad910) - [ux] fix image border missing in renderer when image is linked and also double seperators issue
|
|
620
|
+
- [#35514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35514) [`406f89ad910`](https://bitbucket.org/atlassian/atlassian-frontend/commits/406f89ad910) - [ux] fix image border missing in renderer when image is linked and also double seperators issue
|
|
532
621
|
|
|
533
622
|
## 108.1.8
|
|
534
623
|
|
|
535
624
|
### Patch Changes
|
|
536
625
|
|
|
537
|
-
- [`f22911fb9be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f22911fb9be) - ENGHEALTH-2667: Adjust table cell color logic to enable static analysis of token usages and follow eslint rules
|
|
626
|
+
- [#34036](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34036) [`f22911fb9be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f22911fb9be) - ENGHEALTH-2667: Adjust table cell color logic to enable static analysis of token usages and follow eslint rules
|
|
538
627
|
- Updated dependencies
|
|
539
628
|
|
|
540
629
|
## 108.1.7
|
|
541
630
|
|
|
542
631
|
### Patch Changes
|
|
543
632
|
|
|
544
|
-
- [`07cc766e1ac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07cc766e1ac) - Remove conversion of width from string to number
|
|
633
|
+
- [#34954](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34954) [`07cc766e1ac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/07cc766e1ac) - Remove conversion of width from string to number
|
|
545
634
|
- Updated dependencies
|
|
546
635
|
|
|
547
636
|
## 108.1.6
|
|
@@ -560,14 +649,14 @@
|
|
|
560
649
|
|
|
561
650
|
### Patch Changes
|
|
562
651
|
|
|
563
|
-
- [`bb442ced942`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb442ced942) - Remove newCardExperience feature flag
|
|
652
|
+
- [#34887](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34887) [`bb442ced942`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bb442ced942) - Remove newCardExperience feature flag
|
|
564
653
|
- Updated dependencies
|
|
565
654
|
|
|
566
655
|
## 108.1.3
|
|
567
656
|
|
|
568
657
|
### Patch Changes
|
|
569
658
|
|
|
570
|
-
- [`077e086c53f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/077e086c53f) - [ux] ED-17971 Changes the color token used for table borders and background of table controls and numbered column.
|
|
659
|
+
- [#34644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34644) [`077e086c53f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/077e086c53f) - [ux] ED-17971 Changes the color token used for table borders and background of table controls and numbered column.
|
|
571
660
|
- [`65ff31a2ad4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65ff31a2ad4) - use onError prop on smart card to handle errors
|
|
572
661
|
- Updated dependencies
|
|
573
662
|
|
|
@@ -575,21 +664,21 @@
|
|
|
575
664
|
|
|
576
665
|
### Patch Changes
|
|
577
666
|
|
|
578
|
-
- [`f0b51f8f06c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0b51f8f06c) - Fix copy paste file state for Inline Files
|
|
667
|
+
- [#34192](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34192) [`f0b51f8f06c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0b51f8f06c) - Fix copy paste file state for Inline Files
|
|
579
668
|
- Updated dependencies
|
|
580
669
|
|
|
581
670
|
## 108.1.1
|
|
582
671
|
|
|
583
672
|
### Patch Changes
|
|
584
673
|
|
|
585
|
-
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
674
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
586
675
|
- Updated dependencies
|
|
587
676
|
|
|
588
677
|
## 108.1.0
|
|
589
678
|
|
|
590
679
|
### Minor Changes
|
|
591
680
|
|
|
592
|
-
- [`6bc52e5a406`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bc52e5a406) - [ED-17687] Capture errors caught in error boundaries in Sentry
|
|
681
|
+
- [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771) [`6bc52e5a406`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bc52e5a406) - [ED-17687] Capture errors caught in error boundaries in Sentry
|
|
593
682
|
- [`7faffcf8450`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7faffcf8450) - Add location attribute to smard link related componentes in renderer (link, inlinecard, embedcard, blockcard)
|
|
594
683
|
|
|
595
684
|
### Patch Changes
|
|
@@ -604,14 +693,14 @@
|
|
|
604
693
|
|
|
605
694
|
### Patch Changes
|
|
606
695
|
|
|
607
|
-
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
696
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
608
697
|
- Updated dependencies
|
|
609
698
|
|
|
610
699
|
## 108.0.0
|
|
611
700
|
|
|
612
701
|
### Minor Changes
|
|
613
702
|
|
|
614
|
-
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
703
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
615
704
|
|
|
616
705
|
### Patch Changes
|
|
617
706
|
|
|
@@ -621,7 +710,7 @@
|
|
|
621
710
|
|
|
622
711
|
### Patch Changes
|
|
623
712
|
|
|
624
|
-
- [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed issues"
|
|
713
|
+
- [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004) [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed issues"
|
|
625
714
|
- [`be610dca836`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be610dca836) - [ux] replace deprecated placeholder theme with tokens
|
|
626
715
|
- Updated dependencies
|
|
627
716
|
|
|
@@ -629,7 +718,7 @@
|
|
|
629
718
|
|
|
630
719
|
### Patch Changes
|
|
631
720
|
|
|
632
|
-
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
721
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
|
|
633
722
|
- [`11fd2f313a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/11fd2f313a3) - ED-16760 Fixed sticky header transparency issue in renderer when themeing is on.
|
|
634
723
|
- Updated dependencies
|
|
635
724
|
|
|
@@ -637,20 +726,20 @@
|
|
|
637
726
|
|
|
638
727
|
### Patch Changes
|
|
639
728
|
|
|
640
|
-
- [`bcdf4f2913f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bcdf4f2913f) - add missing border mark data to the media analytic context
|
|
729
|
+
- [#32147](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32147) [`bcdf4f2913f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bcdf4f2913f) - add missing border mark data to the media analytic context
|
|
641
730
|
|
|
642
731
|
## 107.3.1
|
|
643
732
|
|
|
644
733
|
### Patch Changes
|
|
645
734
|
|
|
646
|
-
- [`9f9b4b1cf60`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9b4b1cf60) - [ux] [HOT-103036] Fix table width styling when broken out with fragment mark
|
|
735
|
+
- [#31852](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31852) [`9f9b4b1cf60`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9b4b1cf60) - [ux] [HOT-103036] Fix table width styling when broken out with fragment mark
|
|
647
736
|
- Updated dependencies
|
|
648
737
|
|
|
649
738
|
## 107.3.0
|
|
650
739
|
|
|
651
740
|
### Minor Changes
|
|
652
741
|
|
|
653
|
-
- [`4f75910f899`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f75910f899) - [ux] Add code wrapping button to code block TSLA-266
|
|
742
|
+
- [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`4f75910f899`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f75910f899) - [ux] Add code wrapping button to code block TSLA-266
|
|
654
743
|
- [`bf04c417bfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf04c417bfd) - Add "border" mark to stage0 ADF schema
|
|
655
744
|
|
|
656
745
|
### Patch Changes
|
|
@@ -662,7 +751,7 @@
|
|
|
662
751
|
|
|
663
752
|
### Minor Changes
|
|
664
753
|
|
|
665
|
-
- [`0078ddc7e2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0078ddc7e2e) - New smartLinks prop to allow renderer and editor to determine whether smart link should show actions that can change the link resource.
|
|
754
|
+
- [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299) [`0078ddc7e2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0078ddc7e2e) - New smartLinks prop to allow renderer and editor to determine whether smart link should show actions that can change the link resource.
|
|
666
755
|
|
|
667
756
|
### Patch Changes
|
|
668
757
|
|
|
@@ -673,7 +762,7 @@
|
|
|
673
762
|
|
|
674
763
|
### Minor Changes
|
|
675
764
|
|
|
676
|
-
- [`9a25538e0ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a25538e0ef) - [ux] ED-16723 Custom panel background color is tokensied. More details at https://hello.atlassian.net/wiki/spaces/DST/pages/2382075153/Draft+Custom+panel+background+color+is+tokenised
|
|
765
|
+
- [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248) [`9a25538e0ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a25538e0ef) - [ux] ED-16723 Custom panel background color is tokensied. More details at https://hello.atlassian.net/wiki/spaces/DST/pages/2382075153/Draft+Custom+panel+background+color+is+tokenised
|
|
677
766
|
- [`9d84c21338b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d84c21338b) - Renderer link mark updated by LinkUrl from the smart-card package with a built-in link safety validation
|
|
678
767
|
|
|
679
768
|
### Patch Changes
|
|
@@ -691,13 +780,13 @@
|
|
|
691
780
|
|
|
692
781
|
### Patch Changes
|
|
693
782
|
|
|
694
|
-
- [`8c04b73312e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c04b73312e) - ED-16758 Added data-cell-background attribute to store table cell background color information.
|
|
783
|
+
- [#30732](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30732) [`8c04b73312e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c04b73312e) - ED-16758 Added data-cell-background attribute to store table cell background color information.
|
|
695
784
|
|
|
696
785
|
## 106.0.1
|
|
697
786
|
|
|
698
787
|
### Patch Changes
|
|
699
788
|
|
|
700
|
-
- [`1bd38dae4ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bd38dae4ab) - [ux] add back table column max scaling percent logic
|
|
789
|
+
- [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470) [`1bd38dae4ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bd38dae4ab) - [ux] add back table column max scaling percent logic
|
|
701
790
|
- [`336f7dab111`](https://bitbucket.org/atlassian/atlassian-frontend/commits/336f7dab111) - ED-16200 Updating CRASHED event action to map to new event "unhandledErrorCaughtV2 and moving its errorStack attribute to nonPrivacySafeAttributes"
|
|
702
791
|
- Updated dependencies
|
|
703
792
|
|
|
@@ -717,13 +806,13 @@
|
|
|
717
806
|
|
|
718
807
|
### Patch Changes
|
|
719
808
|
|
|
720
|
-
- [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
|
|
809
|
+
- [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227) [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
|
|
721
810
|
|
|
722
811
|
## 105.1.0
|
|
723
812
|
|
|
724
813
|
### Minor Changes
|
|
725
814
|
|
|
726
|
-
- [`a40ac7f5614`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a40ac7f5614) - New Smartlinks prop to allow renderer to determine whether smart link component inside AK renderer should show auth tooltip on unauthenticated inline links
|
|
815
|
+
- [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932) [`a40ac7f5614`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a40ac7f5614) - New Smartlinks prop to allow renderer to determine whether smart link component inside AK renderer should show auth tooltip on unauthenticated inline links
|
|
727
816
|
|
|
728
817
|
### Patch Changes
|
|
729
818
|
|
|
@@ -734,7 +823,7 @@
|
|
|
734
823
|
|
|
735
824
|
### Patch Changes
|
|
736
825
|
|
|
737
|
-
- [`2ff1c66a6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ff1c66a6ab) - [ux] ED-16490 fixed bug so big margin will not occur before a Decision node in Renderer on iOS
|
|
826
|
+
- [#29169](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29169) [`2ff1c66a6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ff1c66a6ab) - [ux] ED-16490 fixed bug so big margin will not occur before a Decision node in Renderer on iOS
|
|
738
827
|
|
|
739
828
|
## 105.0.3
|
|
740
829
|
|
|
@@ -746,19 +835,19 @@
|
|
|
746
835
|
|
|
747
836
|
### Patch Changes
|
|
748
837
|
|
|
749
|
-
- [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
|
|
838
|
+
- [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324) [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
|
|
750
839
|
|
|
751
840
|
## 105.0.1
|
|
752
841
|
|
|
753
842
|
### Patch Changes
|
|
754
843
|
|
|
755
|
-
- [`d61e8688afd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d61e8688afd) - DSP-8078: Fixes bug where windowed codeblock rendered incorrectly
|
|
844
|
+
- [#28268](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28268) [`d61e8688afd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d61e8688afd) - DSP-8078: Fixes bug where windowed codeblock rendered incorrectly
|
|
756
845
|
|
|
757
846
|
## 105.0.0
|
|
758
847
|
|
|
759
848
|
### Major Changes
|
|
760
849
|
|
|
761
|
-
- [`224a2482244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/224a2482244) - [ED-16166] Changes the renderer prop document type from any to DocNode
|
|
850
|
+
- [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`224a2482244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/224a2482244) - [ED-16166] Changes the renderer prop document type from any to DocNode
|
|
762
851
|
|
|
763
852
|
BREAKING for `@atlaskit/renderer`: Previously the `document` prop for the renderer component had the type of `any`. This has now been changed to `DocNode` which comes from `@atlaskit/adf-schema`.
|
|
764
853
|
|
|
@@ -815,7 +904,7 @@
|
|
|
815
904
|
|
|
816
905
|
### Major Changes
|
|
817
906
|
|
|
818
|
-
- [`2df5ab17c10`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2df5ab17c10) - DSP-6459: Adds a background to code blocks in the editor to remove transparency. E.g. prevents table cell background colors from affecting code blocks. Also modifies code blocks in table headers to have a border instead of a different color when design tokens are enabled.
|
|
907
|
+
- [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`2df5ab17c10`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2df5ab17c10) - DSP-6459: Adds a background to code blocks in the editor to remove transparency. E.g. prevents table cell background colors from affecting code blocks. Also modifies code blocks in table headers to have a border instead of a different color when design tokens are enabled.
|
|
819
908
|
|
|
820
909
|
### Patch Changes
|
|
821
910
|
|
|
@@ -835,7 +924,7 @@
|
|
|
835
924
|
|
|
836
925
|
### Patch Changes
|
|
837
926
|
|
|
838
|
-
- [`324e88d23ad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/324e88d23ad) - Exposes fragmentLocalId as part of ExtensionRenderer.
|
|
927
|
+
- [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`324e88d23ad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/324e88d23ad) - Exposes fragmentLocalId as part of ExtensionRenderer.
|
|
839
928
|
- [`3f7900cbf37`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f7900cbf37) - [ux] ED-14993 added better support for codeblocks inside lists and gap cursor selection inside lists:
|
|
840
929
|
|
|
841
930
|
- made list markers visible in safari (desktop and mobile) when list contains codeblocks;
|
|
@@ -868,14 +957,14 @@
|
|
|
868
957
|
|
|
869
958
|
### Patch Changes
|
|
870
959
|
|
|
871
|
-
- [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
960
|
+
- [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
|
|
872
961
|
- Updated dependencies
|
|
873
962
|
|
|
874
963
|
## 101.1.0
|
|
875
964
|
|
|
876
965
|
### Minor Changes
|
|
877
966
|
|
|
878
|
-
- [`8308bf30800`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8308bf30800) - [ux] ED-14862: Fix triple click selection in table cells in Renderer so that copy paste doesnt always copy a whole table cell with selected content
|
|
967
|
+
- [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`8308bf30800`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8308bf30800) - [ux] ED-14862: Fix triple click selection in table cells in Renderer so that copy paste doesnt always copy a whole table cell with selected content
|
|
879
968
|
- [`d7c4506066d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7c4506066d) - [ux][ed-15295] improve code block copy button label to better indicate to users what will end up in the clipboard when used.
|
|
880
969
|
|
|
881
970
|
### Patch Changes
|
|
@@ -895,20 +984,20 @@
|
|
|
895
984
|
|
|
896
985
|
### Patch Changes
|
|
897
986
|
|
|
898
|
-
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
987
|
+
- [#24492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24492) [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
899
988
|
- Updated dependencies
|
|
900
989
|
|
|
901
990
|
## 101.0.1
|
|
902
991
|
|
|
903
992
|
### Patch Changes
|
|
904
993
|
|
|
905
|
-
- [`844e560b02f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/844e560b02f) - ED-15453 Fixed incorrect import in renderer
|
|
994
|
+
- [#24287](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24287) [`844e560b02f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/844e560b02f) - ED-15453 Fixed incorrect import in renderer
|
|
906
995
|
|
|
907
996
|
## 101.0.0
|
|
908
997
|
|
|
909
998
|
### Major Changes
|
|
910
999
|
|
|
911
|
-
- [`83730e9b1fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83730e9b1fa) - replace @atlaskit/smart-card peer dependency by @atlaskit/link-provider
|
|
1000
|
+
- [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381) [`83730e9b1fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83730e9b1fa) - replace @atlaskit/smart-card peer dependency by @atlaskit/link-provider
|
|
912
1001
|
- [`080e2269f18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/080e2269f18) - ED-14838: Completely remove allowDynamicTextSizing prop references and deprecation warnings from editor and renderer
|
|
913
1002
|
|
|
914
1003
|
### Patch Changes
|
|
@@ -936,7 +1025,7 @@
|
|
|
936
1025
|
|
|
937
1026
|
### Minor Changes
|
|
938
1027
|
|
|
939
|
-
- [`ab4f37635d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab4f37635d9) - Modified the renderer package to include a prop 'nodeComponents' that will override the nodes the renderer provides and allow us to render our own custom nodes
|
|
1028
|
+
- [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642) [`ab4f37635d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ab4f37635d9) - Modified the renderer package to include a prop 'nodeComponents' that will override the nodes the renderer provides and allow us to render our own custom nodes
|
|
940
1029
|
- [`2d979ce9877`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d979ce9877) - [ux] ED-14945: Add windowed codeblock support in renderer (This feature sits behind a flag in the featureFlags prop 'allow-windowed-code-block')
|
|
941
1030
|
|
|
942
1031
|
### Patch Changes
|
|
@@ -964,13 +1053,13 @@
|
|
|
964
1053
|
|
|
965
1054
|
### Patch Changes
|
|
966
1055
|
|
|
967
|
-
- [`d5ebbd97b8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5ebbd97b8c) - ED-15264 add styled-components dependency
|
|
1056
|
+
- [#23097](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23097) [`d5ebbd97b8c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5ebbd97b8c) - ED-15264 add styled-components dependency
|
|
968
1057
|
|
|
969
1058
|
## 96.0.1
|
|
970
1059
|
|
|
971
1060
|
### Patch Changes
|
|
972
1061
|
|
|
973
|
-
- [`9dc961ea69e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dc961ea69e) - ED-14610: reduce code bundled with table sticky headers
|
|
1062
|
+
- [#22029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22029) [`9dc961ea69e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dc961ea69e) - ED-14610: reduce code bundled with table sticky headers
|
|
974
1063
|
- [`d6b54a2fd48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6b54a2fd48) - [ux] Fix custom panel dark mode colour regression
|
|
975
1064
|
- Updated dependencies
|
|
976
1065
|
|
|
@@ -978,7 +1067,7 @@
|
|
|
978
1067
|
|
|
979
1068
|
### Major Changes
|
|
980
1069
|
|
|
981
|
-
- [`d8b3bc73330`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8b3bc73330) - [ED-14507] Deprecate the allowDynamicTextSizing editor prop and remove all code related to it. This feature has been unused since 2020.
|
|
1070
|
+
- [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`d8b3bc73330`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8b3bc73330) - [ED-14507] Deprecate the allowDynamicTextSizing editor prop and remove all code related to it. This feature has been unused since 2020.
|
|
982
1071
|
|
|
983
1072
|
### Minor Changes
|
|
984
1073
|
|
|
@@ -1009,7 +1098,7 @@
|
|
|
1009
1098
|
|
|
1010
1099
|
### Minor Changes
|
|
1011
1100
|
|
|
1012
|
-
- [`bd24b9d71d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd24b9d71d2) - [ux] Instrumented `@atlaskit/renderer` with the new theming package, `@atlaskit/tokens`.
|
|
1101
|
+
- [#20721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20721) [`bd24b9d71d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd24b9d71d2) - [ux] Instrumented `@atlaskit/renderer` with the new theming package, `@atlaskit/tokens`.
|
|
1013
1102
|
|
|
1014
1103
|
New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
|
|
1015
1104
|
These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
|
|
@@ -1032,27 +1121,27 @@
|
|
|
1032
1121
|
|
|
1033
1122
|
### Patch Changes
|
|
1034
1123
|
|
|
1035
|
-
- [`42d1107698a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42d1107698a) - [ux] ED-14913 Fix expand text in renderer dark mode
|
|
1124
|
+
- [#21095](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21095) [`42d1107698a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/42d1107698a) - [ux] ED-14913 Fix expand text in renderer dark mode
|
|
1036
1125
|
|
|
1037
1126
|
## 93.0.3
|
|
1038
1127
|
|
|
1039
1128
|
### Patch Changes
|
|
1040
1129
|
|
|
1041
|
-
- [`dd0d549d232`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd0d549d232) - [ux] ED-14943 Fix dark theme colors for annotations (inline comments) in renderer
|
|
1130
|
+
- [#21063](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21063) [`dd0d549d232`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd0d549d232) - [ux] ED-14943 Fix dark theme colors for annotations (inline comments) in renderer
|
|
1042
1131
|
- Updated dependencies
|
|
1043
1132
|
|
|
1044
1133
|
## 93.0.2
|
|
1045
1134
|
|
|
1046
1135
|
### Patch Changes
|
|
1047
1136
|
|
|
1048
|
-
- [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
1137
|
+
- [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
|
|
1049
1138
|
- Updated dependencies
|
|
1050
1139
|
|
|
1051
1140
|
## 93.0.1
|
|
1052
1141
|
|
|
1053
1142
|
### Patch Changes
|
|
1054
1143
|
|
|
1055
|
-
- [`0c64f6136e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c64f6136e6) - ED-14268 migrate editor-core to use emotion
|
|
1144
|
+
- [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033) [`0c64f6136e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0c64f6136e6) - ED-14268 migrate editor-core to use emotion
|
|
1056
1145
|
- [`b29ce16dad8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b29ce16dad8) - [ED-14606] Move bitbucket schema, confluence schema, jira schema, and default schema from @atlaskit/adf-schema to their own entry points. These new entry points are as follows
|
|
1057
1146
|
|
|
1058
1147
|
@atlaskit/adf-schema/schema-bitbucket for:
|
|
@@ -1094,7 +1183,7 @@
|
|
|
1094
1183
|
|
|
1095
1184
|
### Major Changes
|
|
1096
1185
|
|
|
1097
|
-
- [`2ec99bf6f9f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ec99bf6f9f) - [ux] ED-14651: removed react-intl v2.
|
|
1186
|
+
- [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`2ec99bf6f9f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ec99bf6f9f) - [ux] ED-14651: removed react-intl v2.
|
|
1098
1187
|
|
|
1099
1188
|
### Minor Changes
|
|
1100
1189
|
|
|
@@ -1121,13 +1210,13 @@
|
|
|
1121
1210
|
|
|
1122
1211
|
### Patch Changes
|
|
1123
1212
|
|
|
1124
|
-
- [`9671dfa12b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9671dfa12b1) - Revert [MEX-1276] fix vertical scroll for firefox when media link is wrapped
|
|
1213
|
+
- [#19569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19569) [`9671dfa12b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9671dfa12b1) - Revert [MEX-1276] fix vertical scroll for firefox when media link is wrapped
|
|
1125
1214
|
|
|
1126
1215
|
## 92.0.0
|
|
1127
1216
|
|
|
1128
1217
|
### Minor Changes
|
|
1129
1218
|
|
|
1130
|
-
- [`9712e78abb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9712e78abb0) - ED-14255 moved some usages of editor-shared-styles to emotion
|
|
1219
|
+
- [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`9712e78abb0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9712e78abb0) - ED-14255 moved some usages of editor-shared-styles to emotion
|
|
1131
1220
|
|
|
1132
1221
|
### Patch Changes
|
|
1133
1222
|
|
|
@@ -1173,7 +1262,7 @@
|
|
|
1173
1262
|
|
|
1174
1263
|
### Major Changes
|
|
1175
1264
|
|
|
1176
|
-
- [`304351e4b1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/304351e4b1e) - CETI-241 - Added additional panel ADF attributes (panelIconId, panelIconText) to uniquely identify custom panel emojis. The change has been categorised as major since it is a change to the full-schema ADF. However, the custom panel feature is behind a feature flag, has not yet been released to production, and is only currently planned for release to Confluence. See ADF change #61 for further details.
|
|
1265
|
+
- [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526) [`304351e4b1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/304351e4b1e) - CETI-241 - Added additional panel ADF attributes (panelIconId, panelIconText) to uniquely identify custom panel emojis. The change has been categorised as major since it is a change to the full-schema ADF. However, the custom panel feature is behind a feature flag, has not yet been released to production, and is only currently planned for release to Confluence. See ADF change #61 for further details.
|
|
1177
1266
|
- [`9d1e0356622`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d1e0356622) - [ux] CETI-166 Increase the standard panel icons size to make it consistent with the emojis in the panel content area
|
|
1178
1267
|
|
|
1179
1268
|
### Minor Changes
|
|
@@ -1197,7 +1286,7 @@
|
|
|
1197
1286
|
>
|
|
1198
1287
|
```
|
|
1199
1288
|
|
|
1200
|
-
- [`9c9557fcdd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c9557fcdd8) - AK-279 Moved copy button outside of heading, that made heading accessible
|
|
1289
|
+
- [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`9c9557fcdd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c9557fcdd8) - AK-279 Moved copy button outside of heading, that made heading accessible
|
|
1201
1290
|
- [`bd283364aad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd283364aad) - Fixed a bug for SSR where some media components would be rendered in the incorrect size resulting in jumping components during hydration.
|
|
1202
1291
|
|
|
1203
1292
|
### Patch Changes
|
|
@@ -1256,13 +1345,13 @@
|
|
|
1256
1345
|
|
|
1257
1346
|
### Patch Changes
|
|
1258
1347
|
|
|
1259
|
-
- [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
1348
|
+
- [#17475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/17475) [`c55c736ecea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c55c736ecea) - Patch VULN AFP-3486 AFP-3487 AFP-3488 AFP-3489
|
|
1260
1349
|
|
|
1261
1350
|
## 84.1.0
|
|
1262
1351
|
|
|
1263
1352
|
### Minor Changes
|
|
1264
1353
|
|
|
1265
|
-
- [`b9cd2373064`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9cd2373064) - [ED-14106] Reset custom color when the node is inside a link
|
|
1354
|
+
- [#16928](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16928) [`b9cd2373064`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9cd2373064) - [ED-14106] Reset custom color when the node is inside a link
|
|
1266
1355
|
|
|
1267
1356
|
### Patch Changes
|
|
1268
1357
|
|
|
@@ -1273,7 +1362,7 @@
|
|
|
1273
1362
|
|
|
1274
1363
|
### Major Changes
|
|
1275
1364
|
|
|
1276
|
-
- [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
|
|
1365
|
+
- [#14810](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14810) [`47f58da5946`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f58da5946) - ED-13322, ED-13324, ED-13326, ED-13323, ED-13204: Upgrade and support react-intl@^5.18.1 including breaking API changes, types and tests in atlassian-frontend packages
|
|
1277
1366
|
|
|
1278
1367
|
What changed: Upgraded our react-intl support from ^2.6.0 to ^5.18.1. This means editor packages now rely on consumers installing ^5.18.1, otherwise editor usage of react-intl will mismatch with actual installed react-intl APIs.
|
|
1279
1368
|
Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
|
|
@@ -1319,7 +1408,7 @@
|
|
|
1319
1408
|
|
|
1320
1409
|
### Major Changes
|
|
1321
1410
|
|
|
1322
|
-
- [`0cf5fa82add`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0cf5fa82add) - CETI-20 Rename custom panel FF from `UNSAFE_allowCustomPanel` to `allowCustomPanel`
|
|
1411
|
+
- [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`0cf5fa82add`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0cf5fa82add) - CETI-20 Rename custom panel FF from `UNSAFE_allowCustomPanel` to `allowCustomPanel`
|
|
1323
1412
|
|
|
1324
1413
|
### Minor Changes
|
|
1325
1414
|
|
|
@@ -1353,7 +1442,7 @@
|
|
|
1353
1442
|
|
|
1354
1443
|
### Minor Changes
|
|
1355
1444
|
|
|
1356
|
-
- [`db3477abb18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db3477abb18) - [ux] ED-13938 disabled code-bidi warning tooltip for mobile, reworked TextWrapper to fix bidi mitigation, and fixed issue where bidi warnings were not presented when renderer used with an annotation provider with draftMode set to true
|
|
1445
|
+
- [#16168](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16168) [`db3477abb18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db3477abb18) - [ux] ED-13938 disabled code-bidi warning tooltip for mobile, reworked TextWrapper to fix bidi mitigation, and fixed issue where bidi warnings were not presented when renderer used with an annotation provider with draftMode set to true
|
|
1357
1446
|
|
|
1358
1447
|
### Patch Changes
|
|
1359
1448
|
|
|
@@ -1363,7 +1452,7 @@
|
|
|
1363
1452
|
|
|
1364
1453
|
### Minor Changes
|
|
1365
1454
|
|
|
1366
|
-
- [`c80c71b537d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c80c71b537d) - [ux] ED-13860 add bidi warning decorations to code components
|
|
1455
|
+
- [#16006](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16006) [`c80c71b537d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c80c71b537d) - [ux] ED-13860 add bidi warning decorations to code components
|
|
1367
1456
|
|
|
1368
1457
|
### Patch Changes
|
|
1369
1458
|
|
|
@@ -1373,7 +1462,7 @@
|
|
|
1373
1462
|
|
|
1374
1463
|
### Major Changes
|
|
1375
1464
|
|
|
1376
|
-
- [`3c5548e50da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c5548e50da) - [ux] Introducing new Media Inline component to renderer
|
|
1465
|
+
- [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777) [`3c5548e50da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c5548e50da) - [ux] Introducing new Media Inline component to renderer
|
|
1377
1466
|
|
|
1378
1467
|
### Minor Changes
|
|
1379
1468
|
|
|
@@ -1391,13 +1480,13 @@
|
|
|
1391
1480
|
|
|
1392
1481
|
### Patch Changes
|
|
1393
1482
|
|
|
1394
|
-
- [`b85e7ce12cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b85e7ce12cd) - Internal upgrade of memoize-one to 6.0.0
|
|
1483
|
+
- [#15694](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15694) [`b85e7ce12cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b85e7ce12cd) - Internal upgrade of memoize-one to 6.0.0
|
|
1395
1484
|
|
|
1396
1485
|
## 81.1.0
|
|
1397
1486
|
|
|
1398
1487
|
### Minor Changes
|
|
1399
1488
|
|
|
1400
|
-
- [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - CETI-72 Web: Copy from renderer loses custom panel attributes
|
|
1489
|
+
- [#14319](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14319) [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - CETI-72 Web: Copy from renderer loses custom panel attributes
|
|
1401
1490
|
- [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - AK-279 Moved copy button outside of heading, that made heading accessible
|
|
1402
1491
|
- [`6840e64d105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6840e64d105) - CETI-124: Revert panel content wrapper from span to div
|
|
1403
1492
|
|
|
@@ -1409,7 +1498,7 @@
|
|
|
1409
1498
|
|
|
1410
1499
|
### Minor Changes
|
|
1411
1500
|
|
|
1412
|
-
- [`511f07f7f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/511f07f7f7b) - allow enabling download for media card via enableDownloadButton feature prop
|
|
1501
|
+
- [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864) [`511f07f7f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/511f07f7f7b) - allow enabling download for media card via enableDownloadButton feature prop
|
|
1413
1502
|
|
|
1414
1503
|
### Patch Changes
|
|
1415
1504
|
|
|
@@ -1426,7 +1515,7 @@
|
|
|
1426
1515
|
|
|
1427
1516
|
### Minor Changes
|
|
1428
1517
|
|
|
1429
|
-
- [`ea1cb28fb03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea1cb28fb03) - CETI-3 User is able to change emoji and background color when selected
|
|
1518
|
+
- [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`ea1cb28fb03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea1cb28fb03) - CETI-3 User is able to change emoji and background color when selected
|
|
1430
1519
|
- [`86aeb07cae3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/86aeb07cae3) - EDM-2264: allow embed resize events from all domains
|
|
1431
1520
|
|
|
1432
1521
|
**Note:**
|
|
@@ -1441,13 +1530,13 @@
|
|
|
1441
1530
|
|
|
1442
1531
|
### Patch Changes
|
|
1443
1532
|
|
|
1444
|
-
- [`21618e887d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21618e887d2) - Updates puppeteer to v10.
|
|
1533
|
+
- [#12604](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12604) [`21618e887d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21618e887d2) - Updates puppeteer to v10.
|
|
1445
1534
|
|
|
1446
1535
|
## 79.0.0
|
|
1447
1536
|
|
|
1448
1537
|
### Minor Changes
|
|
1449
1538
|
|
|
1450
|
-
- [`450a8582760`](https://bitbucket.org/atlassian/atlassian-frontend/commits/450a8582760) - Added editor re-render analytics event.
|
|
1539
|
+
- [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837) [`450a8582760`](https://bitbucket.org/atlassian/atlassian-frontend/commits/450a8582760) - Added editor re-render analytics event.
|
|
1451
1540
|
- [`797ffbdcd7f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/797ffbdcd7f) - Update focus style for expand button, change aria-label to aria-labelled by
|
|
1452
1541
|
|
|
1453
1542
|
### Patch Changes
|
|
@@ -1459,7 +1548,7 @@
|
|
|
1459
1548
|
|
|
1460
1549
|
### Minor Changes
|
|
1461
1550
|
|
|
1462
|
-
- [`f3ccd83b464`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3ccd83b464) - [ux] AK-271 - Implement a separate focusable button for sorting table columns
|
|
1551
|
+
- [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328) [`f3ccd83b464`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3ccd83b464) - [ux] AK-271 - Implement a separate focusable button for sorting table columns
|
|
1463
1552
|
- [`1075019cefe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1075019cefe) - Add NodeProps to Caption
|
|
1464
1553
|
|
|
1465
1554
|
### Patch Changes
|
|
@@ -1471,7 +1560,7 @@
|
|
|
1471
1560
|
|
|
1472
1561
|
### Minor Changes
|
|
1473
1562
|
|
|
1474
|
-
- [`9fef23ee77c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fef23ee77c) - ED-12477 Add unsupported node capability to Media Group
|
|
1563
|
+
- [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649) [`9fef23ee77c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fef23ee77c) - ED-12477 Add unsupported node capability to Media Group
|
|
1475
1564
|
- [`b847a71298d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b847a71298d) - ED-8245 added optional ability to render placeholder text in renderer
|
|
1476
1565
|
- [`9088388ab19`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9088388ab19) - [ux] ED-13080 revert implement a separate button for sorting table columns
|
|
1477
1566
|
|
|
@@ -1490,7 +1579,7 @@
|
|
|
1490
1579
|
|
|
1491
1580
|
### Minor Changes
|
|
1492
1581
|
|
|
1493
|
-
- [`084abc13201`](https://bitbucket.org/atlassian/atlassian-frontend/commits/084abc13201) - ED-12265 Add unsupport content support to media single
|
|
1582
|
+
- [#11113](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11113) [`084abc13201`](https://bitbucket.org/atlassian/atlassian-frontend/commits/084abc13201) - ED-12265 Add unsupport content support to media single
|
|
1494
1583
|
ED-12265 Remove `caption` from default schema - Renderer
|
|
1495
1584
|
|
|
1496
1585
|
### Patch Changes
|
|
@@ -1504,7 +1593,7 @@
|
|
|
1504
1593
|
|
|
1505
1594
|
### Minor Changes
|
|
1506
1595
|
|
|
1507
|
-
- [`50deb33bb0d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50deb33bb0d) - Make code block scale to device font size in the Hybrid Renderer.
|
|
1596
|
+
- [#10569](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10569) [`50deb33bb0d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50deb33bb0d) - Make code block scale to device font size in the Hybrid Renderer.
|
|
1508
1597
|
- [`4c05694bca8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c05694bca8) - Changed componentName to renderer in AnalyticsContext.
|
|
1509
1598
|
|
|
1510
1599
|
### Patch Changes
|
|
@@ -1515,7 +1604,7 @@
|
|
|
1515
1604
|
|
|
1516
1605
|
### Minor Changes
|
|
1517
1606
|
|
|
1518
|
-
- [`eb2ccccfa14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb2ccccfa14) - ED-12514: Add sampling rate controls to unsupported content levels tracking
|
|
1607
|
+
- [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230) [`eb2ccccfa14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb2ccccfa14) - ED-12514: Add sampling rate controls to unsupported content levels tracking
|
|
1519
1608
|
|
|
1520
1609
|
### Patch Changes
|
|
1521
1610
|
|
|
@@ -1528,14 +1617,14 @@
|
|
|
1528
1617
|
|
|
1529
1618
|
### Patch Changes
|
|
1530
1619
|
|
|
1531
|
-
- [`c2c0160f566`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2c0160f566) - Bump editor-shared-styles to pick up relativeFontSizeToBase16
|
|
1620
|
+
- [#10316](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10316) [`c2c0160f566`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2c0160f566) - Bump editor-shared-styles to pick up relativeFontSizeToBase16
|
|
1532
1621
|
- Updated dependencies
|
|
1533
1622
|
|
|
1534
1623
|
## 76.1.0
|
|
1535
1624
|
|
|
1536
1625
|
### Minor Changes
|
|
1537
1626
|
|
|
1538
|
-
- [`23de387a004`](https://bitbucket.org/atlassian/atlassian-frontend/commits/23de387a004) - ED-12183 - add top margin to extension wrapper
|
|
1627
|
+
- [#9756](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9756) [`23de387a004`](https://bitbucket.org/atlassian/atlassian-frontend/commits/23de387a004) - ED-12183 - add top margin to extension wrapper
|
|
1539
1628
|
|
|
1540
1629
|
### Patch Changes
|
|
1541
1630
|
|
|
@@ -1546,7 +1635,7 @@
|
|
|
1546
1635
|
|
|
1547
1636
|
### Patch Changes
|
|
1548
1637
|
|
|
1549
|
-
- [`e2260ead0c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2260ead0c9) - [ME-1099] Fix image spacing in tables in the mobile renderer.
|
|
1638
|
+
- [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510) [`e2260ead0c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2260ead0c9) - [ME-1099] Fix image spacing in tables in the mobile renderer.
|
|
1550
1639
|
- [`58b170725be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58b170725be) - Renamed @atlaskit/editor-test-helpers/schema-builder to @atlaskit/editor-test-helpers/doc-builder
|
|
1551
1640
|
- [`2a8ef3203cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a8ef3203cf) - Fix event handlers for fallback card
|
|
1552
1641
|
- Updated dependencies
|
|
@@ -1555,7 +1644,7 @@
|
|
|
1555
1644
|
|
|
1556
1645
|
### Minor Changes
|
|
1557
1646
|
|
|
1558
|
-
- [`ada3c26e788`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ada3c26e788) - Add text rendering support for inlineCard node
|
|
1647
|
+
- [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083) [`ada3c26e788`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ada3c26e788) - Add text rendering support for inlineCard node
|
|
1559
1648
|
- [`6d748ea5140`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d748ea5140) - New stage-0 data consumer mark in ADF schema
|
|
1560
1649
|
- [`efdcfff1c0b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efdcfff1c0b) - Add text rendering support for date node
|
|
1561
1650
|
- [`b5065367a66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5065367a66) - Improve rendering of the status node in plain text: done -> [ DONE ]
|
|
@@ -1571,13 +1660,13 @@
|
|
|
1571
1660
|
|
|
1572
1661
|
### Patch Changes
|
|
1573
1662
|
|
|
1574
|
-
- [`1330382a0af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1330382a0af) - Fix event handlers for fallback card
|
|
1663
|
+
- [#9176](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9176) [`1330382a0af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1330382a0af) - Fix event handlers for fallback card
|
|
1575
1664
|
|
|
1576
1665
|
## 74.1.0
|
|
1577
1666
|
|
|
1578
1667
|
### Minor Changes
|
|
1579
1668
|
|
|
1580
|
-
- [`4f08f25ebfe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f08f25ebfe) - NO-ISSUE pass through feature flags into renderer
|
|
1669
|
+
- [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`4f08f25ebfe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f08f25ebfe) - NO-ISSUE pass through feature flags into renderer
|
|
1581
1670
|
|
|
1582
1671
|
### Patch Changes
|
|
1583
1672
|
|
|
@@ -1590,13 +1679,13 @@
|
|
|
1590
1679
|
|
|
1591
1680
|
### Patch Changes
|
|
1592
1681
|
|
|
1593
|
-
- [`cf929eb9816`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf929eb9816) - ED-10336 Add unique ID on renderer performance mark
|
|
1682
|
+
- [#8353](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8353) [`cf929eb9816`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf929eb9816) - ED-10336 Add unique ID on renderer performance mark
|
|
1594
1683
|
|
|
1595
1684
|
## 74.0.0
|
|
1596
1685
|
|
|
1597
1686
|
### Minor Changes
|
|
1598
1687
|
|
|
1599
|
-
- [`848d9fb54a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/848d9fb54a3) - ED-11875 align renderer to editor tab size in code-block
|
|
1688
|
+
- [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178) [`848d9fb54a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/848d9fb54a3) - ED-11875 align renderer to editor tab size in code-block
|
|
1600
1689
|
|
|
1601
1690
|
### Patch Changes
|
|
1602
1691
|
|
|
@@ -1607,7 +1696,7 @@
|
|
|
1607
1696
|
|
|
1608
1697
|
### Minor Changes
|
|
1609
1698
|
|
|
1610
|
-
- [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
|
|
1699
|
+
- [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`7ddbf962bd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ddbf962bd9) - [ux] Updated and added new translations
|
|
1611
1700
|
|
|
1612
1701
|
### Patch Changes
|
|
1613
1702
|
|
|
@@ -1621,7 +1710,7 @@
|
|
|
1621
1710
|
|
|
1622
1711
|
### Minor Changes
|
|
1623
1712
|
|
|
1624
|
-
- [`949c7174a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/949c7174a4) - [ux] ED-11625: scope select all to renderer document
|
|
1713
|
+
- [#7425](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7425) [`949c7174a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/949c7174a4) - [ux] ED-11625: scope select all to renderer document
|
|
1625
1714
|
|
|
1626
1715
|
### Patch Changes
|
|
1627
1716
|
|
|
@@ -1631,7 +1720,7 @@
|
|
|
1631
1720
|
|
|
1632
1721
|
### Major Changes
|
|
1633
1722
|
|
|
1634
|
-
- [`52003c2c47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/52003c2c47) - [ED-10690][renderer] Remove bodied extension analytics event and renderNodes function.
|
|
1723
|
+
- [#7170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7170) [`52003c2c47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/52003c2c47) - [ED-10690][renderer] Remove bodied extension analytics event and renderNodes function.
|
|
1635
1724
|
|
|
1636
1725
|
### Patch Changes
|
|
1637
1726
|
|
|
@@ -1644,7 +1733,7 @@
|
|
|
1644
1733
|
|
|
1645
1734
|
### Minor Changes
|
|
1646
1735
|
|
|
1647
|
-
- [`c7e408f3c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7e408f3c8) - [ux] Embed smart cart resizing now can dynamically change height when content is coming from a public resolver powered by iframe.
|
|
1736
|
+
- [#6930](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6930) [`c7e408f3c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7e408f3c8) - [ux] Embed smart cart resizing now can dynamically change height when content is coming from a public resolver powered by iframe.
|
|
1648
1737
|
|
|
1649
1738
|
### Patch Changes
|
|
1650
1739
|
|
|
@@ -1655,7 +1744,7 @@
|
|
|
1655
1744
|
|
|
1656
1745
|
### Minor Changes
|
|
1657
1746
|
|
|
1658
|
-
- [`dfd440f4b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfd440f4b5) - [ux] New functionality to add and remove captions to images and videos. Select an image or video in the editor to start using it!
|
|
1747
|
+
- [#6571](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6571) [`dfd440f4b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfd440f4b5) - [ux] New functionality to add and remove captions to images and videos. Select an image or video in the editor to start using it!
|
|
1659
1748
|
editor-core now exports dedupe which aids in not having duplicate plugins added when initialising an editor
|
|
1660
1749
|
- [`e2c3b5cf75`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2c3b5cf75) - [TWISTA-429] Prevents useLoadAnnotations requesting annotations states when there is an empty array of Annotations received from actions"
|
|
1661
1750
|
|
|
@@ -1683,26 +1772,26 @@
|
|
|
1683
1772
|
|
|
1684
1773
|
### Patch Changes
|
|
1685
1774
|
|
|
1686
|
-
- [`cea22d0f03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cea22d0f03) - pass featureFlags to media-client
|
|
1775
|
+
- [#6564](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6564) [`cea22d0f03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cea22d0f03) - pass featureFlags to media-client
|
|
1687
1776
|
|
|
1688
1777
|
## 70.0.2
|
|
1689
1778
|
|
|
1690
1779
|
### Patch Changes
|
|
1691
1780
|
|
|
1692
|
-
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
1781
|
+
- [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857) [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
|
|
1693
1782
|
- Updated dependencies
|
|
1694
1783
|
|
|
1695
1784
|
## 70.0.1
|
|
1696
1785
|
|
|
1697
1786
|
### Patch Changes
|
|
1698
1787
|
|
|
1699
|
-
- [`908990b928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/908990b928) - Fix mobile link for media
|
|
1788
|
+
- [#6452](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6452) [`908990b928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/908990b928) - Fix mobile link for media
|
|
1700
1789
|
|
|
1701
1790
|
## 70.0.0
|
|
1702
1791
|
|
|
1703
1792
|
### Minor Changes
|
|
1704
1793
|
|
|
1705
|
-
- [`28e97db5a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28e97db5a7) - TWISTA-407 Expose the Confluence index match API to native. On applying draft mode, the bridge will call `annotationIndexMatch` with the `numMatch`, `matchIndex`, `originalSelection` tuple that is required by Confluence.
|
|
1794
|
+
- [#6228](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6228) [`28e97db5a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28e97db5a7) - TWISTA-407 Expose the Confluence index match API to native. On applying draft mode, the bridge will call `annotationIndexMatch` with the `numMatch`, `matchIndex`, `originalSelection` tuple that is required by Confluence.
|
|
1706
1795
|
- [`d13ccbd6c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d13ccbd6c3) - [ux][twista-523] Fixed a bug in Safari/iOS where inline comment overlapping link would open url into current webView
|
|
1707
1796
|
|
|
1708
1797
|
### Patch Changes
|
|
@@ -1719,7 +1808,7 @@
|
|
|
1719
1808
|
|
|
1720
1809
|
### Minor Changes
|
|
1721
1810
|
|
|
1722
|
-
- [`988bc9cfc9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/988bc9cfc9) - ED-10676: ADF scrub util
|
|
1811
|
+
- [#5877](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5877) [`988bc9cfc9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/988bc9cfc9) - ED-10676: ADF scrub util
|
|
1723
1812
|
|
|
1724
1813
|
### Patch Changes
|
|
1725
1814
|
|
|
@@ -1729,7 +1818,7 @@
|
|
|
1729
1818
|
|
|
1730
1819
|
### Minor Changes
|
|
1731
1820
|
|
|
1732
|
-
- [`964b2be0e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/964b2be0e5) - ED-9514 Fix Media in MediaSingle not rendererd on web and hybrid renderer when unsupported node attributes and/or unsupported marks are included.
|
|
1821
|
+
- [#5860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5860) [`964b2be0e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/964b2be0e5) - ED-9514 Fix Media in MediaSingle not rendererd on web and hybrid renderer when unsupported node attributes and/or unsupported marks are included.
|
|
1733
1822
|
- [`1e59fd65c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e59fd65c5) - ED-8720 Add OnUnhandledClickHandler for Renderer
|
|
1734
1823
|
- [`ff39f9f643`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff39f9f643) - ED-10614 Add match indexing (Confluence API) for annotation creation for the renderer
|
|
1735
1824
|
|
|
@@ -1768,13 +1857,13 @@
|
|
|
1768
1857
|
|
|
1769
1858
|
### Patch Changes
|
|
1770
1859
|
|
|
1771
|
-
- [`240dd9bdbb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/240dd9bdbb) - [ux] ED-10839 Revert RTL text to restore predictability of right aligned heading text
|
|
1860
|
+
- [#5942](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5942) [`240dd9bdbb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/240dd9bdbb) - [ux] ED-10839 Revert RTL text to restore predictability of right aligned heading text
|
|
1772
1861
|
|
|
1773
1862
|
## 68.0.0
|
|
1774
1863
|
|
|
1775
1864
|
### Minor Changes
|
|
1776
1865
|
|
|
1777
|
-
- [`b6b8b7ab25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6b8b7ab25) - ED-10678 | Add analytics to bodiedExtension to determine if ADF content is passed to it
|
|
1866
|
+
- [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516) [`b6b8b7ab25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6b8b7ab25) - ED-10678 | Add analytics to bodiedExtension to determine if ADF content is passed to it
|
|
1778
1867
|
- [`1bd404254e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bd404254e) - ED-10547 Analytics for delete annotations
|
|
1779
1868
|
|
|
1780
1869
|
### Patch Changes
|
|
@@ -1820,13 +1909,13 @@
|
|
|
1820
1909
|
|
|
1821
1910
|
### Patch Changes
|
|
1822
1911
|
|
|
1823
|
-
- [`679a66bd92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/679a66bd92) - Fix for renderer SSR inline script when server side bundle is minimized
|
|
1912
|
+
- [#5821](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5821) [`679a66bd92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/679a66bd92) - Fix for renderer SSR inline script when server side bundle is minimized
|
|
1824
1913
|
|
|
1825
1914
|
## 67.0.2
|
|
1826
1915
|
|
|
1827
1916
|
### Patch Changes
|
|
1828
1917
|
|
|
1829
|
-
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
1918
|
+
- [#5497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5497) [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
|
|
1830
1919
|
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
|
|
1831
1920
|
Also add `typescript` to `devDependencies` to denote version that the package was built with.
|
|
1832
1921
|
- Updated dependencies
|
|
@@ -1835,14 +1924,14 @@
|
|
|
1835
1924
|
|
|
1836
1925
|
### Patch Changes
|
|
1837
1926
|
|
|
1838
|
-
- [`9798ad1405`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9798ad1405) - Remove deep import paths of dependencies in TS declaration files
|
|
1927
|
+
- [#5344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5344) [`9798ad1405`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9798ad1405) - Remove deep import paths of dependencies in TS declaration files
|
|
1839
1928
|
- Updated dependencies
|
|
1840
1929
|
|
|
1841
1930
|
## 67.0.0
|
|
1842
1931
|
|
|
1843
1932
|
### Major Changes
|
|
1844
1933
|
|
|
1845
|
-
- [`225c901919`](https://bitbucket.org/atlassian/atlassian-frontend/commits/225c901919) - ED-10351 add API to delete the annotation
|
|
1934
|
+
- [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749) [`225c901919`](https://bitbucket.org/atlassian/atlassian-frontend/commits/225c901919) - ED-10351 add API to delete the annotation
|
|
1846
1935
|
|
|
1847
1936
|
### Minor Changes
|
|
1848
1937
|
|
|
@@ -1892,7 +1981,7 @@
|
|
|
1892
1981
|
|
|
1893
1982
|
### Major Changes
|
|
1894
1983
|
|
|
1895
|
-
- [`78de49291b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78de49291b) - [TWISTA-130] Implements ViewComponent prop for AnnotationProviders
|
|
1984
|
+
- [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424) [`78de49291b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78de49291b) - [TWISTA-130] Implements ViewComponent prop for AnnotationProviders
|
|
1896
1985
|
|
|
1897
1986
|
# Breaking Change:
|
|
1898
1987
|
|
|
@@ -2023,7 +2112,7 @@
|
|
|
2023
2112
|
|
|
2024
2113
|
### Patch Changes
|
|
2025
2114
|
|
|
2026
|
-
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
2115
|
+
- [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885) [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
|
|
2027
2116
|
|
|
2028
2117
|
Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
|
|
2029
2118
|
to prevent duplicates of tslib being bundled.
|
|
@@ -2032,13 +2121,13 @@
|
|
|
2032
2121
|
|
|
2033
2122
|
### Patch Changes
|
|
2034
2123
|
|
|
2035
|
-
- [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
|
|
2124
|
+
- [#4393](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4393) [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
|
|
2036
2125
|
|
|
2037
2126
|
## 64.0.0
|
|
2038
2127
|
|
|
2039
2128
|
### Minor Changes
|
|
2040
2129
|
|
|
2041
|
-
- [`fe31ba459f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe31ba459f) - ED-8198 Include Spec based validator behind toggle for Renderer
|
|
2130
|
+
- [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`fe31ba459f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe31ba459f) - ED-8198 Include Spec based validator behind toggle for Renderer
|
|
2042
2131
|
- [`b932cbbc42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b932cbbc42) - Added support for rendering image captions
|
|
2043
2132
|
- [`62eb1114c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62eb1114c4) - Enable passing of MediaFeatureFlags through Editor Renderer via MediaOptions to Media components
|
|
2044
2133
|
|
|
@@ -2054,7 +2143,7 @@
|
|
|
2054
2143
|
|
|
2055
2144
|
### Minor Changes
|
|
2056
2145
|
|
|
2057
|
-
- [`e6b946351c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b946351c) - Prop `allowHeadingAnchorLinks` can now be boolean or a config object.
|
|
2146
|
+
- [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`e6b946351c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b946351c) - Prop `allowHeadingAnchorLinks` can now be boolean or a config object.
|
|
2058
2147
|
When the prop is `true`, heading anchor links will be enabled only on the top level of the document.
|
|
2059
2148
|
When the prop is set to `{ allowNestedHeaderLinks: true }` we will enable the new UI for heading anchor links,
|
|
2060
2149
|
and they can be supported everywhere: in tables, panels, expands, etc.
|
|
@@ -2096,7 +2185,7 @@
|
|
|
2096
2185
|
|
|
2097
2186
|
### Major Changes
|
|
2098
2187
|
|
|
2099
|
-
- [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
2188
|
+
- [#3335](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3335) [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
|
|
2100
2189
|
For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
|
|
2101
2190
|
|
|
2102
2191
|
### Patch Changes
|
|
@@ -2107,7 +2196,7 @@
|
|
|
2107
2196
|
|
|
2108
2197
|
### Minor Changes
|
|
2109
2198
|
|
|
2110
|
-
- [`a4948958c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4948958c4) - [FM-3820] Implements to set annotation state event on Renderer
|
|
2199
|
+
- [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`a4948958c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4948958c4) - [FM-3820] Implements to set annotation state event on Renderer
|
|
2111
2200
|
- [`ea81ff42a0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea81ff42a0) - [FM-3819] Implements a subscriber API to allows set focus in an specific annotation
|
|
2112
2201
|
|
|
2113
2202
|
### Patch Changes
|
|
@@ -2133,7 +2222,7 @@
|
|
|
2133
2222
|
|
|
2134
2223
|
### Major Changes
|
|
2135
2224
|
|
|
2136
|
-
- [`cd6af0a113`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd6af0a113) - CEMS-1040: rework sticky headers internally + match visual style to editor
|
|
2225
|
+
- [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443) [`cd6af0a113`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd6af0a113) - CEMS-1040: rework sticky headers internally + match visual style to editor
|
|
2137
2226
|
|
|
2138
2227
|
There is a breaking change to the `stickyHeaders.showStickyHeaders` prop. It has been renamed to `stickyHeaders.show`. You can also show sticky headers by passing a truthy value to `stickyHeaders`.
|
|
2139
2228
|
|
|
@@ -2155,7 +2244,7 @@
|
|
|
2155
2244
|
|
|
2156
2245
|
### Minor Changes
|
|
2157
2246
|
|
|
2158
|
-
- [`c41b33f7af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c41b33f7af) - ED-9251: Add support to RendererActions for validating a range to apply an annotation to
|
|
2247
|
+
- [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137) [`c41b33f7af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c41b33f7af) - ED-9251: Add support to RendererActions for validating a range to apply an annotation to
|
|
2159
2248
|
- [`e30894b112`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e30894b112) - [FM-3716] First Inline Comments implementation for Renderer
|
|
2160
2249
|
- [`177421dd67`](https://bitbucket.org/atlassian/atlassian-frontend/commits/177421dd67) - ED-9207: Add ability to remove annotations from the renderer
|
|
2161
2250
|
- [`5f9c856055`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f9c856055) - ED-9221: Add support for adding annotations at deeper depths
|
|
@@ -2184,7 +2273,7 @@
|
|
|
2184
2273
|
|
|
2185
2274
|
### Major Changes
|
|
2186
2275
|
|
|
2187
|
-
- [`e97f14eade`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e97f14eade) - ED-9155: Rename prop `extensionParams` to `node` in the extensions api v2
|
|
2276
|
+
- [#1868](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/1868) [`e97f14eade`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e97f14eade) - ED-9155: Rename prop `extensionParams` to `node` in the extensions api v2
|
|
2188
2277
|
|
|
2189
2278
|
### Minor Changes
|
|
2190
2279
|
|