@atlaskit/smart-card 26.28.1 → 26.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/CHANGELOG.md +404 -388
  2. package/dist/cjs/extractors/common/context/extractAccessContext.js +67 -4
  3. package/dist/cjs/extractors/flexible/extract-preview.js +3 -0
  4. package/dist/cjs/messages.js +82 -0
  5. package/dist/cjs/utils/analytics/analytics.js +1 -1
  6. package/dist/cjs/view/BlockCard/actions/ForbiddenAction.js +2 -4
  7. package/dist/cjs/view/FlexibleCard/components/blocks/preview-block/index.js +0 -3
  8. package/dist/cjs/view/FlexibleCard/utils.js +4 -1
  9. package/dist/cjs/view/HoverCard/components/HoverCardComponent.js +1 -1
  10. package/dist/cjs/view/HoverCard/components/HoverCardContent.js +9 -0
  11. package/dist/cjs/view/HoverCard/components/views/forbidden/index.js +82 -0
  12. package/dist/cjs/view/HoverCard/components/views/forbidden/styled.js +18 -0
  13. package/dist/cjs/view/HoverCard/components/views/forbidden/types.js +5 -0
  14. package/dist/cjs/view/HoverCard/styled.js +2 -2
  15. package/dist/cjs/view/LinkUrl/index.js +1 -1
  16. package/dist/es2019/extractors/common/context/extractAccessContext.js +63 -2
  17. package/dist/es2019/extractors/flexible/extract-preview.js +3 -0
  18. package/dist/es2019/messages.js +82 -0
  19. package/dist/es2019/utils/analytics/analytics.js +1 -1
  20. package/dist/es2019/view/BlockCard/actions/ForbiddenAction.js +2 -4
  21. package/dist/es2019/view/FlexibleCard/components/blocks/preview-block/index.js +0 -3
  22. package/dist/es2019/view/FlexibleCard/utils.js +4 -1
  23. package/dist/es2019/view/HoverCard/components/HoverCardComponent.js +1 -1
  24. package/dist/es2019/view/HoverCard/components/HoverCardContent.js +9 -0
  25. package/dist/es2019/view/HoverCard/components/views/forbidden/index.js +72 -0
  26. package/dist/es2019/view/HoverCard/components/views/forbidden/styled.js +17 -0
  27. package/dist/es2019/view/HoverCard/components/views/forbidden/types.js +1 -0
  28. package/dist/es2019/view/HoverCard/styled.js +3 -2
  29. package/dist/es2019/view/LinkUrl/index.js +1 -1
  30. package/dist/esm/extractors/common/context/extractAccessContext.js +64 -2
  31. package/dist/esm/extractors/flexible/extract-preview.js +3 -0
  32. package/dist/esm/messages.js +82 -0
  33. package/dist/esm/utils/analytics/analytics.js +1 -1
  34. package/dist/esm/view/BlockCard/actions/ForbiddenAction.js +2 -4
  35. package/dist/esm/view/FlexibleCard/components/blocks/preview-block/index.js +0 -3
  36. package/dist/esm/view/FlexibleCard/utils.js +4 -1
  37. package/dist/esm/view/HoverCard/components/HoverCardComponent.js +1 -1
  38. package/dist/esm/view/HoverCard/components/HoverCardContent.js +9 -0
  39. package/dist/esm/view/HoverCard/components/views/forbidden/index.js +71 -0
  40. package/dist/esm/view/HoverCard/components/views/forbidden/styled.js +8 -0
  41. package/dist/esm/view/HoverCard/components/views/forbidden/types.js +1 -0
  42. package/dist/esm/view/HoverCard/styled.js +2 -2
  43. package/dist/esm/view/LinkUrl/index.js +1 -1
  44. package/dist/types/extractors/common/context/extractAccessContext.d.ts +5 -0
  45. package/dist/types/messages.d.ts +1 -1
  46. package/dist/types/view/BlockCard/actions/ForbiddenAction.d.ts +1 -1
  47. package/dist/types/view/HoverCard/components/CustomPopupContainer.d.ts +1 -1
  48. package/dist/types/view/HoverCard/components/views/forbidden/index.d.ts +4 -0
  49. package/dist/types/view/HoverCard/components/views/forbidden/styled.d.ts +3 -0
  50. package/dist/types/view/HoverCard/components/views/forbidden/types.d.ts +13 -0
  51. package/dist/types/view/HoverCard/styled.d.ts +1 -1
  52. package/dist/types/view/types.d.ts +1 -0
  53. package/dist/types-ts4.5/extractors/common/context/extractAccessContext.d.ts +5 -0
  54. package/dist/types-ts4.5/messages.d.ts +1 -1
  55. package/dist/types-ts4.5/view/BlockCard/actions/ForbiddenAction.d.ts +1 -1
  56. package/dist/types-ts4.5/view/HoverCard/components/CustomPopupContainer.d.ts +1 -1
  57. package/dist/types-ts4.5/view/HoverCard/components/views/forbidden/index.d.ts +4 -0
  58. package/dist/types-ts4.5/view/HoverCard/components/views/forbidden/styled.d.ts +3 -0
  59. package/dist/types-ts4.5/view/HoverCard/components/views/forbidden/types.d.ts +13 -0
  60. package/dist/types-ts4.5/view/HoverCard/styled.d.ts +1 -1
  61. package/dist/types-ts4.5/view/types.d.ts +1 -0
  62. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -1,132 +1,148 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 26.29.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#40648](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40648) [`7952bdd41cb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7952bdd41cb) - [ux] Add hover card forbidden views
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
13
+ ## 26.28.2
14
+
15
+ ### Patch Changes
16
+
17
+ - [#40621](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40621) [`c46305662f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c46305662f7) - create new messages for smart link forbidden and not found views
18
+
3
19
  ## 26.28.1
4
20
 
5
21
  ### Patch Changes
6
22
 
7
- - [`1fedffbd64b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fedffbd64b) - Update json-ld-types dependencies to be compatible with version
23
+ - [#40491](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40491) [`1fedffbd64b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fedffbd64b) - Update json-ld-types dependencies to be compatible with version
8
24
 
9
25
  ## 26.28.0
10
26
 
11
27
  ### Minor Changes
12
28
 
13
- - [`46afccdf430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46afccdf430) - Flexible-UI: Add url override option to preview block
29
+ - [#40420](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40420) [`46afccdf430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46afccdf430) - Flexible-UI: Add url override option to preview block
14
30
 
15
31
  ## 26.27.2
16
32
 
17
33
  ### Patch Changes
18
34
 
19
- - [`cecab8d279d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cecab8d279d) - Added an attribute 'canBeDatasource' to 'smartLink renderSuccess' event to indicate which smart links can be converted to datasources
35
+ - [#40305](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40305) [`cecab8d279d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cecab8d279d) - Added an attribute 'canBeDatasource' to 'smartLink renderSuccess' event to indicate which smart links can be converted to datasources
20
36
 
21
37
  ## 26.27.1
22
38
 
23
39
  ### Patch Changes
24
40
 
25
- - [`3c60160da56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c60160da56) - Update usages of token color.border.input to color.input
41
+ - [#40312](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40312) [`3c60160da56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c60160da56) - Update usages of token color.border.input to color.input
26
42
 
27
43
  ## 26.27.0
28
44
 
29
45
  ### Minor Changes
30
46
 
31
- - [`12f9e6886ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12f9e6886ed) - [ux] Add follow/unfollow button to card and hover preview (behind feature flag).
47
+ - [#40190](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40190) [`12f9e6886ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12f9e6886ed) - [ux] Add follow/unfollow button to card and hover preview (behind feature flag).
32
48
 
33
49
  ## 26.26.2
34
50
 
35
51
  ### Patch Changes
36
52
 
37
- - [`da7fcd582e2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da7fcd582e2) - Fixed embed modal go to url and download button inconsitent behaviour when triggered from hover preview and block card
53
+ - [#40075](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40075) [`da7fcd582e2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da7fcd582e2) - Fixed embed modal go to url and download button inconsitent behaviour when triggered from hover preview and block card
38
54
 
39
55
  ## 26.26.1
40
56
 
41
57
  ### Patch Changes
42
58
 
43
- - [`2cd7af71b63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2cd7af71b63) - Bump json-ld-types 3.8.0 -> 3.9.1
59
+ - [#40127](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40127) [`2cd7af71b63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2cd7af71b63) - Bump json-ld-types 3.8.0 -> 3.9.1
44
60
 
45
61
  ## 26.26.0
46
62
 
47
63
  ### Minor Changes
48
64
 
49
- - [`d3e04f50bbc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3e04f50bbc) - Add follow action analytics (behind feature flag)
65
+ - [#40002](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40002) [`d3e04f50bbc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3e04f50bbc) - Add follow action analytics (behind feature flag)
50
66
 
51
67
  ## 26.25.0
52
68
 
53
69
  ### Minor Changes
54
70
 
55
- - [`dc3345f4b47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc3345f4b47) - Refactor flexible card to use client action hook. (Minor due to the change to the deprecated hook.)
71
+ - [#39853](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39853) [`dc3345f4b47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc3345f4b47) - Refactor flexible card to use client action hook. (Minor due to the change to the deprecated hook.)
56
72
 
57
73
  ### Patch Changes
58
74
 
59
- - [`2c8b781fd3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c8b781fd3a) - cleanup: remove server actions from actions extractor
75
+ - [#39980](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39980) [`2c8b781fd3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c8b781fd3a) - cleanup: remove server actions from actions extractor
60
76
 
61
77
  ## 26.24.0
62
78
 
63
79
  ### Minor Changes
64
80
 
65
- - [`cb6f1d7a319`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb6f1d7a319) - Add Follow/Unfollow action to flexible smart links (behind feature flag)
81
+ - [#39856](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39856) [`cb6f1d7a319`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb6f1d7a319) - Add Follow/Unfollow action to flexible smart links (behind feature flag)
66
82
 
67
83
  ### Patch Changes
68
84
 
69
- - [`93888ff40ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93888ff40ba) - [ux] Style updates for refreshed smart cards behind a feature flag. If this update is successful it will be available in a later release.
85
+ - [#39523](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39523) [`93888ff40ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93888ff40ba) - [ux] Style updates for refreshed smart cards behind a feature flag. If this update is successful it will be available in a later release.
70
86
 
71
87
  ## 26.23.2
72
88
 
73
89
  ### Patch Changes
74
90
 
75
- - [`4c919248f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c919248f12) - cleanup: remove usages of useLozengeAction feature flag
91
+ - [#39907](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39907) [`4c919248f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c919248f12) - cleanup: remove usages of useLozengeAction feature flag
76
92
  - Updated dependencies
77
93
 
78
94
  ## 26.23.1
79
95
 
80
96
  ### Patch Changes
81
97
 
82
- - [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
98
+ - [#39787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39787) [`6900f89eb0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6900f89eb0e) - Internal changes to use space tokens. There is no expected visual or behaviour change.
83
99
 
84
100
  ## 26.23.0
85
101
 
86
102
  ### Minor Changes
87
103
 
88
- - [`253d4604c50`](https://bitbucket.org/atlassian/atlassian-frontend/commits/253d4604c50) - We are testing support for allow-storage-access-by-user-activation sandbox permission on untrusted embeds behind the "platform.linking-platform.smart-card.iframes-allow-storage-access-by-user-activation" feature flag. If this is successful it will always be enabled for unstrusted embeds in a future release.
104
+ - [#39326](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39326) [`253d4604c50`](https://bitbucket.org/atlassian/atlassian-frontend/commits/253d4604c50) - We are testing support for allow-storage-access-by-user-activation sandbox permission on untrusted embeds behind the "platform.linking-platform.smart-card.iframes-allow-storage-access-by-user-activation" feature flag. If this is successful it will always be enabled for unstrusted embeds in a future release.
89
105
 
90
106
  ### Patch Changes
91
107
 
92
- - [`f85b3744521`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f85b3744521) - Add async action base component to flexible smart links (internal)
108
+ - [#39681](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39681) [`f85b3744521`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f85b3744521) - Add async action base component to flexible smart links (internal)
93
109
 
94
110
  ## 26.22.1
95
111
 
96
112
  ### Patch Changes
97
113
 
98
- - [`419f14321f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/419f14321f3) - Adds a JiraTask check when getting a metadata for hovercard. The change is behind a FF. If this update is successful it will be available in a later release.
114
+ - [#39734](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39734) [`419f14321f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/419f14321f3) - Adds a JiraTask check when getting a metadata for hovercard. The change is behind a FF. If this update is successful it will be available in a later release.
99
115
 
100
116
  ## 26.22.0
101
117
 
102
118
  ### Minor Changes
103
119
 
104
- - [`b3f9c544faa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3f9c544faa) - Refactor client action hook.
120
+ - [#39462](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39462) [`b3f9c544faa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3f9c544faa) - Refactor client action hook.
105
121
 
106
122
  ## 26.21.0
107
123
 
108
124
  ### Minor Changes
109
125
 
110
- - [`b2ea37e78dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ea37e78dc) - We are testing a fix for internal conditional logic that determines when the sandbox attribute is applied to smart link embeds behind the feature flag "platform.linking-platform.smart-card.fix-is-trusted-pop". If this is successful it will be changed permanently in a future release.
126
+ - [#39683](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39683) [`b2ea37e78dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2ea37e78dc) - We are testing a fix for internal conditional logic that determines when the sandbox attribute is applied to smart link embeds behind the feature flag "platform.linking-platform.smart-card.fix-is-trusted-pop". If this is successful it will be changed permanently in a future release.
111
127
 
112
128
  ## 26.20.1
113
129
 
114
130
  ### Patch Changes
115
131
 
116
- - [`335ad945d2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/335ad945d2f) - Update for an avatar’s name prefix in Avatar Group Flex UI behind a feature flag. If this update is successful it will be available in a later release.
132
+ - [#39512](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39512) [`335ad945d2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/335ad945d2f) - Update for an avatar’s name prefix in Avatar Group Flex UI behind a feature flag. If this update is successful it will be available in a later release.
117
133
  - Updated dependencies
118
134
 
119
135
  ## 26.20.0
120
136
 
121
137
  ### Minor Changes
122
138
 
123
- - [`f2cb6463788`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f2cb6463788) - We are testing a fallback avatar in Assigned Avatar Group in Flex UI behind a feature flag. If this update is successful it will be available in a later release.
139
+ - [#39262](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39262) [`f2cb6463788`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f2cb6463788) - We are testing a fallback avatar in Assigned Avatar Group in Flex UI behind a feature flag. If this update is successful it will be available in a later release.
124
140
 
125
141
  ## 26.19.0
126
142
 
127
143
  ### Minor Changes
128
144
 
129
- - [`1f25a043b3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f25a043b3f) - [ux] We are testing an improved display for BB hover cards behind a feature flag. If this update is successful it will be available in a later release.
145
+ - [#39323](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39323) [`1f25a043b3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f25a043b3f) - [ux] We are testing an improved display for BB hover cards behind a feature flag. If this update is successful it will be available in a later release.
130
146
 
131
147
  ### Patch Changes
132
148
 
@@ -136,107 +152,107 @@
136
152
 
137
153
  ### Minor Changes
138
154
 
139
- - [`e7e73b61721`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7e73b61721) - [ux] We are testing an improved dispaly for Slack hover & block cards behind a feature flag. If this update is successful it will be available in a later release.
155
+ - [#39182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39182) [`e7e73b61721`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7e73b61721) - [ux] We are testing an improved dispaly for Slack hover & block cards behind a feature flag. If this update is successful it will be available in a later release.
140
156
 
141
157
  ## 26.17.0
142
158
 
143
159
  ### Minor Changes
144
160
 
145
- - [`efc2669bc13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efc2669bc13) - We are testing adding a prefix to the Avatar name tooltip in the Hover Card behind the "platform.linking-platform.smart-card.enable-better-metadata_iojwg" feature flag. You can turn it on by passing new showNamePrefix prop to the Flexible UI elements such us AssignedToGroup, OwnedByGroup and AuthorGroup. If this fix is successful it will be available in a later release.
161
+ - [#39029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39029) [`efc2669bc13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efc2669bc13) - We are testing adding a prefix to the Avatar name tooltip in the Hover Card behind the "platform.linking-platform.smart-card.enable-better-metadata_iojwg" feature flag. You can turn it on by passing new showNamePrefix prop to the Flexible UI elements such us AssignedToGroup, OwnedByGroup and AuthorGroup. If this fix is successful it will be available in a later release.
146
162
 
147
163
  ## 26.16.1
148
164
 
149
165
  ### Patch Changes
150
166
 
151
- - [`8e0d75e3666`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e0d75e3666) - Update Image preview styles for Hover Card
167
+ - [#38898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38898) [`8e0d75e3666`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e0d75e3666) - Update Image preview styles for Hover Card
152
168
 
153
169
  ## 26.16.0
154
170
 
155
171
  ### Minor Changes
156
172
 
157
- - [`b73f38b2588`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b73f38b2588) - Add new FlexUI element - SentOn
173
+ - [#39073](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39073) [`b73f38b2588`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b73f38b2588) - Add new FlexUI element - SentOn
158
174
 
159
175
  ## 26.15.11
160
176
 
161
177
  ### Patch Changes
162
178
 
163
- - [`3d5b709c646`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d5b709c646) - Update css styles for metadata block elements in Block & Hover Card
179
+ - [#38964](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38964) [`3d5b709c646`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d5b709c646) - Update css styles for metadata block elements in Block & Hover Card
164
180
 
165
181
  ## 26.15.10
166
182
 
167
183
  ### Patch Changes
168
184
 
169
- - [`9eed222eff6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9eed222eff6) - noFadeDelay internal hover card prop added.
185
+ - [#38841](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38841) [`9eed222eff6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9eed222eff6) - noFadeDelay internal hover card prop added.
170
186
 
171
187
  ## 26.15.9
172
188
 
173
189
  ### Patch Changes
174
190
 
175
- - [`f64123c5b1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f64123c5b1e) - [ux] Update Full screen view button to Open preview
191
+ - [#38973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38973) [`f64123c5b1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f64123c5b1e) - [ux] Update Full screen view button to Open preview
176
192
  - Updated dependencies
177
193
 
178
194
  ## 26.15.8
179
195
 
180
196
  ### Patch Changes
181
197
 
182
- - [`215e90a628b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/215e90a628b) - Update Metadata Display Order for Figma Hover Cards
183
- - [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
198
+ - [#38832](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38832) [`215e90a628b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/215e90a628b) - Update Metadata Display Order for Figma Hover Cards
199
+ - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162) [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
184
200
  - Updated dependencies
185
201
 
186
202
  ## 26.15.7
187
203
 
188
204
  ### Patch Changes
189
205
 
190
- - [`c54d67a60b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c54d67a60b4) - [ux] Addresses some styling problems in the Editor related to selected smart cards
206
+ - [#38545](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38545) [`c54d67a60b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c54d67a60b4) - [ux] Addresses some styling problems in the Editor related to selected smart cards
191
207
 
192
208
  ## 26.15.6
193
209
 
194
210
  ### Patch Changes
195
211
 
196
- - [`ba101932150`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba101932150) - [ux] Use semibold font-weight for title in flexible smart cards.
212
+ - [#38677](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38677) [`ba101932150`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ba101932150) - [ux] Use semibold font-weight for title in flexible smart cards.
197
213
 
198
214
  ## 26.15.5
199
215
 
200
216
  ### Patch Changes
201
217
 
202
- - [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
218
+ - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925) [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use injected env vars instead of version.json
203
219
 
204
220
  ## 26.15.4
205
221
 
206
222
  ### Patch Changes
207
223
 
208
- - [`2e4ceb4b6b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e4ceb4b6b1) - [ux] Refreshed design for flexible block and hover cards.
224
+ - [#38035](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38035) [`2e4ceb4b6b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e4ceb4b6b1) - [ux] Refreshed design for flexible block and hover cards.
209
225
 
210
226
  ## 26.15.3
211
227
 
212
228
  ### Patch Changes
213
229
 
214
- - [`5ef68120bed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5ef68120bed) - fix for the padding issue on the Link Safety Warning Modal
230
+ - [#37377](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37377) [`5ef68120bed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5ef68120bed) - fix for the padding issue on the Link Safety Warning Modal
215
231
 
216
232
  ## 26.15.2
217
233
 
218
234
  ### Patch Changes
219
235
 
220
- - [`3355d65ed83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3355d65ed83) - Fix duplicate WebpackChunkName for GlyphSubtask & GlyphSubtaskProgress"
236
+ - [#38340](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38340) [`3355d65ed83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3355d65ed83) - Fix duplicate WebpackChunkName for GlyphSubtask & GlyphSubtaskProgress"
221
237
 
222
238
  ## 26.15.1
223
239
 
224
240
  ### Patch Changes
225
241
 
226
- - [`60b5cb9448d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b5cb9448d) - Add StoryPoints FlexUI Element to Jira Block & Hover Card
242
+ - [#38290](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38290) [`60b5cb9448d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60b5cb9448d) - Add StoryPoints FlexUI Element to Jira Block & Hover Card
227
243
 
228
244
  ## 26.15.0
229
245
 
230
246
  ### Minor Changes
231
247
 
232
- - [`560f5be1d2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/560f5be1d2c) - Add FlexUI element for dispalying StoryPoints as a Badge
248
+ - [#38227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38227) [`560f5be1d2c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/560f5be1d2c) - Add FlexUI element for dispalying StoryPoints as a Badge
233
249
 
234
250
  ## 26.14.6
235
251
 
236
252
  ### Patch Changes
237
253
 
238
- - [`88b90baf84c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88b90baf84c) - Update icon for SubTasksProgress flex ui element & update metadata elements order in Block & Hover Card
239
- - [`e6d7b777ce0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6d7b777ce0) - Remove dependency to @atlaskit/media-common
254
+ - [#38116](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38116) [`88b90baf84c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88b90baf84c) - Update icon for SubTasksProgress flex ui element & update metadata elements order in Block & Hover Card
255
+ - [#37930](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37930) [`e6d7b777ce0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6d7b777ce0) - Remove dependency to @atlaskit/media-common
240
256
 
241
257
  ## 26.14.5
242
258
 
@@ -248,43 +264,43 @@
248
264
 
249
265
  ### Patch Changes
250
266
 
251
- - [`f6e68d0feb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f6e68d0feb1) - Update css style for avatar groups in block card
267
+ - [#37901](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37901) [`f6e68d0feb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f6e68d0feb1) - Update css style for avatar groups in block card
252
268
 
253
269
  ## 26.14.3
254
270
 
255
271
  ### Patch Changes
256
272
 
257
- - [`c5a8ab5629d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c5a8ab5629d) - Refactor view url action
273
+ - [#37935](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37935) [`c5a8ab5629d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c5a8ab5629d) - Refactor view url action
258
274
 
259
275
  ## 26.14.2
260
276
 
261
277
  ### Patch Changes
262
278
 
263
- - [`6a807668da6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a807668da6) - [ux] Refreshed design for the Embed Smart Links view added under the FF
279
+ - [#37695](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37695) [`6a807668da6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a807668da6) - [ux] Refreshed design for the Embed Smart Links view added under the FF
264
280
 
265
281
  ## 26.14.1
266
282
 
267
283
  ### Patch Changes
268
284
 
269
- - [`f3cefce58df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3cefce58df) - Refactor embed modal helper function (internal)
285
+ - [#37830](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37830) [`f3cefce58df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3cefce58df) - Refactor embed modal helper function (internal)
270
286
 
271
287
  ## 26.14.0
272
288
 
273
289
  ### Minor Changes
274
290
 
275
- - [`d8799deba6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8799deba6e) - Add new Flexui elements-OwnedByGroup, AssignedTogroup, AssignedTo, ReadTime & SubtasksProgress. Add provider specific logic for metadata display for Hover Cards & Block Cards.
291
+ - [#37264](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37264) [`d8799deba6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8799deba6e) - Add new Flexui elements-OwnedByGroup, AssignedTogroup, AssignedTo, ReadTime & SubtasksProgress. Add provider specific logic for metadata display for Hover Cards & Block Cards.
276
292
 
277
293
  ## 26.13.1
278
294
 
279
295
  ### Patch Changes
280
296
 
281
- - [`72d087f0de3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72d087f0de3) - [ux] Update smart link unauthorised view when there is no auth flow available
297
+ - [#37579](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37579) [`72d087f0de3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72d087f0de3) - [ux] Update smart link unauthorised view when there is no auth flow available
282
298
 
283
299
  ## 26.13.0
284
300
 
285
301
  ### Minor Changes
286
302
 
287
- - [`d2ef5ede462`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2ef5ede462) - Added a new analytics event that will fire on resolution of data for hover cards. The change is behind a FF and will only surface if we pass the FF as true to SmartCardProvider.
303
+ - [#37820](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37820) [`d2ef5ede462`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2ef5ede462) - Added a new analytics event that will fire on resolution of data for hover cards. The change is behind a FF and will only surface if we pass the FF as true to SmartCardProvider.
288
304
 
289
305
  ### Patch Changes
290
306
 
@@ -294,75 +310,75 @@
294
310
 
295
311
  ### Patch Changes
296
312
 
297
- - [`e74ae7f06d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e74ae7f06d4) - Update dependency json-ld-types@3.8.0
313
+ - [#37720](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37720) [`e74ae7f06d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e74ae7f06d4) - Update dependency json-ld-types@3.8.0
298
314
 
299
315
  ## 26.12.0
300
316
 
301
317
  ### Minor Changes
302
318
 
303
- - [`5eea09cd864`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5eea09cd864) - Standalone Hover Preview: Add zIndex prop to pass to DS Popup
319
+ - [#37654](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37654) [`5eea09cd864`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5eea09cd864) - Standalone Hover Preview: Add zIndex prop to pass to DS Popup
304
320
 
305
321
  ## 26.11.1
306
322
 
307
323
  ### Patch Changes
308
324
 
309
- - [`b37a26be833`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37a26be833) - Prevent LinkUrl from throwing error on validation
325
+ - [#37580](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37580) [`b37a26be833`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b37a26be833) - Prevent LinkUrl from throwing error on validation
310
326
 
311
327
  ## 26.11.0
312
328
 
313
329
  ### Minor Changes
314
330
 
315
- - [`fdfe07831c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fdfe07831c7) - - Deprecate standalone hover card `onAuthorize` prop (no implementation)
331
+ - [#37492](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37492) [`fdfe07831c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fdfe07831c7) - - Deprecate standalone hover card `onAuthorize` prop (no implementation)
316
332
  - Hide auth tooltip on unauthenticated inline link with no auth flow (new design, behind feature flag)
317
333
 
318
334
  ## 26.10.0
319
335
 
320
336
  ### Minor Changes
321
337
 
322
- - [`fa12a765333`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa12a765333) - Cleansup a FF introduced in 26.3.5 (platform.linking-platform.smart-card.remove-dispatch-analytics-as-prop) providing default display attribute now prefers analytics context instead of passing a dispatch function as prop.
338
+ - [#36434](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36434) [`fa12a765333`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa12a765333) - Cleansup a FF introduced in 26.3.5 (platform.linking-platform.smart-card.remove-dispatch-analytics-as-prop) providing default display attribute now prefers analytics context instead of passing a dispatch function as prop.
323
339
 
324
340
  ## 26.9.19
325
341
 
326
342
  ### Patch Changes
327
343
 
328
- - [`928615c211b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/928615c211b) - Fix connect button appear when user cannot not connect (no auth flow)
344
+ - [#37261](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37261) [`928615c211b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/928615c211b) - Fix connect button appear when user cannot not connect (no auth flow)
329
345
 
330
346
  ## 26.9.18
331
347
 
332
348
  ### Patch Changes
333
349
 
334
- - [`bfab8038b9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfab8038b9c) - [ux] Fix for Block card avatar misalignment in Cofnluence renderer caused by a less specific css rule on our end
350
+ - [#37406](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37406) [`bfab8038b9c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfab8038b9c) - [ux] Fix for Block card avatar misalignment in Cofnluence renderer caused by a less specific css rule on our end
335
351
 
336
352
  ## 26.9.17
337
353
 
338
354
  ### Patch Changes
339
355
 
340
- - [`936fc621c48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/936fc621c48) - [ux] Design refresh for the Inline Smart Links.
356
+ - [#36005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36005) [`936fc621c48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/936fc621c48) - [ux] Design refresh for the Inline Smart Links.
341
357
 
342
358
  ## 26.9.16
343
359
 
344
360
  ### Patch Changes
345
361
 
346
- - [`a4ff4c2f918`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4ff4c2f918) - Update to use 'getStatus' from '@atlaskit/linking-common'
362
+ - [#37136](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37136) [`a4ff4c2f918`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4ff4c2f918) - Update to use 'getStatus' from '@atlaskit/linking-common'
347
363
  - Updated dependencies
348
364
 
349
365
  ## 26.9.15
350
366
 
351
367
  ### Patch Changes
352
368
 
353
- - [`b9355830504`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9355830504) - Opt out of peer dependency enforcement
369
+ - [#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
354
370
 
355
371
  ## 26.9.14
356
372
 
357
373
  ### Patch Changes
358
374
 
359
- - [`08c372c1547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c372c1547) - [ux] Revert of functionality added in 26.9.8
375
+ - [#37322](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37322) [`08c372c1547`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c372c1547) - [ux] Revert of functionality added in 26.9.8
360
376
 
361
377
  ## 26.9.13
362
378
 
363
379
  ### Patch Changes
364
380
 
365
- - [`68956c0d353`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68956c0d353) - Embed Modal: Fix icon alignment when triggered from flexible and block card component
381
+ - [#37046](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37046) [`68956c0d353`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68956c0d353) - Embed Modal: Fix icon alignment when triggered from flexible and block card component
366
382
 
367
383
  ## 26.9.12
368
384
 
@@ -374,96 +390,96 @@
374
390
 
375
391
  ### Patch Changes
376
392
 
377
- - [`3fb20c4aeba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fb20c4aeba) - Add postinstall check to enforce internal peer dependencies
393
+ - [#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
378
394
 
379
395
  ## 26.9.10
380
396
 
381
397
  ### Patch Changes
382
398
 
383
- - [`74c892f10de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74c892f10de) - [ux] Hover card will open closer to the mouse position, but with a slight offset of 10px to the right and to the top.
399
+ - [#36975](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36975) [`74c892f10de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74c892f10de) - [ux] Hover card will open closer to the mouse position, but with a slight offset of 10px to the right and to the top.
384
400
 
385
401
  ## 26.9.9
386
402
 
387
403
  ### Patch Changes
388
404
 
389
- - [`4e254433494`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e254433494) - [ux] Remove 'open in new tab' button in Hover Cards
405
+ - [#36898](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36898) [`4e254433494`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e254433494) - [ux] Remove 'open in new tab' button in Hover Cards
390
406
 
391
407
  ## 26.9.8
392
408
 
393
409
  ### Patch Changes
394
410
 
395
- - [`4d66cb26fcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d66cb26fcb) - Bump jsdom to ^17.0.0
396
- - [`2a6ebbbfdf1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a6ebbbfdf1) - [ux] Hover Preview: Hide hover preview on scrolling (wheel event)
411
+ - [#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
412
+ - [#36849](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36849) [`2a6ebbbfdf1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a6ebbbfdf1) - [ux] Hover Preview: Hide hover preview on scrolling (wheel event)
397
413
  - Updated dependencies
398
414
 
399
415
  ## 26.9.7
400
416
 
401
417
  ### Patch Changes
402
418
 
403
- - [`68880de5ecb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68880de5ecb) - [ux] Closing hover card on right click (open of context menu)
419
+ - [#36850](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36850) [`68880de5ecb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68880de5ecb) - [ux] Closing hover card on right click (open of context menu)
404
420
 
405
421
  ## 26.9.6
406
422
 
407
423
  ### Patch Changes
408
424
 
409
- - [`e0a2c926e63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0a2c926e63) - [ux] Flexible Smart Links: Fix hover preview shows on mouse leave
425
+ - [#36755](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36755) [`e0a2c926e63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e0a2c926e63) - [ux] Flexible Smart Links: Fix hover preview shows on mouse leave
410
426
 
411
427
  ## 26.9.5
412
428
 
413
429
  ### Patch Changes
414
430
 
415
- - [`7b08013b112`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b08013b112) - Clean up use of showAuthTooltip FF. Switch to being fully reliant on the showAuthTooltip prop.
431
+ - [#36589](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36589) [`7b08013b112`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b08013b112) - Clean up use of showAuthTooltip FF. Switch to being fully reliant on the showAuthTooltip prop.
416
432
  - Updated dependencies
417
433
 
418
434
  ## 26.9.4
419
435
 
420
436
  ### Patch Changes
421
437
 
422
- - [`2a4926aa20a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a4926aa20a) - [ux] Flexible Smart Links: Add hover preview show/hide delay when mouse moves inside the card
438
+ - [#36620](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36620) [`2a4926aa20a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a4926aa20a) - [ux] Flexible Smart Links: Add hover preview show/hide delay when mouse moves inside the card
423
439
 
424
440
  ## 26.9.3
425
441
 
426
442
  ### Patch Changes
427
443
 
428
- - [`1e7190077d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e7190077d4) - Move off deprecated @atlaskit/linking-common/extractors to @atlaskit/link-extractors
444
+ - [#36089](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36089) [`1e7190077d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e7190077d4) - Move off deprecated @atlaskit/linking-common/extractors to @atlaskit/link-extractors
429
445
  - Updated dependencies
430
446
 
431
447
  ## 26.9.2
432
448
 
433
449
  ### Patch Changes
434
450
 
435
- - [`99643bdd534`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99643bdd534) - Fix flexible smart links onclick event not bubble up when hover preview is enabled
451
+ - [#36428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36428) [`99643bdd534`](https://bitbucket.org/atlassian/atlassian-frontend/commits/99643bdd534) - Fix flexible smart links onclick event not bubble up when hover preview is enabled
436
452
 
437
453
  ## 26.9.1
438
454
 
439
455
  ### Patch Changes
440
456
 
441
- - [`88cc5a0088c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88cc5a0088c) - [ux] Flexible Smart Links: Hover preview to follow mouse position
457
+ - [#36225](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36225) [`88cc5a0088c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88cc5a0088c) - [ux] Flexible Smart Links: Hover preview to follow mouse position
442
458
  - Updated dependencies
443
459
 
444
460
  ## 26.9.0
445
461
 
446
462
  ### Minor Changes
447
463
 
448
- - [`7811ab546b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7811ab546b9) - Cleans up FF platform.linking-platform.smart-card.enable-analytics-context introduced in 26.2.2 — resolved attributes now provided to all events fired within Smart Card by default.
464
+ - [#36317](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36317) [`7811ab546b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7811ab546b9) - Cleans up FF platform.linking-platform.smart-card.enable-analytics-context introduced in 26.2.2 — resolved attributes now provided to all events fired within Smart Card by default.
449
465
 
450
466
  ## 26.8.1
451
467
 
452
468
  ### Patch Changes
453
469
 
454
- - [`0b148ef0a04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b148ef0a04) - [ux] Updated fade in delay for hover card to be 500ms
470
+ - [#36308](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36308) [`0b148ef0a04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b148ef0a04) - [ux] Updated fade in delay for hover card to be 500ms
455
471
 
456
472
  ## 26.8.0
457
473
 
458
474
  ### Minor Changes
459
475
 
460
- - [`a1b70608039`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1b70608039) - [ux] Adds editor toolbar to link datasource component
476
+ - [#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
461
477
 
462
478
  ## 26.7.0
463
479
 
464
480
  ### Minor Changes
465
481
 
466
- - [`c5a897eb81d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c5a897eb81d) - add statusDetails attribute
482
+ - [#36198](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36198) [`c5a897eb81d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c5a897eb81d) - add statusDetails attribute
467
483
 
468
484
  ### Patch Changes
469
485
 
@@ -473,7 +489,7 @@
473
489
 
474
490
  ### Patch Changes
475
491
 
476
- - [`fc0fa5ca4e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc0fa5ca4e7) - [ux] Fix for a hover card issue introduced in 25.6.17
492
+ - [#36052](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36052) [`fc0fa5ca4e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc0fa5ca4e7) - [ux] Fix for a hover card issue introduced in 25.6.17
477
493
 
478
494
  ## 26.6.2
479
495
 
@@ -485,14 +501,14 @@
485
501
 
486
502
  ### Patch Changes
487
503
 
488
- - [`ebb6750a97d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ebb6750a97d) - [ux] Flexible Smart Links: Change hover preview show/hide behavior. Hover preview should not show when hovering over metadata elements and actions.
504
+ - [#35958](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35958) [`ebb6750a97d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ebb6750a97d) - [ux] Flexible Smart Links: Change hover preview show/hide behavior. Hover preview should not show when hovering over metadata elements and actions.
489
505
  - Updated dependencies
490
506
 
491
507
  ## 26.6.0
492
508
 
493
509
  ### Minor Changes
494
510
 
495
- - [`04295e9d5bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04295e9d5bc) - [ux] Updating ORS response to include datasources and facilitating pasting JQL links turning into datasource tables
511
+ - [#35032](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35032) [`04295e9d5bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04295e9d5bc) - [ux] Updating ORS response to include datasources and facilitating pasting JQL links turning into datasource tables
496
512
 
497
513
  ### Patch Changes
498
514
 
@@ -508,7 +524,7 @@
508
524
 
509
525
  ### Patch Changes
510
526
 
511
- - [`b3ed4f7f776`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3ed4f7f776) - [ux] Fix for Hover Card unmount - added a clean up function that will clearTimeouts. Additionally changed the trigger of HoverCard from onMouseEnter to onMouseOver and added a function that after 100ms of hover starts fetching the data for the url to reduce the loading state experienced on standalone HoverCards.
527
+ - [#35601](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35601) [`b3ed4f7f776`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3ed4f7f776) - [ux] Fix for Hover Card unmount - added a clean up function that will clearTimeouts. Additionally changed the trigger of HoverCard from onMouseEnter to onMouseOver and added a function that after 100ms of hover starts fetching the data for the url to reduce the loading state experienced on standalone HoverCards.
512
528
 
513
529
  ## 26.5.16
514
530
 
@@ -520,73 +536,73 @@
520
536
 
521
537
  ### Patch Changes
522
538
 
523
- - [`7b2d54a82d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b2d54a82d0) - Cleans up a FF introduced in 26.3.3 & Fixes HoverCard component providing hover card analytics context to the wrapped trigger component
539
+ - [#35883](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35883) [`7b2d54a82d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b2d54a82d0) - Cleans up a FF introduced in 26.3.3 & Fixes HoverCard component providing hover card analytics context to the wrapped trigger component
524
540
 
525
541
  ## 26.5.14
526
542
 
527
543
  ### Patch Changes
528
544
 
529
- - [`fd2375e6f26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd2375e6f26) - [ux] Prevent skipping of warning modal when onClick callback programatically opens a window. OnClick function is no longer called if the warning modal is shown. This will prevent link click analytics from firing but there is no easy way to distinguish the effects of what happens within onClick. Additionally, clicking continue in the warning modal will always open the link in a new tab.
545
+ - [#35467](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35467) [`fd2375e6f26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd2375e6f26) - [ux] Prevent skipping of warning modal when onClick callback programatically opens a window. OnClick function is no longer called if the warning modal is shown. This will prevent link click analytics from firing but there is no easy way to distinguish the effects of what happens within onClick. Additionally, clicking continue in the warning modal will always open the link in a new tab.
530
546
 
531
547
  ## 26.5.13
532
548
 
533
549
  ### Patch Changes
534
550
 
535
- - [`2d2b6b23bec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d2b6b23bec) - Updated dependencies
551
+ - [#35582](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35582) [`2d2b6b23bec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d2b6b23bec) - Updated dependencies
536
552
 
537
553
  ## 26.5.12
538
554
 
539
555
  ### Patch Changes
540
556
 
541
- - [`472882f9947`](https://bitbucket.org/atlassian/atlassian-frontend/commits/472882f9947) - fix analytics display to be flexible when it is a flex ui
557
+ - [#35384](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35384) [`472882f9947`](https://bitbucket.org/atlassian/atlassian-frontend/commits/472882f9947) - fix analytics display to be flexible when it is a flex ui
542
558
 
543
559
  ## 26.5.11
544
560
 
545
561
  ### Patch Changes
546
562
 
547
- - [`0dd86b5573c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0dd86b5573c) - Small refactoring to move lozenge action to lozenge element
563
+ - [#35202](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35202) [`0dd86b5573c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0dd86b5573c) - Small refactoring to move lozenge action to lozenge element
548
564
 
549
565
  ## 26.5.10
550
566
 
551
567
  ### Patch Changes
552
568
 
553
- - [`70f573b2c44`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f573b2c44) - Internal change to use space tokens for spacing properties. There is no visual change.
569
+ - [#35458](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35458) [`70f573b2c44`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f573b2c44) - Internal change to use space tokens for spacing properties. There is no visual change.
554
570
 
555
571
  ## 26.5.9
556
572
 
557
573
  ### Patch Changes
558
574
 
559
- - [`d394a5db254`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d394a5db254) - Fixes display analytics attribute provided by analytics context when the apperance is flexible
575
+ - [#35046](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35046) [`d394a5db254`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d394a5db254) - Fixes display analytics attribute provided by analytics context when the apperance is flexible
560
576
 
561
577
  ## 26.5.8
562
578
 
563
579
  ### Patch Changes
564
580
 
565
- - [`27f4aa34132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/27f4aa34132) - [ux] Fix for Hover Card in Flexible UI links: it will show only supported states, such as resolved and unauthorized based on the corresponding featureFlag ('showHoverPreview' and 'showAuthTooltip')
581
+ - [#35067](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35067) [`27f4aa34132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/27f4aa34132) - [ux] Fix for Hover Card in Flexible UI links: it will show only supported states, such as resolved and unauthorized based on the corresponding featureFlag ('showHoverPreview' and 'showAuthTooltip')
566
582
 
567
583
  ## 26.5.7
568
584
 
569
585
  ### Patch Changes
570
586
 
571
- - [`5b5d7b22e80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b5d7b22e80) - [ux] Update feature discovery on lozenge action to display for 2s before marking it as discovered
587
+ - [#35159](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35159) [`5b5d7b22e80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b5d7b22e80) - [ux] Update feature discovery on lozenge action to display for 2s before marking it as discovered
572
588
 
573
589
  ## 26.5.6
574
590
 
575
591
  ### Patch Changes
576
592
 
577
- - [`625aad4d6f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/625aad4d6f8) - [ux] Change block card link clicks to open in the same tab by default unless overriden with onclick behaviour.
593
+ - [#34809](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34809) [`625aad4d6f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/625aad4d6f8) - [ux] Change block card link clicks to open in the same tab by default unless overriden with onclick behaviour.
578
594
 
579
595
  ## 26.5.5
580
596
 
581
597
  ### Patch Changes
582
598
 
583
- - [`8f456366d7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f456366d7b) - Clean up actionable element experiment
599
+ - [#34996](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34996) [`8f456366d7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f456366d7b) - Clean up actionable element experiment
584
600
 
585
601
  ## 26.5.4
586
602
 
587
603
  ### Patch Changes
588
604
 
589
- - [`2660603c726`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2660603c726) - [ux] A hover card loading state improvement is implemented: all elements except for actions would have a loading skeleton
605
+ - [#34907](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34907) [`2660603c726`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2660603c726) - [ux] A hover card loading state improvement is implemented: all elements except for actions would have a loading skeleton
590
606
  - Updated dependencies
591
607
 
592
608
  ## 26.5.3
@@ -599,20 +615,20 @@
599
615
 
600
616
  ### Patch Changes
601
617
 
602
- - [`c77f4d24dee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c77f4d24dee) - [ux] Show feature discovery (pulse) on lozenge action
618
+ - [#34674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34674) [`c77f4d24dee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c77f4d24dee) - [ux] Show feature discovery (pulse) on lozenge action
603
619
 
604
620
  ## 26.5.1
605
621
 
606
622
  ### Patch Changes
607
623
 
608
- - [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing unused dependencies and dev dependencies
624
+ - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443) [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing unused dependencies and dev dependencies
609
625
  - Updated dependencies
610
626
 
611
627
  ## 26.5.0
612
628
 
613
629
  ### Minor Changes
614
630
 
615
- - [`ce79111f98f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce79111f98f) - Card component will stop throwing any uncaught errors. Any existing consumer relying on this behaviour should start using `fallbackComponent` to provide fallback ui and `onError` to act on such errors. See CardProps type for more docs.
631
+ - [#34504](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34504) [`ce79111f98f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ce79111f98f) - Card component will stop throwing any uncaught errors. Any existing consumer relying on this behaviour should start using `fallbackComponent` to provide fallback ui and `onError` to act on such errors. See CardProps type for more docs.
616
632
  Reason this is a minor bump and not a major version is because the previous behaviour of error propagation was actually a bug and was not a public contract with clients. This minor version fixes this bug and requires the client to update their code.
617
633
 
618
634
  ## 26.4.1
@@ -625,20 +641,20 @@
625
641
 
626
642
  ### Minor Changes
627
643
 
628
- - [`2b7f0f3b158`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b7f0f3b158) - [ux] Fix issue with metadata alignment of Title Block component in Confluence Web links.
644
+ - [#34415](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34415) [`2b7f0f3b158`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b7f0f3b158) - [ux] Fix issue with metadata alignment of Title Block component in Confluence Web links.
629
645
 
630
646
  ## 26.3.10
631
647
 
632
648
  ### Patch Changes
633
649
 
634
- - [`d8263ae659f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8263ae659f) - [ux] Small css fix for avatar alignment in smart links
635
- - [`438b90799c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/438b90799c4) - Removes urlHash from linking platform events.
650
+ - [#34414](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34414) [`d8263ae659f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8263ae659f) - [ux] Small css fix for avatar alignment in smart links
651
+ - [#34396](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34396) [`438b90799c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/438b90799c4) - Removes urlHash from linking platform events.
636
652
 
637
653
  ## 26.3.9
638
654
 
639
655
  ### Patch Changes
640
656
 
641
- - [`d476c6d5223`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d476c6d5223) - Add an optional err?:Error property to OnErrorCallback for upcoming changes
657
+ - [#34400](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34400) [`d476c6d5223`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d476c6d5223) - Add an optional err?:Error property to OnErrorCallback for upcoming changes
642
658
 
643
659
  ## 26.3.8
644
660
 
@@ -650,7 +666,7 @@
650
666
 
651
667
  ### Patch Changes
652
668
 
653
- - [`b270cd7542b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b270cd7542b) - Updates internal analytics for link clicked events in Smart Card and adds more attributes to link clicked event fired by LinkUrl (blue links) that are rendered in editor.
669
+ - [#34133](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34133) [`b270cd7542b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b270cd7542b) - Updates internal analytics for link clicked events in Smart Card and adds more attributes to link clicked event fired by LinkUrl (blue links) that are rendered in editor.
654
670
 
655
671
  ## 26.3.6
656
672
 
@@ -662,26 +678,26 @@
662
678
 
663
679
  ### Patch Changes
664
680
 
665
- - [`36b440f8c7f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36b440f8c7f) - Disable prop-drilling of analytics dispatch function
681
+ - [#34034](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34034) [`36b440f8c7f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36b440f8c7f) - Disable prop-drilling of analytics dispatch function
666
682
 
667
683
  ## 26.3.4
668
684
 
669
685
  ### Patch Changes
670
686
 
671
- - [`d86bc75af82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d86bc75af82) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
687
+ - [#33689](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33689) [`d86bc75af82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d86bc75af82) - Internal change to enforce token usage for spacing properties. There is no expected visual or behaviour change.
672
688
 
673
689
  ## 26.3.3
674
690
 
675
691
  ### Patch Changes
676
692
 
677
- - [`6d9a4d28d94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d9a4d28d94) - Fixes HoverCard component providing hover card analytics context to the wrapped trigger component.
693
+ - [#29598](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29598) [`6d9a4d28d94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d9a4d28d94) - Fixes HoverCard component providing hover card analytics context to the wrapped trigger component.
678
694
  - Updated dependencies
679
695
 
680
696
  ## 26.3.2
681
697
 
682
698
  ### Patch Changes
683
699
 
684
- - [`f10ed88032c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f10ed88032c) - With the renaming of Jira Roadmaps to Timeline, we are updating the regex rules to match timeline in conjunction to roadmaps
700
+ - [#33699](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33699) [`f10ed88032c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f10ed88032c) - With the renaming of Jira Roadmaps to Timeline, we are updating the regex rules to match timeline in conjunction to roadmaps
685
701
  - Updated dependencies
686
702
 
687
703
  ## 26.3.1
@@ -694,27 +710,27 @@
694
710
 
695
711
  ### Minor Changes
696
712
 
697
- - [`8406b471923`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8406b471923) - [ux] Update analytics tracking events for lozenge action
713
+ - [#33933](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33933) [`8406b471923`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8406b471923) - [ux] Update analytics tracking events for lozenge action
698
714
 
699
715
  ## 26.2.2
700
716
 
701
717
  ### Patch Changes
702
718
 
703
- - [`374da8b159a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/374da8b159a) - Include additional attributes (urlHash, display, id) and resolved attributes for link clicked analytics events (Originally introduced in 25.8.0, reverted in 25.9.1 due to regression)
704
- - [`c6d962997a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6d962997a7) - [ux] Changed the text of the button from 'Full screen view' to 'Open preview' and also changed the color of a button in the hover cards
719
+ - [#33812](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33812) [`374da8b159a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/374da8b159a) - Include additional attributes (urlHash, display, id) and resolved attributes for link clicked analytics events (Originally introduced in 25.8.0, reverted in 25.9.1 due to regression)
720
+ - [#32358](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32358) [`c6d962997a7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6d962997a7) - [ux] Changed the text of the button from 'Full screen view' to 'Open preview' and also changed the color of a button in the hover cards
705
721
  - Updated dependencies
706
722
 
707
723
  ## 26.2.1
708
724
 
709
725
  ### Patch Changes
710
726
 
711
- - [`f27eb952289`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f27eb952289) - [ux] This fixes a bug which is caused when some text including a newline is linked and clicked, which incorrectly triggers a warning.
727
+ - [#33691](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33691) [`f27eb952289`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f27eb952289) - [ux] This fixes a bug which is caused when some text including a newline is linked and clicked, which incorrectly triggers a warning.
712
728
 
713
729
  ## 26.2.0
714
730
 
715
731
  ### Minor Changes
716
732
 
717
- - [`877b4f8f7fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/877b4f8f7fc) - Remove iframe dwell tracking feature flag. Smart card embedded iframes will always track dwell events.
733
+ - [#32778](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32778) [`877b4f8f7fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/877b4f8f7fc) - Remove iframe dwell tracking feature flag. Smart card embedded iframes will always track dwell events.
718
734
 
719
735
  ### Patch Changes
720
736
 
@@ -724,57 +740,57 @@
724
740
 
725
741
  ### Patch Changes
726
742
 
727
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
743
+ - [#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
728
744
  - Updated dependencies
729
745
 
730
746
  ## 26.1.5
731
747
 
732
748
  ### Patch Changes
733
749
 
734
- - [`6fa208a0d81`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6fa208a0d81) - Fixes internal useSmartCardState to internally use useSyncExternalStore to fix bugs relating to syncronous updates to the store in the same phase that the store is subscribed to.
750
+ - [#33126](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33126) [`6fa208a0d81`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6fa208a0d81) - Fixes internal useSmartCardState to internally use useSyncExternalStore to fix bugs relating to syncronous updates to the store in the same phase that the store is subscribed to.
735
751
 
736
752
  ## 26.1.4
737
753
 
738
754
  ### Patch Changes
739
755
 
740
- - [`cee3699d4a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cee3699d4a8) - [ux] Minor style updates for a Smart Link Error Lozenge
756
+ - [#33678](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33678) [`cee3699d4a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cee3699d4a8) - [ux] Minor style updates for a Smart Link Error Lozenge
741
757
 
742
758
  ## 26.1.3
743
759
 
744
760
  ### Patch Changes
745
761
 
746
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
762
+ - [#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`
747
763
  - Updated dependencies
748
764
 
749
765
  ## 26.1.2
750
766
 
751
767
  ### Patch Changes
752
768
 
753
- - [`f50bead1f15`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f50bead1f15) - Added firing an analytics event on action lozenge error modal opening
769
+ - [#33580](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33580) [`f50bead1f15`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f50bead1f15) - Added firing an analytics event on action lozenge error modal opening
754
770
 
755
771
  ## 26.1.1
756
772
 
757
773
  ### Patch Changes
758
774
 
759
- - [`04a2ca5dffb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04a2ca5dffb) - [ux] Changed zIndex for hover card
775
+ - [#33219](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33219) [`04a2ca5dffb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04a2ca5dffb) - [ux] Changed zIndex for hover card
760
776
 
761
777
  ## 26.1.0
762
778
 
763
779
  ### Minor Changes
764
780
 
765
- - [`68562365142`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68562365142) - Add analytics for quick actions
781
+ - [#32854](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32854) [`68562365142`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68562365142) - Add analytics for quick actions
766
782
 
767
783
  ## 26.0.1
768
784
 
769
785
  ### Patch Changes
770
786
 
771
- - [`6341b726715`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6341b726715) - Fix of the request body of the invoke update request
787
+ - [#33268](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33268) [`6341b726715`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6341b726715) - Fix of the request body of the invoke update request
772
788
 
773
789
  ## 26.0.0
774
790
 
775
791
  ### Minor Changes
776
792
 
777
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
793
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
778
794
 
779
795
  ### Patch Changes
780
796
 
@@ -784,38 +800,38 @@
784
800
 
785
801
  ### Patch Changes
786
802
 
787
- - [`e241a5dda48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e241a5dda48) - Add 'keyboard' clickType for link clicked analytics events when user interacts with links using keyboard
803
+ - [#32992](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32992) [`e241a5dda48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e241a5dda48) - Add 'keyboard' clickType for link clicked analytics events when user interacts with links using keyboard
788
804
 
789
805
  ## 25.9.4
790
806
 
791
807
  ### Patch Changes
792
808
 
793
- - [`025d2c69562`](https://bitbucket.org/atlassian/atlassian-frontend/commits/025d2c69562) - [ux] Restrict maximum height on lozenge action
809
+ - [#33200](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33200) [`025d2c69562`](https://bitbucket.org/atlassian/atlassian-frontend/commits/025d2c69562) - [ux] Restrict maximum height on lozenge action
794
810
 
795
811
  ## 25.9.3
796
812
 
797
813
  ### Patch Changes
798
814
 
799
- - [`607168dad64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/607168dad64) - [ux] Update lozenge action with selected item on action success.
815
+ - [#33039](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33039) [`607168dad64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/607168dad64) - [ux] Update lozenge action with selected item on action success.
800
816
 
801
817
  ## 25.9.2
802
818
 
803
819
  ### Patch Changes
804
820
 
805
- - [`845816bac34`](https://bitbucket.org/atlassian/atlassian-frontend/commits/845816bac34) - [ux] Added a link to open preview modal on action error
821
+ - [#33035](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33035) [`845816bac34`](https://bitbucket.org/atlassian/atlassian-frontend/commits/845816bac34) - [ux] Added a link to open preview modal on action error
806
822
 
807
823
  ## 25.9.1
808
824
 
809
825
  ### Patch Changes
810
826
 
811
- - [`b76602c1619`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b76602c1619) - Revert 25.8.0 changes "Include additional attributes (urlHash, display, id) and resolved attributes for link clicked analytics events" due to regression
812
- - [`1aedc244e41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1aedc244e41) - [ux] Smart Links Internal Grey theme is now more specific to prevent Confluence override
827
+ - [#33078](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33078) [`b76602c1619`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b76602c1619) - Revert 25.8.0 changes "Include additional attributes (urlHash, display, id) and resolved attributes for link clicked analytics events" due to regression
828
+ - [#33088](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33088) [`1aedc244e41`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1aedc244e41) - [ux] Smart Links Internal Grey theme is now more specific to prevent Confluence override
813
829
 
814
830
  ## 25.9.0
815
831
 
816
832
  ### Minor Changes
817
833
 
818
- - [`7f248766888`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f248766888) - [ux] Add container names which mark the location in which the linked resource sits within. This funtionality will be used to show the container names for Trello links.
834
+ - [#32736](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32736) [`7f248766888`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f248766888) - [ux] Add container names which mark the location in which the linked resource sits within. This funtionality will be used to show the container names for Trello links.
819
835
 
820
836
  FlexUI: Reduced gap between title and subtitle in TitleBlock.
821
837
 
@@ -823,13 +839,13 @@
823
839
 
824
840
  ### Minor Changes
825
841
 
826
- - [`44b76af1d5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/44b76af1d5f) - Include additional attributes (`urlHash`, `display`, `id`) and resolved attributes for `link clicked` analytics events
842
+ - [#32497](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32497) [`44b76af1d5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/44b76af1d5f) - Include additional attributes (`urlHash`, `display`, `id`) and resolved attributes for `link clicked` analytics events
827
843
 
828
844
  ## 25.7.3
829
845
 
830
846
  ### Patch Changes
831
847
 
832
- - [`878dc4e5239`](https://bitbucket.org/atlassian/atlassian-frontend/commits/878dc4e5239) - Enable lozenge action by using showServerActions opt-in OR using feature flag useLozengeAction for experiment
848
+ - [#32914](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32914) [`878dc4e5239`](https://bitbucket.org/atlassian/atlassian-frontend/commits/878dc4e5239) - Enable lozenge action by using showServerActions opt-in OR using feature flag useLozengeAction for experiment
833
849
 
834
850
  ## 25.7.2
835
851
 
@@ -841,14 +857,14 @@
841
857
 
842
858
  ### Patch Changes
843
859
 
844
- - [`7a58d99e333`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a58d99e333) - [ux] Added error handling for smart link action
860
+ - [#32589](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32589) [`7a58d99e333`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a58d99e333) - [ux] Added error handling for smart link action
845
861
  - Updated dependencies
846
862
 
847
863
  ## 25.7.0
848
864
 
849
865
  ### Minor Changes
850
866
 
851
- - [`9c49eef4c87`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c49eef4c87) - [ux]
867
+ - [#32793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32793) [`9c49eef4c87`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c49eef4c87) - [ux]
852
868
 
853
869
  - Add lozenge action to hover preview (wip, opt-in, feature flag)
854
870
  - Fix hover preview's action dropdown menu showing behind container
@@ -858,13 +874,13 @@
858
874
 
859
875
  ### Patch Changes
860
876
 
861
- - [`72a99128d3e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72a99128d3e) - Enables CardSSR component to send analytics events.
877
+ - [#32743](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32743) [`72a99128d3e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/72a99128d3e) - Enables CardSSR component to send analytics events.
862
878
 
863
879
  ## 25.6.0
864
880
 
865
881
  ### Minor Changes
866
882
 
867
- - [`eceb32a564f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eceb32a564f) - [ux] This adds a new Flexible UI attribute, `OwnedBy`, which represents who owns a resource.
883
+ - [#32541](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32541) [`eceb32a564f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eceb32a564f) - [ux] This adds a new Flexible UI attribute, `OwnedBy`, which represents who owns a resource.
868
884
 
869
885
  ### Patch Changes
870
886
 
@@ -874,7 +890,7 @@
874
890
 
875
891
  ### Patch Changes
876
892
 
877
- - [`4c046475c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c046475c1b) - Fix LinkUrl component: it should not show warning for many cases when it does right now (like relative path comparasion)
893
+ - [#32330](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32330) [`4c046475c1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c046475c1b) - Fix LinkUrl component: it should not show warning for many cases when it does right now (like relative path comparasion)
878
894
 
879
895
  ## 25.5.6
880
896
 
@@ -886,44 +902,44 @@
886
902
 
887
903
  ### Patch Changes
888
904
 
889
- - [`4b396e5d7eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b396e5d7eb) - [ux] Add lozenge action to block card (wip, opt-in, feature flag)
905
+ - [#32537](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32537) [`4b396e5d7eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b396e5d7eb) - [ux] Add lozenge action to block card (wip, opt-in, feature flag)
890
906
 
891
907
  ## 25.5.4
892
908
 
893
909
  ### Patch Changes
894
910
 
895
- - [`19622f395b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19622f395b0) - Connect `showServerActions` prop to flexible smart links, surfacing the lozenge dropdown action behind feature flag.
911
+ - [#32465](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32465) [`19622f395b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19622f395b0) - Connect `showServerActions` prop to flexible smart links, surfacing the lozenge dropdown action behind feature flag.
896
912
 
897
913
  ## 25.5.3
898
914
 
899
915
  ### Patch Changes
900
916
 
901
- - [`da5d5b2dbef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da5d5b2dbef) - Fire link clicked analytics event for LinkUrl component
917
+ - [#32235](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32235) [`da5d5b2dbef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/da5d5b2dbef) - Fire link clicked analytics event for LinkUrl component
902
918
 
903
919
  ## 25.5.2
904
920
 
905
921
  ### Patch Changes
906
922
 
907
- - [`c2aab8ee44b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2aab8ee44b) - Add lozenge dropdown action to Flexible Smart Link based element lozenge
923
+ - [#32447](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32447) [`c2aab8ee44b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2aab8ee44b) - Add lozenge dropdown action to Flexible Smart Link based element lozenge
908
924
 
909
925
  ## 25.5.1
910
926
 
911
927
  ### Patch Changes
912
928
 
913
- - [`bcc645691c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bcc645691c5) - Add lozenge action feature flag and extract server action for state lozenge from JSON-LD response
929
+ - [#32442](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32442) [`bcc645691c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bcc645691c5) - Add lozenge action feature flag and extract server action for state lozenge from JSON-LD response
914
930
  - Updated dependencies
915
931
 
916
932
  ## 25.5.0
917
933
 
918
934
  ### Minor Changes
919
935
 
920
- - [`5329942b8aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5329942b8aa) - Deprecates analyticsHandler argument of useSmartLinkActions and useSmartLinkReload hooks.
936
+ - [#32389](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32389) [`5329942b8aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5329942b8aa) - Deprecates analyticsHandler argument of useSmartLinkActions and useSmartLinkReload hooks.
921
937
 
922
938
  ## 25.4.4
923
939
 
924
940
  ### Patch Changes
925
941
 
926
- - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
942
+ - [#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
927
943
  - Updated dependencies
928
944
 
929
945
  ## 25.4.3
@@ -936,71 +952,71 @@
936
952
 
937
953
  ### Patch Changes
938
954
 
939
- - [`1d38688106e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d38688106e) - [ux] Moved out the implementation of the resolve function from useSmartCardActions into a separate internal hook useResolve. Added reload functionality for LozengeAction on a successful update
940
- - [`0ee9370595a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ee9370595a) - Update json-ld-types
955
+ - [#32236](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32236) [`1d38688106e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d38688106e) - [ux] Moved out the implementation of the resolve function from useSmartCardActions into a separate internal hook useResolve. Added reload functionality for LozengeAction on a successful update
956
+ - [#32360](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32360) [`0ee9370595a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ee9370595a) - Update json-ld-types
941
957
  - Updated dependencies
942
958
 
943
959
  ## 25.4.1
944
960
 
945
961
  ### Patch Changes
946
962
 
947
- - [`ae2cba07a9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae2cba07a9a) - Removes prevented as a clickOutcome analytics attribute value and adds defaultPrevented as a replacement attribute.
963
+ - [#32105](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32105) [`ae2cba07a9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae2cba07a9a) - Removes prevented as a clickOutcome analytics attribute value and adds defaultPrevented as a replacement attribute.
948
964
 
949
965
  ## 25.4.0
950
966
 
951
967
  ### Minor Changes
952
968
 
953
- - [`65b0490a5dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65b0490a5dc) - Deprecates the export of useSmartLinkAnalytics hook and analyticsEvents prop.
969
+ - [#32152](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32152) [`65b0490a5dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65b0490a5dc) - Deprecates the export of useSmartLinkAnalytics hook and analyticsEvents prop.
954
970
 
955
971
  ## 25.3.3
956
972
 
957
973
  ### Patch Changes
958
974
 
959
- - [`b57c925587f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b57c925587f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
975
+ - [#32170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32170) [`b57c925587f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b57c925587f) - Migrated use of `gridSize` to space tokens where possible. There is no expected visual or behaviour change.
960
976
 
961
977
  ## 25.3.2
962
978
 
963
979
  ### Patch Changes
964
980
 
965
- - [`fab186f135b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fab186f135b) - Add load and update functionality to lozenge action
981
+ - [#31900](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31900) [`fab186f135b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fab186f135b) - Add load and update functionality to lozenge action
966
982
  - Updated dependencies
967
983
 
968
984
  ## 25.3.1
969
985
 
970
986
  ### Patch Changes
971
987
 
972
- - [`fa2fb550e4b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa2fb550e4b) - [ux] This makes Flexible Block Cards have the same onClick behaviour as the older block card, where the passed in onClick behaviour will cause the Smart Card to use `e.preventDefault()`.
988
+ - [#31924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31924) [`fa2fb550e4b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa2fb550e4b) - [ux] This makes Flexible Block Cards have the same onClick behaviour as the older block card, where the passed in onClick behaviour will cause the Smart Card to use `e.preventDefault()`.
973
989
 
974
990
  ## 25.3.0
975
991
 
976
992
  ### Minor Changes
977
993
 
978
- - [`4a1604ce132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a1604ce132) - Adds a new themeMode query param to preview links url from 1P integrators that support different theme modes.
994
+ - [#31910](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31910) [`4a1604ce132`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4a1604ce132) - Adds a new themeMode query param to preview links url from 1P integrators that support different theme modes.
979
995
 
980
996
  ## 25.2.1
981
997
 
982
998
  ### Patch Changes
983
999
 
984
- - [`03394282a26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/03394282a26) - The change migrates `Shimmer` component to use the `Skeleton` component from the common package
1000
+ - [#31717](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31717) [`03394282a26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/03394282a26) - The change migrates `Shimmer` component to use the `Skeleton` component from the common package
985
1001
  - Updated dependencies
986
1002
 
987
1003
  ## 25.2.0
988
1004
 
989
1005
  ### Minor Changes
990
1006
 
991
- - [`aeaf58d2384`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeaf58d2384) - Change adds a new prop on Smart Card `embedIframeUrlType` which allows a user of a Smart Card with the `embed` appearance to specify whether the Smart Card embed should use `href` or `interactiveHref` in the JSON-LD response.
1007
+ - [#31601](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31601) [`aeaf58d2384`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeaf58d2384) - Change adds a new prop on Smart Card `embedIframeUrlType` which allows a user of a Smart Card with the `embed` appearance to specify whether the Smart Card embed should use `href` or `interactiveHref` in the JSON-LD response.
992
1008
 
993
1009
  ## 25.1.1
994
1010
 
995
1011
  ### Patch Changes
996
1012
 
997
- - [`a3b9ef40d09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a3b9ef40d09) - [ux] Adds white-space style to FlexUI text element
1013
+ - [#31690](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31690) [`a3b9ef40d09`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a3b9ef40d09) - [ux] Adds white-space style to FlexUI text element
998
1014
 
999
1015
  ## 25.1.0
1000
1016
 
1001
1017
  ### Minor Changes
1002
1018
 
1003
- - [`b811f263575`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b811f263575) - Add new "showServerActions" prop to SmartCard to show available server actions on inline and block Smart Links. This will be used in conjunction with feature flags on the duration of the experiment.
1019
+ - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299) [`b811f263575`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b811f263575) - Add new "showServerActions" prop to SmartCard to show available server actions on inline and block Smart Links. This will be used in conjunction with feature flags on the duration of the experiment.
1004
1020
 
1005
1021
  ### Patch Changes
1006
1022
 
@@ -1011,14 +1027,14 @@
1011
1027
 
1012
1028
  ### Patch Changes
1013
1029
 
1014
- - [`0af4a6b6426`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0af4a6b6426) - Dependency update json-ld-types@3.4.0
1030
+ - [#31388](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31388) [`0af4a6b6426`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0af4a6b6426) - Dependency update json-ld-types@3.4.0
1015
1031
  - Updated dependencies
1016
1032
 
1017
1033
  ## 25.0.6
1018
1034
 
1019
1035
  ### Patch Changes
1020
1036
 
1021
- - [`c85ee838eae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c85ee838eae) - [ux] Added analytics event 'appAccount authStarted' for inline smart card
1037
+ - [#31243](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31243) [`c85ee838eae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c85ee838eae) - [ux] Added analytics event 'appAccount authStarted' for inline smart card
1022
1038
 
1023
1039
  ## 25.0.5
1024
1040
 
@@ -1030,25 +1046,25 @@
1030
1046
 
1031
1047
  ### Patch Changes
1032
1048
 
1033
- - [`de8c6e88424`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de8c6e88424) - flexible block card metadata all left aligned
1049
+ - [#31038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31038) [`de8c6e88424`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de8c6e88424) - flexible block card metadata all left aligned
1034
1050
 
1035
1051
  ## 25.0.3
1036
1052
 
1037
1053
  ### Patch Changes
1038
1054
 
1039
- - [`7ae310c744a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ae310c744a) - [ux] Updated Flex UI CollaboratorGroup extractor to return list of collaborators
1055
+ - [#30722](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30722) [`7ae310c744a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7ae310c744a) - [ux] Updated Flex UI CollaboratorGroup extractor to return list of collaborators
1040
1056
 
1041
1057
  ## 25.0.2
1042
1058
 
1043
1059
  ### Patch Changes
1044
1060
 
1045
- - [`14363bff579`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14363bff579) - Formatting change for i18n translations
1061
+ - [#30583](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30583) [`14363bff579`](https://bitbucket.org/atlassian/atlassian-frontend/commits/14363bff579) - Formatting change for i18n translations
1046
1062
 
1047
1063
  ## 25.0.1
1048
1064
 
1049
1065
  ### Patch Changes
1050
1066
 
1051
- - [`c687cc0de52`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c687cc0de52) - Add lozenge action component (WIP)
1067
+ - [#30863](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30863) [`c687cc0de52`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c687cc0de52) - Add lozenge action component (WIP)
1052
1068
 
1053
1069
  ## 25.0.0
1054
1070
 
@@ -1060,26 +1076,26 @@
1060
1076
 
1061
1077
  ### Patch Changes
1062
1078
 
1063
- - [`12223b3ee04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12223b3ee04) - Move EditorCardProvider to new package instead of using imports from Link Provider and Smart Card
1079
+ - [#30266](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30266) [`12223b3ee04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12223b3ee04) - Move EditorCardProvider to new package instead of using imports from Link Provider and Smart Card
1064
1080
  - Updated dependencies
1065
1081
 
1066
1082
  ## 24.3.1
1067
1083
 
1068
1084
  ### Patch Changes
1069
1085
 
1070
- - [`d0c67f1cc2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0c67f1cc2b) - Prettier-ignore added to i18n translations
1086
+ - [#30237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30237) [`d0c67f1cc2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0c67f1cc2b) - Prettier-ignore added to i18n translations
1071
1087
 
1072
1088
  ## 24.3.0
1073
1089
 
1074
1090
  ### Minor Changes
1075
1091
 
1076
- - [`9f903aa9c4e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f903aa9c4e) - Fixes rethrow logic in flex ui to not rely on reference to APIError constructor.
1092
+ - [#30188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30188) [`9f903aa9c4e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f903aa9c4e) - Fixes rethrow logic in flex ui to not rely on reference to APIError constructor.
1077
1093
 
1078
1094
  ## 24.2.0
1079
1095
 
1080
1096
  ### Minor Changes
1081
1097
 
1082
- - [`ef5f28bfbcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef5f28bfbcb) - [ux] Support to hide the full screen view button in hover previews was added. A new prop 'hideHoverCardPreviewButton' was added to FlexibleUiOptions which allows for not showing the button in the hover preview shown on flexui cards. A new prop was also added to standlone hover card called 'hidePreviewButton' which allows for removing the same button when directly consuming hover card.
1098
+ - [#30067](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30067) [`ef5f28bfbcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef5f28bfbcb) - [ux] Support to hide the full screen view button in hover previews was added. A new prop 'hideHoverCardPreviewButton' was added to FlexibleUiOptions which allows for not showing the button in the hover preview shown on flexui cards. A new prop was also added to standlone hover card called 'hidePreviewButton' which allows for removing the same button when directly consuming hover card.
1083
1099
 
1084
1100
  ## 24.1.3
1085
1101
 
@@ -1097,31 +1113,31 @@
1097
1113
 
1098
1114
  ### Patch Changes
1099
1115
 
1100
- - [`ffa4b8db98b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffa4b8db98b) - Bugfix: Hide a vertical scroll bar for a flex UI card in case it's a clickable container and has one line title with no paddings
1116
+ - [#29932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29932) [`ffa4b8db98b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffa4b8db98b) - Bugfix: Hide a vertical scroll bar for a flex UI card in case it's a clickable container and has one line title with no paddings
1101
1117
 
1102
1118
  ## 24.1.0
1103
1119
 
1104
1120
  ### Minor Changes
1105
1121
 
1106
- - [`2d2bfdfb0eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d2bfdfb0eb) - [ux] A support for borderless embed was added. A new prop 'frameStyle' was added which allows user to choose one of three styles: 'show', 'hide', 'showOnHover'. The prop isFrameVisible was made deprecated and replaced by the new prop.
1122
+ - [#29331](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29331) [`2d2bfdfb0eb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d2bfdfb0eb) - [ux] A support for borderless embed was added. A new prop 'frameStyle' was added which allows user to choose one of three styles: 'show', 'hide', 'showOnHover'. The prop isFrameVisible was made deprecated and replaced by the new prop.
1107
1123
 
1108
1124
  ## 24.0.3
1109
1125
 
1110
1126
  ### Patch Changes
1111
1127
 
1112
- - [`9e7d94da3cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e7d94da3cd) - [ux] Fix hover preview background colour in dark mode
1128
+ - [#29605](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29605) [`9e7d94da3cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e7d94da3cd) - [ux] Fix hover preview background colour in dark mode
1113
1129
 
1114
1130
  ## 24.0.2
1115
1131
 
1116
1132
  ### Patch Changes
1117
1133
 
1118
- - [`134bac37edc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/134bac37edc) - [ux] Adds the ChecklistProgress element to Flexible Block View's secondary section
1134
+ - [#29464](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29464) [`134bac37edc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/134bac37edc) - [ux] Adds the ChecklistProgress element to Flexible Block View's secondary section
1119
1135
 
1120
1136
  ## 24.0.1
1121
1137
 
1122
1138
  ### Patch Changes
1123
1139
 
1124
- - [`4661d4f7f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4661d4f7f7b) - Add `link clicked` UI event to Smart Card.
1140
+ - [#29067](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29067) [`4661d4f7f7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4661d4f7f7b) - Add `link clicked` UI event to Smart Card.
1125
1141
  - Updated dependencies
1126
1142
 
1127
1143
  ## 24.0.0
@@ -1140,13 +1156,13 @@
1140
1156
 
1141
1157
  ### Patch Changes
1142
1158
 
1143
- - [`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.
1159
+ - [#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.
1144
1160
 
1145
1161
  ## 23.14.0
1146
1162
 
1147
1163
  ### Minor Changes
1148
1164
 
1149
- - [`eb2e7a0e762`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb2e7a0e762) - Add new "showAuthTooltip" prop to SmartCard which shows Auth Tooltip on unauthorised inline Smart Links. This allows us to remove product feature flags in the future
1165
+ - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932) [`eb2e7a0e762`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb2e7a0e762) - Add new "showAuthTooltip" prop to SmartCard which shows Auth Tooltip on unauthorised inline Smart Links. This allows us to remove product feature flags in the future
1150
1166
 
1151
1167
  ### Patch Changes
1152
1168
 
@@ -1156,31 +1172,31 @@
1156
1172
 
1157
1173
  ### Patch Changes
1158
1174
 
1159
- - [`e5b8a41f4da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5b8a41f4da) - Hover Preview: Reduce hover content re-rendering
1175
+ - [#29265](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29265) [`e5b8a41f4da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5b8a41f4da) - Hover Preview: Reduce hover content re-rendering
1160
1176
 
1161
1177
  ## 23.13.2
1162
1178
 
1163
1179
  ### Patch Changes
1164
1180
 
1165
- - [`465e0f001fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/465e0f001fb) - Operational analytics event added to the LinkUrl component. It fires when Link Safety Warning message shown.
1181
+ - [#29088](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29088) [`465e0f001fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/465e0f001fb) - Operational analytics event added to the LinkUrl component. It fires when Link Safety Warning message shown.
1166
1182
 
1167
1183
  ## 23.13.1
1168
1184
 
1169
1185
  ### Patch Changes
1170
1186
 
1171
- - [`02d341ecf63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02d341ecf63) - [ux] Fix copy button tooltip to show Copy link, not Download
1187
+ - [#29018](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29018) [`02d341ecf63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02d341ecf63) - [ux] Fix copy button tooltip to show Copy link, not Download
1172
1188
 
1173
1189
  ## 23.13.0
1174
1190
 
1175
1191
  ### Minor Changes
1176
1192
 
1177
- - [`67cfd8e13d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67cfd8e13d0) - LinkUrl component with built-in link safety check added
1193
+ - [#28707](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28707) [`67cfd8e13d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67cfd8e13d0) - LinkUrl component with built-in link safety check added
1178
1194
 
1179
1195
  ## 23.12.3
1180
1196
 
1181
1197
  ### Patch Changes
1182
1198
 
1183
- - [`27b8d8e0b4b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/27b8d8e0b4b) - [ux] This adds tooltip messages to custom Flexible UI actions.
1199
+ - [#28632](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28632) [`27b8d8e0b4b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/27b8d8e0b4b) - [ux] This adds tooltip messages to custom Flexible UI actions.
1184
1200
  Now, when hovering over custom actions, the "content" prop will be displayed in the tooltip.
1185
1201
  This also affects hover preview actions, which now show the tooltip message when hovering over actions inside of the hover preview card.
1186
1202
 
@@ -1190,19 +1206,19 @@
1190
1206
 
1191
1207
  ### Patch Changes
1192
1208
 
1193
- - [`2c80995745e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c80995745e) - Embed Preview Modal: Fix title alignment causing by global override (margin-bottom)
1209
+ - [#28778](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28778) [`2c80995745e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c80995745e) - Embed Preview Modal: Fix title alignment causing by global override (margin-bottom)
1194
1210
 
1195
1211
  ## 23.12.1
1196
1212
 
1197
1213
  ### Patch Changes
1198
1214
 
1199
- - [`59104c1e92f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/59104c1e92f) - [ux] Fix message shown in unauthorised Smart Link appearances as per design decision
1215
+ - [#28533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28533) [`59104c1e92f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/59104c1e92f) - [ux] Fix message shown in unauthorised Smart Link appearances as per design decision
1200
1216
 
1201
1217
  ## 23.12.0
1202
1218
 
1203
1219
  ### Minor Changes
1204
1220
 
1205
- - [`d5a9fd04c02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5a9fd04c02) - Analytics to track dwell time and focus on smart links embedded iframes
1221
+ - [#27632](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27632) [`d5a9fd04c02`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d5a9fd04c02) - Analytics to track dwell time and focus on smart links embedded iframes
1206
1222
 
1207
1223
  ### Patch Changes
1208
1224
 
@@ -1212,49 +1228,49 @@
1212
1228
 
1213
1229
  ### Patch Changes
1214
1230
 
1215
- - [`08ef315c46d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08ef315c46d) - [ux] Add a copy url button to hover cards.
1231
+ - [#28455](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28455) [`08ef315c46d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08ef315c46d) - [ux] Add a copy url button to hover cards.
1216
1232
 
1217
1233
  ## 23.11.2
1218
1234
 
1219
1235
  ### Patch Changes
1220
1236
 
1221
- - [`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.
1237
+ - [#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.
1222
1238
 
1223
1239
  ## 23.11.1
1224
1240
 
1225
1241
  ### Patch Changes
1226
1242
 
1227
- - [`44f83adace3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/44f83adace3) - Add documentation for the standalone hover cards on atlaskit.
1243
+ - [#28316](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28316) [`44f83adace3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/44f83adace3) - Add documentation for the standalone hover cards on atlaskit.
1228
1244
 
1229
1245
  ## 23.11.0
1230
1246
 
1231
1247
  ### Minor Changes
1232
1248
 
1233
- - [`32aa136af5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32aa136af5c) - Hover Preview: Add actionable element experiment reload analytics
1249
+ - [#28266](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28266) [`32aa136af5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32aa136af5c) - Hover Preview: Add actionable element experiment reload analytics
1234
1250
 
1235
1251
  ## 23.10.3
1236
1252
 
1237
1253
  ### Patch Changes
1238
1254
 
1239
- - [`bca078a37af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bca078a37af) - Bump to @emotion v11
1255
+ - [#27705](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27705) [`bca078a37af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bca078a37af) - Bump to @emotion v11
1240
1256
 
1241
1257
  ## 23.10.2
1242
1258
 
1243
1259
  ### Patch Changes
1244
1260
 
1245
- - [`cb819660949`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb819660949) - [ux] Add a lonzenge to restricted links.
1261
+ - [#28181](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28181) [`cb819660949`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb819660949) - [ux] Add a lonzenge to restricted links.
1246
1262
 
1247
1263
  ## 23.10.1
1248
1264
 
1249
1265
  ### Patch Changes
1250
1266
 
1251
- - [`d88eda329c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d88eda329c1) - seperate chunk load errors into it's own analytics event and do retries when lazy loading smartcard-urlcardcontent fails
1267
+ - [#28125](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28125) [`d88eda329c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d88eda329c1) - seperate chunk load errors into it's own analytics event and do retries when lazy loading smartcard-urlcardcontent fails
1252
1268
 
1253
1269
  ## 23.10.0
1254
1270
 
1255
1271
  ### Minor Changes
1256
1272
 
1257
- - [`aa44d74bf40`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa44d74bf40) - Expose a new entry point to hover cards at @atlaskit/smart-card/hover-card
1273
+ - [#27837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27837) [`aa44d74bf40`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa44d74bf40) - Expose a new entry point to hover cards at @atlaskit/smart-card/hover-card
1258
1274
 
1259
1275
  ## 23.9.3
1260
1276
 
@@ -1272,103 +1288,103 @@
1272
1288
 
1273
1289
  ### Patch Changes
1274
1290
 
1275
- - [`484be3ed430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/484be3ed430) - This adds onResolve back to Flexible Block Card
1291
+ - [#27699](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27699) [`484be3ed430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/484be3ed430) - This adds onResolve back to Flexible Block Card
1276
1292
 
1277
1293
  ## 23.9.0
1278
1294
 
1279
1295
  ### Minor Changes
1280
1296
 
1281
- - [`5c7c532de88`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c7c532de88) - [ux] Add showHoverPreview as a ui parameter to allow hover cards on flex ui links.
1297
+ - [#27455](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27455) [`5c7c532de88`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5c7c532de88) - [ux] Add showHoverPreview as a ui parameter to allow hover cards on flex ui links.
1282
1298
 
1283
1299
  ## 23.8.2
1284
1300
 
1285
1301
  ### Patch Changes
1286
1302
 
1287
- - [`f3aa608f0ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3aa608f0ba) - Update i18n translations from Traduki
1303
+ - [#28114](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28114) [`f3aa608f0ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3aa608f0ba) - Update i18n translations from Traduki
1288
1304
 
1289
1305
  ## 23.8.1
1290
1306
 
1291
1307
  ### Patch Changes
1292
1308
 
1293
- - [`af251caa485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af251caa485) - Push div from hoverCardComponent into hoverCardContent to allow conditional rendering from inside hoverCardContent.
1309
+ - [#27983](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27983) [`af251caa485`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af251caa485) - Push div from hoverCardComponent into hoverCardContent to allow conditional rendering from inside hoverCardContent.
1294
1310
 
1295
1311
  ## 23.8.0
1296
1312
 
1297
1313
  ### Minor Changes
1298
1314
 
1299
- - [`d739aa7120c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d739aa7120c) - [ux] Analytics is added for Unauthorised view of Hover Card & to Unauthorised view of an Embed card & to Unauthorised view of a Block Card
1315
+ - [#27580](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27580) [`d739aa7120c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d739aa7120c) - [ux] Analytics is added for Unauthorised view of Hover Card & to Unauthorised view of an Embed card & to Unauthorised view of a Block Card
1300
1316
 
1301
1317
  ## 23.7.3
1302
1318
 
1303
1319
  ### Patch Changes
1304
1320
 
1305
- - [`b795ce86cf7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b795ce86cf7) - split single underline into two for unauthorized inline smart links
1321
+ - [#27562](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27562) [`b795ce86cf7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b795ce86cf7) - split single underline into two for unauthorized inline smart links
1306
1322
 
1307
1323
  ## 23.7.2
1308
1324
 
1309
1325
  ### Patch Changes
1310
1326
 
1311
- - [`ee1c940ea18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee1c940ea18) - Update unauth message across all Smart Card appearances
1327
+ - [#27720](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27720) [`ee1c940ea18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee1c940ea18) - Update unauth message across all Smart Card appearances
1312
1328
 
1313
1329
  ## 23.7.1
1314
1330
 
1315
1331
  ### Patch Changes
1316
1332
 
1317
- - [`33e0b942925`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33e0b942925) - [ux] Flexible Card: Update unauthorised view text messages and connect button
1333
+ - [#27669](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27669) [`33e0b942925`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33e0b942925) - [ux] Flexible Card: Update unauthorised view text messages and connect button
1318
1334
 
1319
1335
  ## 23.7.0
1320
1336
 
1321
1337
  ### Minor Changes
1322
1338
 
1323
- - [`3cae92db2b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cae92db2b6) - [ux] Introduces ChecklistProgress element, adds to Trello Hover Cards
1339
+ - [#26872](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26872) [`3cae92db2b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3cae92db2b6) - [ux] Introduces ChecklistProgress element, adds to Trello Hover Cards
1324
1340
 
1325
1341
  ## 23.6.7
1326
1342
 
1327
1343
  ### Patch Changes
1328
1344
 
1329
- - [`9110a0daf0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9110a0daf0e) - [ux] Added support of different forbidden views for Block Card with Flexible UI
1345
+ - [#27628](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27628) [`9110a0daf0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9110a0daf0e) - [ux] Added support of different forbidden views for Block Card with Flexible UI
1330
1346
 
1331
1347
  ## 23.6.6
1332
1348
 
1333
1349
  ### Patch Changes
1334
1350
 
1335
- - [`b86cebed4a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b86cebed4a3) - Hover Preview: Update actionable element hover state
1351
+ - [#27655](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27655) [`b86cebed4a3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b86cebed4a3) - Hover Preview: Update actionable element hover state
1336
1352
 
1337
1353
  ## 23.6.5
1338
1354
 
1339
1355
  ### Patch Changes
1340
1356
 
1341
- - [`0540b6c16a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0540b6c16a4) - Hover Preview: Update action experiment analytics
1357
+ - [#27593](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27593) [`0540b6c16a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0540b6c16a4) - Hover Preview: Update action experiment analytics
1342
1358
 
1343
1359
  ## 23.6.4
1344
1360
 
1345
1361
  ### Patch Changes
1346
1362
 
1347
- - [`e402b41fc94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e402b41fc94) - [ux] This change removes the icons on flexible block card actions, and also adds analytics for each of the flexible block card actions to maintain parity with the older block card.
1363
+ - [#27514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27514) [`e402b41fc94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e402b41fc94) - [ux] This change removes the icons on flexible block card actions, and also adds analytics for each of the flexible block card actions to maintain parity with the older block card.
1348
1364
 
1349
1365
  ## 23.6.3
1350
1366
 
1351
1367
  ### Patch Changes
1352
1368
 
1353
- - [`b3c2a297df4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3c2a297df4) - Hover Preview: Actionable element experiment: Reload link after embed view modal is closed
1369
+ - [#27547](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27547) [`b3c2a297df4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3c2a297df4) - Hover Preview: Actionable element experiment: Reload link after embed view modal is closed
1354
1370
 
1355
1371
  ## 23.6.2
1356
1372
 
1357
1373
  ### Patch Changes
1358
1374
 
1359
- - [`ac756b23886`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac756b23886) - Added tooltip for open link in new tab button in hover card
1375
+ - [#27559](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27559) [`ac756b23886`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac756b23886) - Added tooltip for open link in new tab button in hover card
1360
1376
 
1361
1377
  ## 23.6.1
1362
1378
 
1363
1379
  ### Patch Changes
1364
1380
 
1365
- - [`55429f504d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55429f504d6) - [ux] Change the 'Preview' button text to 'Full screen view' with a matching icon
1381
+ - [#27206](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27206) [`55429f504d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55429f504d6) - [ux] Change the 'Preview' button text to 'Full screen view' with a matching icon
1366
1382
 
1367
1383
  ## 23.6.0
1368
1384
 
1369
1385
  ### Minor Changes
1370
1386
 
1371
- - [`3626f0cc5c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3626f0cc5c0) - [ux] An unauthorised view was implemented for Hover Card. It will show up if the link is in 'unauthorized' state and it will offer a way for a user to connect their account.
1387
+ - [#27416](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27416) [`3626f0cc5c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3626f0cc5c0) - [ux] An unauthorised view was implemented for Hover Card. It will show up if the link is in 'unauthorized' state and it will offer a way for a user to connect their account.
1372
1388
 
1373
1389
  ### Patch Changes
1374
1390
 
@@ -1378,21 +1394,21 @@
1378
1394
 
1379
1395
  ### Patch Changes
1380
1396
 
1381
- - [`0b8bfb1a2d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b8bfb1a2d9) - Force http call (and not use cache) when reload action is called
1397
+ - [#27328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27328) [`0b8bfb1a2d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b8bfb1a2d9) - Force http call (and not use cache) when reload action is called
1382
1398
  - Updated dependencies
1383
1399
 
1384
1400
  ## 23.5.1
1385
1401
 
1386
1402
  ### Patch Changes
1387
1403
 
1388
- - [`1070e536838`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1070e536838) - [ux] Hover Preview: Add experiment for actionable element
1404
+ - [#27236](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27236) [`1070e536838`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1070e536838) - [ux] Hover Preview: Add experiment for actionable element
1389
1405
  - Updated dependencies
1390
1406
 
1391
1407
  ## 23.5.0
1392
1408
 
1393
1409
  ### Minor Changes
1394
1410
 
1395
- - [`9dd3377f9bb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dd3377f9bb) - [ux] This adds support for the new Flexible UI Block Card, added behind a feature flag "useFlexibleBlockCard"
1411
+ - [#27193](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27193) [`9dd3377f9bb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dd3377f9bb) - [ux] This adds support for the new Flexible UI Block Card, added behind a feature flag "useFlexibleBlockCard"
1396
1412
 
1397
1413
  ### Patch Changes
1398
1414
 
@@ -1402,7 +1418,7 @@
1402
1418
 
1403
1419
  ### Patch Changes
1404
1420
 
1405
- - [`ca2b5b1a999`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca2b5b1a999) - [ux] fix Safari opening downloads in the same tab
1421
+ - [#27196](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27196) [`ca2b5b1a999`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca2b5b1a999) - [ux] fix Safari opening downloads in the same tab
1406
1422
 
1407
1423
  ## 23.4.7
1408
1424
 
@@ -1414,44 +1430,44 @@
1414
1430
 
1415
1431
  ### Patch Changes
1416
1432
 
1417
- - [`efa366b6ed6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa366b6ed6) - Upgrade json-ld-types from 3.1.0 to 3.2.0
1433
+ - [#27073](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27073) [`efa366b6ed6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efa366b6ed6) - Upgrade json-ld-types from 3.1.0 to 3.2.0
1418
1434
  - Updated dependencies
1419
1435
 
1420
1436
  ## 23.4.5
1421
1437
 
1422
1438
  ### Patch Changes
1423
1439
 
1424
- - [`d2d705badea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2d705badea) - [ux] Small fix for the Footer Block that will be used in unresolved states of Block Card with Flexible UI.
1440
+ - [#27237](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27237) [`d2d705badea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2d705badea) - [ux] Small fix for the Footer Block that will be used in unresolved states of Block Card with Flexible UI.
1425
1441
 
1426
1442
  ## 23.4.4
1427
1443
 
1428
1444
  ### Patch Changes
1429
1445
 
1430
- - [`655a52b4c06`](https://bitbucket.org/atlassian/atlassian-frontend/commits/655a52b4c06) - [ux] Update Flex-UI unauthorised views to include provider name
1446
+ - [#27141](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27141) [`655a52b4c06`](https://bitbucket.org/atlassian/atlassian-frontend/commits/655a52b4c06) - [ux] Update Flex-UI unauthorised views to include provider name
1431
1447
 
1432
1448
  ## 23.4.3
1433
1449
 
1434
1450
  ### Patch Changes
1435
1451
 
1436
- - [`85de18a2d79`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85de18a2d79) - [ux] Enable text wrapping in contents of unresolved views and allow scrolling in when embed size is small.
1452
+ - [#27191](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27191) [`85de18a2d79`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85de18a2d79) - [ux] Enable text wrapping in contents of unresolved views and allow scrolling in when embed size is small.
1437
1453
 
1438
1454
  ## 23.4.2
1439
1455
 
1440
1456
  ### Patch Changes
1441
1457
 
1442
- - [`306c81c6551`](https://bitbucket.org/atlassian/atlassian-frontend/commits/306c81c6551) - [ux] Added unresolved views for a Flexible Block card. At the moment these views are not exposed, but they will be used when a Block Card is replaced with Flexible UI.
1458
+ - [#27081](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27081) [`306c81c6551`](https://bitbucket.org/atlassian/atlassian-frontend/commits/306c81c6551) - [ux] Added unresolved views for a Flexible Block card. At the moment these views are not exposed, but they will be used when a Block Card is replaced with Flexible UI.
1443
1459
 
1444
1460
  ## 23.4.1
1445
1461
 
1446
1462
  ### Patch Changes
1447
1463
 
1448
- - [`9dd78d9e76e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dd78d9e76e) - [ux] Update button text on inline card unauthorised view to include provider name
1464
+ - [#26884](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26884) [`9dd78d9e76e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9dd78d9e76e) - [ux] Update button text on inline card unauthorised view to include provider name
1449
1465
 
1450
1466
  ## 23.4.0
1451
1467
 
1452
1468
  ### Minor Changes
1453
1469
 
1454
- - [`a86403e5e0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a86403e5e0e) - [ux] This PR adds more actions for use in Flexible UI Smart Links. These are PreviewAction, ViewAction and DownloadAction, and correspond to their Block card counterparts.
1470
+ - [#26746](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26746) [`a86403e5e0e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a86403e5e0e) - [ux] This PR adds more actions for use in Flexible UI Smart Links. These are PreviewAction, ViewAction and DownloadAction, and correspond to their Block card counterparts.
1455
1471
 
1456
1472
  These, unlike the existing actions, will only render when the data for them is available. Therefore, the onClick for these actions are optional.
1457
1473
 
@@ -1485,64 +1501,64 @@
1485
1501
 
1486
1502
  ### Patch Changes
1487
1503
 
1488
- - [`6533e448c53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6533e448c53) - [ux] Embed: Update unauthorised view text messages and use provider image if available
1504
+ - [#26811](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26811) [`6533e448c53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6533e448c53) - [ux] Embed: Update unauthorised view text messages and use provider image if available
1489
1505
  - Updated dependencies
1490
1506
 
1491
1507
  ## 23.3.0
1492
1508
 
1493
1509
  ### Minor Changes
1494
1510
 
1495
- - [`be7ac1e0d9b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be7ac1e0d9b) - Add `hideRetry` optional prop to TitleBlock element to allow customers to optout from any retry buttons to be shown (like "connect to preview" or "Can't find link" or "Restricted link, try another account")
1511
+ - [#26834](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26834) [`be7ac1e0d9b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be7ac1e0d9b) - Add `hideRetry` optional prop to TitleBlock element to allow customers to optout from any retry buttons to be shown (like "connect to preview" or "Can't find link" or "Restricted link, try another account")
1496
1512
 
1497
1513
  ## 23.2.0
1498
1514
 
1499
1515
  ### Minor Changes
1500
1516
 
1501
- - [`5a2432bf917`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a2432bf917) - [ux] Adds metadata to hover smart cards resolved by trello-object-provider
1517
+ - [#26689](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26689) [`5a2432bf917`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a2432bf917) - [ux] Adds metadata to hover smart cards resolved by trello-object-provider
1502
1518
 
1503
1519
  ## 23.1.4
1504
1520
 
1505
1521
  ### Patch Changes
1506
1522
 
1507
- - [`e6d8d32e33e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6d8d32e33e) - [ux] Update token usages in the loading shimmer effect to be smoother for inline cards. Updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
1523
+ - [#26701](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26701) [`e6d8d32e33e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6d8d32e33e) - [ux] Update token usages in the loading shimmer effect to be smoother for inline cards. Updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
1508
1524
 
1509
1525
  ## 23.1.3
1510
1526
 
1511
1527
  ### Patch Changes
1512
1528
 
1513
- - [`558e0af2263`](https://bitbucket.org/atlassian/atlassian-frontend/commits/558e0af2263) - Embed Preview: Clean up experiment
1529
+ - [#25507](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25507) [`558e0af2263`](https://bitbucket.org/atlassian/atlassian-frontend/commits/558e0af2263) - Embed Preview: Clean up experiment
1514
1530
 
1515
1531
  ## 23.1.2
1516
1532
 
1517
1533
  ### Patch Changes
1518
1534
 
1519
- - [`5bdea3e4375`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5bdea3e4375) - Re register card when redux store is recreated
1535
+ - [#26582](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26582) [`5bdea3e4375`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5bdea3e4375) - Re register card when redux store is recreated
1520
1536
 
1521
1537
  ## 23.1.1
1522
1538
 
1523
1539
  ### Patch Changes
1524
1540
 
1525
- - [`d2cde0ebdfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2cde0ebdfd) - fix editor cypress tests and delete media cypress tests
1526
- - [`8f95d913495`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f95d913495) - Smart Link: Add default view to inline/block/embed appearance
1541
+ - [#26241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26241) [`d2cde0ebdfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2cde0ebdfd) - fix editor cypress tests and delete media cypress tests
1542
+ - [#26451](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26451) [`8f95d913495`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f95d913495) - Smart Link: Add default view to inline/block/embed appearance
1527
1543
 
1528
1544
  ## 23.1.0
1529
1545
 
1530
1546
  ### Minor Changes
1531
1547
 
1532
- - [`b3ba198b928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3ba198b928) - [ux] Adds attachment count widget to metadata section
1548
+ - [#25527](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25527) [`b3ba198b928`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b3ba198b928) - [ux] Adds attachment count widget to metadata section
1533
1549
 
1534
1550
  ## 23.0.2
1535
1551
 
1536
1552
  ### Patch Changes
1537
1553
 
1538
- - [`6af519d2a17`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6af519d2a17) - Upgrade json-ld-types from 3.0.2 to 3.1.0
1554
+ - [#25967](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25967) [`6af519d2a17`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6af519d2a17) - Upgrade json-ld-types from 3.0.2 to 3.1.0
1539
1555
  - Updated dependencies
1540
1556
 
1541
1557
  ## 23.0.1
1542
1558
 
1543
1559
  ### Patch Changes
1544
1560
 
1545
- - [`3b30fc47274`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b30fc47274) - Smart Link card state fix relating to an issue with returning old state if url changes to the one already present in the store.
1561
+ - [#26357](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26357) [`3b30fc47274`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b30fc47274) - Smart Link card state fix relating to an issue with returning old state if url changes to the one already present in the store.
1546
1562
 
1547
1563
  ## 23.0.0
1548
1564
 
@@ -1554,25 +1570,25 @@
1554
1570
 
1555
1571
  ### Minor Changes
1556
1572
 
1557
- - [`b5278b469b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5278b469b8) - [ux] Allow rendering custom preview of embeds in forbidden view
1573
+ - [#26080](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26080) [`b5278b469b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5278b469b8) - [ux] Allow rendering custom preview of embeds in forbidden view
1558
1574
 
1559
1575
  ## 22.3.2
1560
1576
 
1561
1577
  ### Patch Changes
1562
1578
 
1563
- - [`d4f3f7afbe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d4f3f7afbe4) - [ux] Smart Links: Change date format of the Flexible Smart Links' CreatedOn and ModifiedOn element to short month to better accommodate smaller space, including but not limited to Hover Preview.
1579
+ - [#26229](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26229) [`d4f3f7afbe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d4f3f7afbe4) - [ux] Smart Links: Change date format of the Flexible Smart Links' CreatedOn and ModifiedOn element to short month to better accommodate smaller space, including but not limited to Hover Preview.
1564
1580
 
1565
1581
  ## 22.3.1
1566
1582
 
1567
1583
  ### Patch Changes
1568
1584
 
1569
- - [`829baeda46d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/829baeda46d) - [ux] Update token usages in the loading shimmer effect on inline cards.
1585
+ - [#25951](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25951) [`829baeda46d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/829baeda46d) - [ux] Update token usages in the loading shimmer effect on inline cards.
1570
1586
 
1571
1587
  ## 22.3.0
1572
1588
 
1573
1589
  ### Minor Changes
1574
1590
 
1575
- - [`b31cdf70f6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b31cdf70f6e) - Updates `@emotion/core` v10 to `@emotion/react` v11. There is no expected behaviour change.
1591
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710) [`b31cdf70f6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b31cdf70f6e) - Updates `@emotion/core` v10 to `@emotion/react` v11. There is no expected behaviour change.
1576
1592
 
1577
1593
  ### Patch Changes
1578
1594
 
@@ -1582,20 +1598,20 @@
1582
1598
 
1583
1599
  ### Patch Changes
1584
1600
 
1585
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
1601
+ - [#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`
1586
1602
  - Updated dependencies
1587
1603
 
1588
1604
  ## 22.2.0
1589
1605
 
1590
1606
  ### Minor Changes
1591
1607
 
1592
- - [`9a0c1c39d27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a0c1c39d27) - Rethrow errors from child component of smart-card so all non API errors will be handed to parent of smart-card
1608
+ - [#24742](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24742) [`9a0c1c39d27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a0c1c39d27) - Rethrow errors from child component of smart-card so all non API errors will be handed to parent of smart-card
1593
1609
 
1594
1610
  ## 22.1.2
1595
1611
 
1596
1612
  ### Patch Changes
1597
1613
 
1598
- - [`46059beebbf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46059beebbf) - - include **tests_external** in build
1614
+ - [#24818](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24818) [`46059beebbf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46059beebbf) - - include **tests_external** in build
1599
1615
  - replace usage of @local-cypress package with @cypress
1600
1616
  - bump @cypress from ^6.4.0 to ^7.7.0
1601
1617
  - import cypress types into @atlaskit/in-product-testing tsconfig
@@ -1604,20 +1620,20 @@
1604
1620
 
1605
1621
  ### Patch Changes
1606
1622
 
1607
- - [`9c7cc4139ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c7cc4139ec) - Partially remove Lozenge CSS override which conflicts with updated Lozenge styling.
1623
+ - [#24004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24004) [`9c7cc4139ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c7cc4139ec) - Partially remove Lozenge CSS override which conflicts with updated Lozenge styling.
1608
1624
  - Updated dependencies
1609
1625
 
1610
1626
  ## 22.1.0
1611
1627
 
1612
1628
  ### Minor Changes
1613
1629
 
1614
- - [`c908307ef8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c908307ef8e) - Embed Preview: Update embed preview modal analytics
1630
+ - [#24522](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24522) [`c908307ef8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c908307ef8e) - Embed Preview: Update embed preview modal analytics
1615
1631
 
1616
1632
  ## 22.0.0
1617
1633
 
1618
1634
  ### Major Changes
1619
1635
 
1620
- - [`e2bd5c50884`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2bd5c50884) - This PR changes how Smart Link Analytics events are defined.
1636
+ - [#24526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24526) [`e2bd5c50884`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2bd5c50884) - This PR changes how Smart Link Analytics events are defined.
1621
1637
  Analytics events now use object args rather than inline arguments.
1622
1638
 
1623
1639
  Previously:
@@ -1660,32 +1676,32 @@
1660
1676
 
1661
1677
  ### Minor Changes
1662
1678
 
1663
- - [`1c76ddcd2f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1c76ddcd2f3) - [ux] Flex-UI: - Add props to generic block: - onRender - onTransitionEnd - blockRef
1679
+ - [#24246](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24246) [`1c76ddcd2f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1c76ddcd2f3) - [ux] Flex-UI: - Add props to generic block: - onRender - onTransitionEnd - blockRef
1664
1680
  HoverCard: - use the above properties in Hover Card to apply transition to preview block and fallback to snippet
1665
1681
 
1666
1682
  ## 21.2.0
1667
1683
 
1668
1684
  ### Minor Changes
1669
1685
 
1670
- - [`d2439a3c65d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2439a3c65d) - [ux] Embed Preview Modal: Add experiment modal with new UX and resize functionality (behind feature flag)
1686
+ - [#24391](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24391) [`d2439a3c65d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2439a3c65d) - [ux] Embed Preview Modal: Add experiment modal with new UX and resize functionality (behind feature flag)
1671
1687
 
1672
1688
  ### Patch Changes
1673
1689
 
1674
- - [`6dd64ce82a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6dd64ce82a8) - [ux] This changes icon loading for Flexible Smart Links. Previously, all `@atlaskit/icon-file-type/glyph/` icons in Flexible Smart Links would be loaded asynchronously. This change makes it so that the `@atlaskit/icon-file-type/glyph/blog` and `@atlaskit/icon-file-type/glyph/document`icons load synchronously in order to better support SSR use cases.
1690
+ - [#24530](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24530) [`6dd64ce82a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6dd64ce82a8) - [ux] This changes icon loading for Flexible Smart Links. Previously, all `@atlaskit/icon-file-type/glyph/` icons in Flexible Smart Links would be loaded asynchronously. This change makes it so that the `@atlaskit/icon-file-type/glyph/blog` and `@atlaskit/icon-file-type/glyph/document`icons load synchronously in order to better support SSR use cases.
1675
1691
  - Updated dependencies
1676
1692
 
1677
1693
  ## 21.1.4
1678
1694
 
1679
1695
  ### Patch Changes
1680
1696
 
1681
- - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
1697
+ - [#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`.
1682
1698
  - Updated dependencies
1683
1699
 
1684
1700
  ## 21.1.3
1685
1701
 
1686
1702
  ### Patch Changes
1687
1703
 
1688
- - [`d0b3a262e03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0b3a262e03) - [ux] Embed Preview: Update the new embed preview modal UX
1704
+ - [#24442](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24442) [`d0b3a262e03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0b3a262e03) - [ux] Embed Preview: Update the new embed preview modal UX
1689
1705
 
1690
1706
  - Make title smaller
1691
1707
  - Reduce gap between element
@@ -1695,43 +1711,43 @@
1695
1711
 
1696
1712
  ### Patch Changes
1697
1713
 
1698
- - [`a024e3c77ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a024e3c77ec) - Embed Preview: Add embed preview modal (WIP)
1714
+ - [#24344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24344) [`a024e3c77ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a024e3c77ec) - Embed Preview: Add embed preview modal (WIP)
1699
1715
 
1700
1716
  ## 21.1.1
1701
1717
 
1702
1718
  ### Patch Changes
1703
1719
 
1704
- - [`e6a3654a137`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6a3654a137) - Fix bug where smart cards used `elevation.surface` instead of `elevation.surface.raised` design tokens for card backgrounds.
1720
+ - [#24162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24162) [`e6a3654a137`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6a3654a137) - Fix bug where smart cards used `elevation.surface` instead of `elevation.surface.raised` design tokens for card backgrounds.
1705
1721
 
1706
1722
  ## 21.1.0
1707
1723
 
1708
1724
  ### Minor Changes
1709
1725
 
1710
- - [`fa7f42de6c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa7f42de6c0) - Flexible UI: Add onActionMenuOpenChange on TitleBlock to detect action dropdown menu open/close
1726
+ - [#24174](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24174) [`fa7f42de6c0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa7f42de6c0) - Flexible UI: Add onActionMenuOpenChange on TitleBlock to detect action dropdown menu open/close
1711
1727
 
1712
1728
  ## 21.0.4
1713
1729
 
1714
1730
  ### Patch Changes
1715
1731
 
1716
- - [`4347099f4ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4347099f4ba) - [ux] Blue highlight is removed for when a user right-clicks on a Flex UI Smart Link
1732
+ - [#24078](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24078) [`4347099f4ba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4347099f4ba) - [ux] Blue highlight is removed for when a user right-clicks on a Flex UI Smart Link
1717
1733
 
1718
1734
  ## 21.0.3
1719
1735
 
1720
1736
  ### Patch Changes
1721
1737
 
1722
- - [`a657fbfe5e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a657fbfe5e1) - [ux] Flexible UI: Fix action menu and its tooltip not disappear after an action is clicked
1738
+ - [#24043](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24043) [`a657fbfe5e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a657fbfe5e1) - [ux] Flexible UI: Fix action menu and its tooltip not disappear after an action is clicked
1723
1739
 
1724
1740
  ## 21.0.2
1725
1741
 
1726
1742
  ### Patch Changes
1727
1743
 
1728
- - [`0a08e95af20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a08e95af20) - fix bug where scrolling onto an inline link opens hover card in unexpected locations
1744
+ - [#23789](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23789) [`0a08e95af20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a08e95af20) - fix bug where scrolling onto an inline link opens hover card in unexpected locations
1729
1745
 
1730
1746
  ## 21.0.1
1731
1747
 
1732
1748
  ### Patch Changes
1733
1749
 
1734
- - [`919a3124eb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/919a3124eb8) - turn off autofocus for hover card
1750
+ - [#23740](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23740) [`919a3124eb8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/919a3124eb8) - turn off autofocus for hover card
1735
1751
 
1736
1752
  ## 21.0.0
1737
1753
 
@@ -1743,31 +1759,31 @@
1743
1759
 
1744
1760
  ### Patch Changes
1745
1761
 
1746
- - [`8df009f4313`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8df009f4313) - fix metadata status for prefetching
1762
+ - [#23638](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23638) [`8df009f4313`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8df009f4313) - fix metadata status for prefetching
1747
1763
 
1748
1764
  ## 20.1.3
1749
1765
 
1750
1766
  ### Patch Changes
1751
1767
 
1752
- - [`7c0644e5daf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c0644e5daf) - fix on mouse hover functionality for hover cards
1768
+ - [#23600](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23600) [`7c0644e5daf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c0644e5daf) - fix on mouse hover functionality for hover cards
1753
1769
 
1754
1770
  ## 20.1.2
1755
1771
 
1756
1772
  ### Patch Changes
1757
1773
 
1758
- - [`0fb4cccede9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0fb4cccede9) - add on mouse hover to hover card
1774
+ - [#23043](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23043) [`0fb4cccede9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0fb4cccede9) - add on mouse hover to hover card
1759
1775
 
1760
1776
  ## 20.1.1
1761
1777
 
1762
1778
  ### Patch Changes
1763
1779
 
1764
- - [`59469f2ed1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/59469f2ed1c) - Add loading state for hover previews
1780
+ - [#23452](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23452) [`59469f2ed1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/59469f2ed1c) - Add loading state for hover previews
1765
1781
 
1766
1782
  ## 20.1.0
1767
1783
 
1768
1784
  ### Minor Changes
1769
1785
 
1770
- - [`58eb89c70f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58eb89c70f5) - Add onError callback on Card component.
1786
+ - [#23385](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23385) [`58eb89c70f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58eb89c70f5) - Add onError callback on Card component.
1771
1787
  The callback is triggered when Card component unable to resolve the link.
1772
1788
 
1773
1789
  Return statuses are errored, fallback, forbidden, not_found and unauthorized.
@@ -1782,7 +1798,7 @@
1782
1798
 
1783
1799
  ### Patch Changes
1784
1800
 
1785
- - [`e15410365b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e15410365b2) - - export types/functions in linking common to be used in smart card
1801
+ - [#22592](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22592) [`e15410365b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e15410365b2) - - export types/functions in linking common to be used in smart card
1786
1802
 
1787
1803
  - add flag to card action to override re-using previous 'resolved' state
1788
1804
 
@@ -1796,25 +1812,25 @@
1796
1812
 
1797
1813
  ### Patch Changes
1798
1814
 
1799
- - [`afb579e5778`](https://bitbucket.org/atlassian/atlassian-frontend/commits/afb579e5778) - Flexible UI: Fix styling on MetadataBlock and FooterBlock in Firefox and Safari browser
1815
+ - [#23362](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23362) [`afb579e5778`](https://bitbucket.org/atlassian/atlassian-frontend/commits/afb579e5778) - Flexible UI: Fix styling on MetadataBlock and FooterBlock in Firefox and Safari browser
1800
1816
 
1801
1817
  ## 20.0.5
1802
1818
 
1803
1819
  ### Patch Changes
1804
1820
 
1805
- - [`6e4810f82c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e4810f82c3) - wrap hover preview in error boundary and emit failure event
1821
+ - [#23192](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23192) [`6e4810f82c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e4810f82c3) - wrap hover preview in error boundary and emit failure event
1806
1822
 
1807
1823
  ## 20.0.4
1808
1824
 
1809
1825
  ### Patch Changes
1810
1826
 
1811
- - [`2a5cc0d4297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a5cc0d4297) - Block: Update pull request link avatar to author (attributedTo)
1827
+ - [#23305](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23305) [`2a5cc0d4297`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2a5cc0d4297) - Block: Update pull request link avatar to author (attributedTo)
1812
1828
 
1813
1829
  ## 20.0.3
1814
1830
 
1815
1831
  ### Patch Changes
1816
1832
 
1817
- - [`4c2c26ca270`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c2c26ca270) - Fix regression in logos in BlockCard footers in preview mode cuased by the `appearance` prop.
1833
+ - [#22642](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22642) [`4c2c26ca270`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4c2c26ca270) - Fix regression in logos in BlockCard footers in preview mode cuased by the `appearance` prop.
1818
1834
  - [`d4133fe0edc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d4133fe0edc) - Fix regression in logos in BlockCard footers caused by inheriting ProseMirror styles after a change in @atlaskit/logo internals.
1819
1835
  - Updated dependencies
1820
1836
 
@@ -1822,13 +1838,13 @@
1822
1838
 
1823
1839
  ### Patch Changes
1824
1840
 
1825
- - [`12950ccea1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12950ccea1b) - Hover Preview: Stop hover preview from propagating click event to parent element
1841
+ - [#23227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23227) [`12950ccea1b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12950ccea1b) - Hover Preview: Stop hover preview from propagating click event to parent element
1826
1842
 
1827
1843
  ## 20.0.1
1828
1844
 
1829
1845
  ### Patch Changes
1830
1846
 
1831
- - [`3e4f8e1490a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e4f8e1490a) - Hover Preview: Fix Hover Preview shows on top of Preview modal
1847
+ - [#23170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23170) [`3e4f8e1490a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e4f8e1490a) - Hover Preview: Fix Hover Preview shows on top of Preview modal
1832
1848
 
1833
1849
  ## 20.0.0
1834
1850
 
@@ -1840,7 +1856,7 @@
1840
1856
 
1841
1857
  ### Minor Changes
1842
1858
 
1843
- - [`cd5e63258cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd5e63258cd) - Moved extractors to linking-common/extractors
1859
+ - [#23000](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23000) [`cd5e63258cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd5e63258cd) - Moved extractors to linking-common/extractors
1844
1860
 
1845
1861
  ### Patch Changes
1846
1862
 
@@ -1850,33 +1866,33 @@
1850
1866
 
1851
1867
  ### Patch Changes
1852
1868
 
1853
- - [`34d17437062`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34d17437062) - Flexible UI: Add DueOn element
1869
+ - [#22856](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22856) [`34d17437062`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34d17437062) - Flexible UI: Add DueOn element
1854
1870
  Hover Preview: Update Atlas metadata
1855
1871
 
1856
1872
  ## 19.1.30
1857
1873
 
1858
1874
  ### Patch Changes
1859
1875
 
1860
- - [`3a2bc5af606`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a2bc5af606) - Flexible UI: Add pull request source and target branch element (text)
1876
+ - [#22717](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22717) [`3a2bc5af606`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a2bc5af606) - Flexible UI: Add pull request source and target branch element (text)
1861
1877
  Hover Preview: Update Bitbucket metadata for pull request link
1862
1878
 
1863
1879
  ## 19.1.29
1864
1880
 
1865
1881
  ### Patch Changes
1866
1882
 
1867
- - [`acfb4cbb01f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/acfb4cbb01f) - set hover card z-index to 511 to go over issue view modal
1883
+ - [#23045](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23045) [`acfb4cbb01f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/acfb4cbb01f) - set hover card z-index to 511 to go over issue view modal
1868
1884
 
1869
1885
  ## 19.1.28
1870
1886
 
1871
1887
  ### Patch Changes
1872
1888
 
1873
- - [`455538b6a3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/455538b6a3f) - use useFeatureFlag hook to get hover preview FF
1889
+ - [#22959](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22959) [`455538b6a3f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/455538b6a3f) - use useFeatureFlag hook to get hover preview FF
1874
1890
 
1875
1891
  ## 19.1.27
1876
1892
 
1877
1893
  ### Patch Changes
1878
1894
 
1879
- - [`98d3f88e428`](https://bitbucket.org/atlassian/atlassian-frontend/commits/98d3f88e428) - This PR adds external element typings for Flexible UI metadata.
1895
+ - [#22105](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22105) [`98d3f88e428`](https://bitbucket.org/atlassian/atlassian-frontend/commits/98d3f88e428) - This PR adds external element typings for Flexible UI metadata.
1880
1896
  This means code completion will now be available when an element has a prop that can be overridden.
1881
1897
  As of this PR, these are the `CreatedOn` and `ModifiedOn` elements, which now accept some `text` which will override the existing text.
1882
1898
 
@@ -1886,39 +1902,39 @@
1886
1902
 
1887
1903
  ### Patch Changes
1888
1904
 
1889
- - [`00c79cca5b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00c79cca5b0) - hover card white space changes
1905
+ - [#22869](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22869) [`00c79cca5b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00c79cca5b0) - hover card white space changes
1890
1906
 
1891
1907
  ## 19.1.25
1892
1908
 
1893
1909
  ### Patch Changes
1894
1910
 
1895
- - [`de8de71a806`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de8de71a806) - Hover Preview: Fix Hover Preview analytics event details get applied to other Smart Links analytics
1896
- - [`ae023956743`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae023956743) - Smart Links Analytics types are exported to allow their usage from outside of the package
1911
+ - [#22836](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22836) [`de8de71a806`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de8de71a806) - Hover Preview: Fix Hover Preview analytics event details get applied to other Smart Links analytics
1912
+ - [#22879](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22879) [`ae023956743`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae023956743) - Smart Links Analytics types are exported to allow their usage from outside of the package
1897
1913
 
1898
1914
  ## 19.1.24
1899
1915
 
1900
1916
  ### Patch Changes
1901
1917
 
1902
- - [`cd729a0a41b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd729a0a41b) - [ux][ed-15030] Set the background color of smart cards properly in dark mode
1918
+ - [#22808](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22808) [`cd729a0a41b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd729a0a41b) - [ux][ed-15030] Set the background color of smart cards properly in dark mode
1903
1919
 
1904
1920
  ## 19.1.23
1905
1921
 
1906
1922
  ### Patch Changes
1907
1923
 
1908
- - [`f538640e3a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f538640e3a5) - fix: Previously the .reload() action would not propagate changes through to the smart-card state in some scenarios. This has been amended by making it an explicit Redux action.
1924
+ - [#22476](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22476) [`f538640e3a5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f538640e3a5) - fix: Previously the .reload() action would not propagate changes through to the smart-card state in some scenarios. This has been amended by making it an explicit Redux action.
1909
1925
  - Updated dependencies
1910
1926
 
1911
1927
  ## 19.1.22
1912
1928
 
1913
1929
  ### Patch Changes
1914
1930
 
1915
- - [`c6978e3a40c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6978e3a40c) - This update adds Destination product and subproduct (core, servicedesk, software, etc.) analytics now available in the Smart Link ui card clicked event. At the time of writing, only Jira links have this functionality.
1931
+ - [#22366](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22366) [`c6978e3a40c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6978e3a40c) - This update adds Destination product and subproduct (core, servicedesk, software, etc.) analytics now available in the Smart Link ui card clicked event. At the time of writing, only Jira links have this functionality.
1916
1932
 
1917
1933
  ## 19.1.21
1918
1934
 
1919
1935
  ### Patch Changes
1920
1936
 
1921
- - [`b39f43e68c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b39f43e68c3) - [ux] Hover Preview: Add CreatedBy to 3P link metadata
1937
+ - [#22383](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22383) [`b39f43e68c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b39f43e68c3) - [ux] Hover Preview: Add CreatedBy to 3P link metadata
1922
1938
 
1923
1939
  [ux] Flexible UI: Text based elements now wrap and truncate within metadata group.
1924
1940
 
@@ -1926,20 +1942,20 @@
1926
1942
 
1927
1943
  ### Patch Changes
1928
1944
 
1929
- - [`0b7abdcf058`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b7abdcf058) - Flexible UI: Fix PreviewBlock not showing image loading skeleton
1945
+ - [#22447](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22447) [`0b7abdcf058`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b7abdcf058) - Flexible UI: Fix PreviewBlock not showing image loading skeleton
1930
1946
 
1931
1947
  ## 19.1.19
1932
1948
 
1933
1949
  ### Patch Changes
1934
1950
 
1935
- - [`f7aedc6cf7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7aedc6cf7d) - [ux] A new element 'LatestCommit' was added in FlexibleUI for Smart Links. It displays the latest commit of a repository. Version of package 'json-ld-types' was upgraded to 2.4.2
1951
+ - [#22266](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22266) [`f7aedc6cf7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7aedc6cf7d) - [ux] A new element 'LatestCommit' was added in FlexibleUI for Smart Links. It displays the latest commit of a repository. Version of package 'json-ld-types' was upgraded to 2.4.2
1936
1952
  - Updated dependencies
1937
1953
 
1938
1954
  ## 19.1.18
1939
1955
 
1940
1956
  ### Patch Changes
1941
1957
 
1942
- - [`b26dd70a1e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b26dd70a1e6) - This PR adds the ability for an integrator to provide a string via `placeholder` which will be displayed instead of the url while the CardWithURLContent component is not mounted (i.e. not currently being observed). This should help with performance use cases where some text is required to be displayed before the full Smart Link component is rendered.
1958
+ - [#22197](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22197) [`b26dd70a1e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b26dd70a1e6) - This PR adds the ability for an integrator to provide a string via `placeholder` which will be displayed instead of the url while the CardWithURLContent component is not mounted (i.e. not currently being observed). This should help with performance use cases where some text is required to be displayed before the full Smart Link component is rendered.
1943
1959
 
1944
1960
  Usage:
1945
1961
 
@@ -1952,25 +1968,25 @@
1952
1968
 
1953
1969
  ### Patch Changes
1954
1970
 
1955
- - [`46f6c1a70e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46f6c1a70e3) - Hover Preview: Improve analytics and update Flexible UI usage within Hover Preview
1971
+ - [#22247](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22247) [`46f6c1a70e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46f6c1a70e3) - Hover Preview: Improve analytics and update Flexible UI usage within Hover Preview
1956
1972
 
1957
1973
  ## 19.1.16
1958
1974
 
1959
1975
  ### Patch Changes
1960
1976
 
1961
- - [`47058879f49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47058879f49) - [ux] Text customisation made possible for Flexible UI fields “ModifiedOn“ & “CreatedOn" (example: <TitleBlock metadata={[ { name: ElementName.CreatedOn, text: 'Last commit on' }]} />)
1977
+ - [#22225](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22225) [`47058879f49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47058879f49) - [ux] Text customisation made possible for Flexible UI fields “ModifiedOn“ & “CreatedOn" (example: <TitleBlock metadata={[ { name: ElementName.CreatedOn, text: 'Last commit on' }]} />)
1962
1978
 
1963
1979
  ## 19.1.15
1964
1980
 
1965
1981
  ### Patch Changes
1966
1982
 
1967
- - [`23445a4d2ca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/23445a4d2ca) - Hover Preview: Update analytics details
1983
+ - [#22201](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22201) [`23445a4d2ca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/23445a4d2ca) - Hover Preview: Update analytics details
1968
1984
 
1969
1985
  ## 19.1.14
1970
1986
 
1971
1987
  ### Patch Changes
1972
1988
 
1973
- - [`9d57264a033`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d57264a033) - This update adds an exposed analytics hook, which will pave the way for future usage of Smart Link analytics outside of the smart-card component.
1989
+ - [#21912](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21912) [`9d57264a033`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d57264a033) - This update adds an exposed analytics hook, which will pave the way for future usage of Smart Link analytics outside of the smart-card component.
1974
1990
 
1975
1991
  # Usage of `useSmartLinkAnalytics`
1976
1992
 
@@ -2025,76 +2041,76 @@
2025
2041
 
2026
2042
  ### Patch Changes
2027
2043
 
2028
- - [`a575379772a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a575379772a) - Hover Preview: Update z-index
2044
+ - [#22005](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/22005) [`a575379772a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a575379772a) - Hover Preview: Update z-index
2029
2045
 
2030
2046
  ## 19.1.12
2031
2047
 
2032
2048
  ### Patch Changes
2033
2049
 
2034
- - [`b68e80d658f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b68e80d658f) - add hover previews feature flag
2050
+ - [#21570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21570) [`b68e80d658f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b68e80d658f) - add hover previews feature flag
2035
2051
  - Updated dependencies
2036
2052
 
2037
2053
  ## 19.1.11
2038
2054
 
2039
2055
  ### Patch Changes
2040
2056
 
2041
- - [`7833a526777`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7833a526777) - - Transfer i18n from @atlaskit/media-ui to @atlaskit/smart-card
2057
+ - [#21885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21885) [`7833a526777`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7833a526777) - - Transfer i18n from @atlaskit/media-ui to @atlaskit/smart-card
2042
2058
  - Remove @atlaskit/media-ui dependency
2043
2059
 
2044
2060
  ## 19.1.10
2045
2061
 
2046
2062
  ### Patch Changes
2047
2063
 
2048
- - [`009e3475b29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/009e3475b29) - Duplicate isIntersectionObserverSupported from media-ui to smart-card
2064
+ - [#21922](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21922) [`009e3475b29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/009e3475b29) - Duplicate isIntersectionObserverSupported from media-ui to smart-card
2049
2065
 
2050
2066
  ## 19.1.9
2051
2067
 
2052
2068
  ### Patch Changes
2053
2069
 
2054
- - [`003ac36263e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/003ac36263e) - Flexible UI: Fix preview block showing white space below image in Safari
2070
+ - [#21743](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21743) [`003ac36263e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/003ac36263e) - Flexible UI: Fix preview block showing white space below image in Safari
2055
2071
 
2056
2072
  ## 19.1.8
2057
2073
 
2058
2074
  ### Patch Changes
2059
2075
 
2060
- - [`81968c216ce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81968c216ce) - Flexible UI: Fix clickableContainer not triggering analytics event
2076
+ - [#21778](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21778) [`81968c216ce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/81968c216ce) - Flexible UI: Fix clickableContainer not triggering analytics event
2061
2077
 
2062
2078
  ## 19.1.7
2063
2079
 
2064
2080
  ### Patch Changes
2065
2081
 
2066
- - [`08bdfa654e2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08bdfa654e2) - Flexible UI: Add option to hide link tooltip on TitleBlock.
2082
+ - [#21700](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21700) [`08bdfa654e2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08bdfa654e2) - Flexible UI: Add option to hide link tooltip on TitleBlock.
2067
2083
 
2068
2084
  ## 19.1.6
2069
2085
 
2070
2086
  ### Patch Changes
2071
2087
 
2072
- - [`28410ec919d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28410ec919d) - Flexible UI: Passing JsonLD response on authFlow disabled
2088
+ - [#21676](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21676) [`28410ec919d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28410ec919d) - Flexible UI: Passing JsonLD response on authFlow disabled
2073
2089
  - Updated dependencies
2074
2090
 
2075
2091
  ## 19.1.5
2076
2092
 
2077
2093
  ### Patch Changes
2078
2094
 
2079
- - [`db78a813922`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db78a813922) - Add error handling to smart-card ssr component
2095
+ - [#21558](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21558) [`db78a813922`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db78a813922) - Add error handling to smart-card ssr component
2080
2096
 
2081
2097
  ## 19.1.4
2082
2098
 
2083
2099
  ### Patch Changes
2084
2100
 
2085
- - [`cd2e7183aa5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd2e7183aa5) - Flexible UI: Fix action tooltips not displayed on hover
2101
+ - [#21625](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21625) [`cd2e7183aa5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd2e7183aa5) - Flexible UI: Fix action tooltips not displayed on hover
2086
2102
 
2087
2103
  ## 19.1.3
2088
2104
 
2089
2105
  ### Patch Changes
2090
2106
 
2091
- - [`3de372f6670`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3de372f6670) - Hover Previews: use black flex-ui theme
2107
+ - [#21611](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21611) [`3de372f6670`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3de372f6670) - Hover Previews: use black flex-ui theme
2092
2108
 
2093
2109
  ## 19.1.2
2094
2110
 
2095
2111
  ### Patch Changes
2096
2112
 
2097
- - [`3a0fdf3c651`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a0fdf3c651) - change hover previews to show preview over snippet when its available
2113
+ - [#21520](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21520) [`3a0fdf3c651`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a0fdf3c651) - change hover previews to show preview over snippet when its available
2098
2114
 
2099
2115
  ## 19.1.1
2100
2116
 
@@ -2106,7 +2122,7 @@
2106
2122
 
2107
2123
  ### Minor Changes
2108
2124
 
2109
- - [`6b7ba46a96b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b7ba46a96b) - [MEX-1456] Remove unused infinite scroll from Media-UI and Remove lodash from Media package
2125
+ - [#20721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20721) [`6b7ba46a96b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b7ba46a96b) - [MEX-1456] Remove unused infinite scroll from Media-UI and Remove lodash from Media package
2110
2126
 
2111
2127
  ### Patch Changes
2112
2128
 
@@ -2117,31 +2133,31 @@
2117
2133
 
2118
2134
  ### Patch Changes
2119
2135
 
2120
- - [`3eea7c153d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3eea7c153d6) - Handle onResolve prop from smart-card in flexible-card and use the prop inside hover-card to dynamically update popup positioning
2136
+ - [#21469](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21469) [`3eea7c153d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3eea7c153d6) - Handle onResolve prop from smart-card in flexible-card and use the prop inside hover-card to dynamically update popup positioning
2121
2137
 
2122
2138
  ## 19.0.3
2123
2139
 
2124
2140
  ### Patch Changes
2125
2141
 
2126
- - [`cae40e59c49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cae40e59c49) - Show relative date for dates less then 7 days away (flexible ui)
2142
+ - [#20394](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20394) [`cae40e59c49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cae40e59c49) - Show relative date for dates less then 7 days away (flexible ui)
2127
2143
 
2128
2144
  ## 19.0.2
2129
2145
 
2130
2146
  ### Patch Changes
2131
2147
 
2132
- - [`f3026520fc6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3026520fc6) - Fix long tti times for UFO smart-link-rendered experience
2148
+ - [#21353](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21353) [`f3026520fc6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3026520fc6) - Fix long tti times for UFO smart-link-rendered experience
2133
2149
 
2134
2150
  ## 19.0.1
2135
2151
 
2136
2152
  ### Patch Changes
2137
2153
 
2138
- - [`49f905e71e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49f905e71e5) - Flexible UI: Add API document and update prop types.
2154
+ - [#21392](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21392) [`49f905e71e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49f905e71e5) - Flexible UI: Add API document and update prop types.
2139
2155
 
2140
2156
  ## 19.0.0
2141
2157
 
2142
2158
  ### Major Changes
2143
2159
 
2144
- - [`6ee499cbb73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ee499cbb73) - - Add @atlaskit/link-provider as peerDependency.
2160
+ - [#20562](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20562) [`6ee499cbb73`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ee499cbb73) - - Add @atlaskit/link-provider as peerDependency.
2145
2161
 
2146
2162
  - Use Provider/Client from @atlaskit/link-provider and remove local version.
2147
2163
  - Re export moved things from @atlaskit/link-provider to make adoption easier
@@ -2177,44 +2193,44 @@
2177
2193
 
2178
2194
  ### Patch Changes
2179
2195
 
2180
- - [`8b9f08cbc1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b9f08cbc1c) - [ux] Default representation for Slack links was changed from 'block' to 'inline'
2181
- - [`f4811ca8c6a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4811ca8c6a) - add provider based metadata to hover previews
2196
+ - [#20973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20973) [`8b9f08cbc1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b9f08cbc1c) - [ux] Default representation for Slack links was changed from 'block' to 'inline'
2197
+ - [#21186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21186) [`f4811ca8c6a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4811ca8c6a) - add provider based metadata to hover previews
2182
2198
 
2183
2199
  ## 18.0.21
2184
2200
 
2185
2201
  ### Patch Changes
2186
2202
 
2187
- - [`ffaf122189e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffaf122189e) - Flexible UI: TitleBlock is now composory to display Flexible UI on Smart Links
2203
+ - [#21170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21170) [`ffaf122189e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffaf122189e) - Flexible UI: TitleBlock is now composory to display Flexible UI on Smart Links
2188
2204
 
2189
2205
  ## 18.0.20
2190
2206
 
2191
2207
  ### Patch Changes
2192
2208
 
2193
- - [`451f99db28a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/451f99db28a) - Flexible UI: Improve link title truncate to support url string
2209
+ - [#21142](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21142) [`451f99db28a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/451f99db28a) - Flexible UI: Improve link title truncate to support url string
2194
2210
 
2195
2211
  ## 18.0.19
2196
2212
 
2197
2213
  ### Patch Changes
2198
2214
 
2199
- - [`c09b670ffa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c09b670ffa1) - Flexible UI: Add container clickable option and improve keyboard navigation
2215
+ - [#21019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21019) [`c09b670ffa1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c09b670ffa1) - Flexible UI: Add container clickable option and improve keyboard navigation
2200
2216
 
2201
2217
  ## 18.0.18
2202
2218
 
2203
2219
  ### Patch Changes
2204
2220
 
2205
- - [`63f6330be06`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63f6330be06) - [ux] Flexible UI: Change loading spinner on resolving view to loading skeleton
2221
+ - [#21091](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21091) [`63f6330be06`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63f6330be06) - [ux] Flexible UI: Change loading spinner on resolving view to loading skeleton
2206
2222
 
2207
2223
  ## 18.0.17
2208
2224
 
2209
2225
  ### Patch Changes
2210
2226
 
2211
- - [`79b365c3757`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79b365c3757) - [ux] If the "authFlow: disabled" prop is provided on the Smart Card Provider, then the call to action to authenticate forbidden links will also be disabled (in addition to the existing behaviour where only unauthenticated links have the call to action disabled).
2227
+ - [#21014](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/21014) [`79b365c3757`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79b365c3757) - [ux] If the "authFlow: disabled" prop is provided on the Smart Card Provider, then the call to action to authenticate forbidden links will also be disabled (in addition to the existing behaviour where only unauthenticated links have the call to action disabled).
2212
2228
 
2213
2229
  ## 18.0.16
2214
2230
 
2215
2231
  ### Patch Changes
2216
2232
 
2217
- - [`63d05619104`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63d05619104) - [ux] Instrumented `@atlaskit/smart-card` with the new theming package, `@atlaskit/tokens`.
2233
+ - [#20590](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20590) [`63d05619104`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63d05619104) - [ux] Instrumented `@atlaskit/smart-card` with the new theming package, `@atlaskit/tokens`.
2218
2234
 
2219
2235
  New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
2220
2236
  These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
@@ -2223,7 +2239,7 @@
2223
2239
 
2224
2240
  ### Patch Changes
2225
2241
 
2226
- - [`c2a240de738`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2a240de738) - Add inline documentation for Flexible UI
2242
+ - [#20650](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20650) [`c2a240de738`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2a240de738) - Add inline documentation for Flexible UI
2227
2243
  - [`6976489a51a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6976489a51a) - Flexible UI: Enable css override for actions
2228
2244
  - [`7d4e18ffddb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d4e18ffddb) - instrument analytics events for hover card
2229
2245
  - [`a123e96fc62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a123e96fc62) - expose prop on smart card
@@ -2248,13 +2264,13 @@
2248
2264
 
2249
2265
  ### Patch Changes
2250
2266
 
2251
- - [`b90896c18cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b90896c18cd) - move helpers and types to @atlaskit/linking-common and import them
2267
+ - [#20479](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20479) [`b90896c18cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b90896c18cd) - move helpers and types to @atlaskit/linking-common and import them
2252
2268
 
2253
2269
  ## 18.0.11
2254
2270
 
2255
2271
  ### Patch Changes
2256
2272
 
2257
- - [`ec98e2d8ebc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec98e2d8ebc) - feat: Expose `useSmartLinkReload` hook.
2273
+ - [#20258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20258) [`ec98e2d8ebc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec98e2d8ebc) - feat: Expose `useSmartLinkReload` hook.
2258
2274
 
2259
2275
  ### Example Usage
2260
2276
 
@@ -2277,67 +2293,67 @@
2277
2293
 
2278
2294
  ### Patch Changes
2279
2295
 
2280
- - [`b687926f768`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b687926f768) - Fix bug where individual action item was not hidden by default with showActionOnHover flag
2296
+ - [#20227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20227) [`b687926f768`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b687926f768) - Fix bug where individual action item was not hidden by default with showActionOnHover flag
2281
2297
 
2282
2298
  ## 18.0.9
2283
2299
 
2284
2300
  ### Patch Changes
2285
2301
 
2286
- - [`6adaa6b5c18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6adaa6b5c18) - Updated default renderer onClick to not fire on a Flexible UI link to prevent links from being openned twice
2302
+ - [#20257](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20257) [`6adaa6b5c18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6adaa6b5c18) - Updated default renderer onClick to not fire on a Flexible UI link to prevent links from being openned twice
2287
2303
 
2288
2304
  ## 18.0.8
2289
2305
 
2290
2306
  ### Patch Changes
2291
2307
 
2292
- - [`d9b55e7cd29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9b55e7cd29) - Add classname for placeholder element that is shown while we load js module
2308
+ - [#20229](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20229) [`d9b55e7cd29`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9b55e7cd29) - Add classname for placeholder element that is shown while we load js module
2293
2309
 
2294
2310
  ## 18.0.7
2295
2311
 
2296
2312
  ### Patch Changes
2297
2313
 
2298
- - [`1f377bd17a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f377bd17a4) - Added open in new tab action to titleblock and refactored tests
2314
+ - [#20143](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20143) [`1f377bd17a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f377bd17a4) - Added open in new tab action to titleblock and refactored tests
2299
2315
 
2300
2316
  ## 18.0.6
2301
2317
 
2302
2318
  ### Patch Changes
2303
2319
 
2304
- - [`9945f8983f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9945f8983f0) - TitleBlock now has "anchorTarget" property
2320
+ - [#20127](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20127) [`9945f8983f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9945f8983f0) - TitleBlock now has "anchorTarget" property
2305
2321
 
2306
2322
  ## 18.0.5
2307
2323
 
2308
2324
  ### Patch Changes
2309
2325
 
2310
- - [`54d8579fe05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d8579fe05) - Flexible UI: Reduce link title font weight
2326
+ - [#20121](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20121) [`54d8579fe05`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d8579fe05) - Flexible UI: Reduce link title font weight
2311
2327
 
2312
2328
  ## 18.0.4
2313
2329
 
2314
2330
  ### Patch Changes
2315
2331
 
2316
- - [`dd4ae8205d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd4ae8205d1) - Add actions for non-resolved view of flexible ui
2332
+ - [#19947](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19947) [`dd4ae8205d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd4ae8205d1) - Add actions for non-resolved view of flexible ui
2317
2333
 
2318
2334
  ## 18.0.3
2319
2335
 
2320
2336
  ### Patch Changes
2321
2337
 
2322
- - [`7dc2fb8eb8b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7dc2fb8eb8b) - Handle exceptions coming from client
2338
+ - [#20029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20029) [`7dc2fb8eb8b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7dc2fb8eb8b) - Handle exceptions coming from client
2323
2339
 
2324
2340
  ## 18.0.2
2325
2341
 
2326
2342
  ### Patch Changes
2327
2343
 
2328
- - [`cff21812950`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cff21812950) - add smart link actions to footer of hover card, plus small styling changes
2344
+ - [#20055](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20055) [`cff21812950`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cff21812950) - add smart link actions to footer of hover card, plus small styling changes
2329
2345
 
2330
2346
  ## 18.0.1
2331
2347
 
2332
2348
  ### Patch Changes
2333
2349
 
2334
- - [`75c16ae4964`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75c16ae4964) - refactor code to use atlaskit/popup instead of atlaskit/tooltip as a base component
2350
+ - [#19884](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19884) [`75c16ae4964`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75c16ae4964) - refactor code to use atlaskit/popup instead of atlaskit/tooltip as a base component
2335
2351
 
2336
2352
  ## 18.0.0
2337
2353
 
2338
2354
  ### Major Changes
2339
2355
 
2340
- - [`dd429d9fdca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd429d9fdca) - [ux] EDM-2822: Fix smart link wraps just after the icon
2356
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618) [`dd429d9fdca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dd429d9fdca) - [ux] EDM-2822: Fix smart link wraps just after the icon
2341
2357
 
2342
2358
  ### Patch Changes
2343
2359
 
@@ -2348,37 +2364,37 @@
2348
2364
 
2349
2365
  ### Patch Changes
2350
2366
 
2351
- - [`f9bbe6d0a56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9bbe6d0a56) - Add View, Vote and React badge elements
2367
+ - [#19883](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19883) [`f9bbe6d0a56`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f9bbe6d0a56) - Add View, Vote and React badge elements
2352
2368
 
2353
2369
  ## 17.7.11
2354
2370
 
2355
2371
  ### Patch Changes
2356
2372
 
2357
- - [`ca8c8db1440`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca8c8db1440) - Flexible UI: Add separator between text/date-time elements
2373
+ - [#19727](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19727) [`ca8c8db1440`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ca8c8db1440) - Flexible UI: Add separator between text/date-time elements
2358
2374
 
2359
2375
  ## 17.7.10
2360
2376
 
2361
2377
  ### Patch Changes
2362
2378
 
2363
- - [`e04b58c623e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e04b58c623e) - Add EditAction
2379
+ - [#19735](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19735) [`e04b58c623e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e04b58c623e) - Add EditAction
2364
2380
 
2365
2381
  ## 17.7.9
2366
2382
 
2367
2383
  ### Patch Changes
2368
2384
 
2369
- - [`63d4f963f72`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63d4f963f72) - Flexible UI: Set PreviewBlock image aspect ratio to 16:9
2385
+ - [#19689](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19689) [`63d4f963f72`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63d4f963f72) - Flexible UI: Set PreviewBlock image aspect ratio to 16:9
2370
2386
 
2371
2387
  ## 17.7.8
2372
2388
 
2373
2389
  ### Patch Changes
2374
2390
 
2375
- - [`d75ce5b847d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d75ce5b847d) - Add link click analytics to flexible ui title block component
2391
+ - [#18523](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18523) [`d75ce5b847d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d75ce5b847d) - Add link click analytics to flexible ui title block component
2376
2392
 
2377
2393
  ## 17.7.7
2378
2394
 
2379
2395
  ### Patch Changes
2380
2396
 
2381
- - [`c01f6404d0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c01f6404d0c) - Add ability to trigger actions for a Smart Link from outside of the Smart Link card.
2397
+ - [#19669](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19669) [`c01f6404d0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c01f6404d0c) - Add ability to trigger actions for a Smart Link from outside of the Smart Link card.
2382
2398
 
2383
2399
  Example usage:
2384
2400
 
@@ -2410,43 +2426,43 @@
2410
2426
 
2411
2427
  ### Patch Changes
2412
2428
 
2413
- - [`0e5c8b501d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e5c8b501d6) - add test for when hover preview prop is not provided to inline card
2429
+ - [#19706](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19706) [`0e5c8b501d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0e5c8b501d6) - add test for when hover preview prop is not provided to inline card
2414
2430
 
2415
2431
  ## 17.7.5
2416
2432
 
2417
2433
  ### Patch Changes
2418
2434
 
2419
- - [`b89ef291fb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b89ef291fb9) - EDM-2902: Move common component out of BlockCard
2435
+ - [#19700](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19700) [`b89ef291fb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b89ef291fb9) - EDM-2902: Move common component out of BlockCard
2420
2436
 
2421
2437
  ## 17.7.4
2422
2438
 
2423
2439
  ### Patch Changes
2424
2440
 
2425
- - [`ff7b1126682`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff7b1126682) - Set up base component and relevant tests for hover previews
2441
+ - [#19644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19644) [`ff7b1126682`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff7b1126682) - Set up base component and relevant tests for hover previews
2426
2442
 
2427
2443
  ## 17.7.3
2428
2444
 
2429
2445
  ### Patch Changes
2430
2446
 
2431
- - [`474d69913ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/474d69913ef) - Title block can have an action visible only on hover
2447
+ - [#19661](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19661) [`474d69913ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/474d69913ef) - Title block can have an action visible only on hover
2432
2448
 
2433
2449
  ## 17.7.2
2434
2450
 
2435
2451
  ### Patch Changes
2436
2452
 
2437
- - [`9066a1e8154`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9066a1e8154) - EDM-2926: Add title override for title block
2453
+ - [#19436](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19436) [`9066a1e8154`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9066a1e8154) - EDM-2926: Add title override for title block
2438
2454
 
2439
2455
  ## 17.7.1
2440
2456
 
2441
2457
  ### Patch Changes
2442
2458
 
2443
- - [`123201c5105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/123201c5105) - Add ability to add custom action item
2459
+ - [#19441](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19441) [`123201c5105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/123201c5105) - Add ability to add custom action item
2444
2460
 
2445
2461
  ## 17.7.0
2446
2462
 
2447
2463
  ### Minor Changes
2448
2464
 
2449
- - [`924aa854655`](https://bitbucket.org/atlassian/atlassian-frontend/commits/924aa854655) - Replaced deprecated dependency with @atlaskit/droplist and @atlaskit/item with @atlaskit/dropdown-menu in block card actions list
2465
+ - [#19019](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19019) [`924aa854655`](https://bitbucket.org/atlassian/atlassian-frontend/commits/924aa854655) - Replaced deprecated dependency with @atlaskit/droplist and @atlaskit/item with @atlaskit/dropdown-menu in block card actions list
2450
2466
  - [`fb15a8a421c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb15a8a421c) - move smart-card views and helpers from media-ui into smart-card
2451
2467
 
2452
2468
  ### Patch Changes
@@ -2457,95 +2473,95 @@
2457
2473
 
2458
2474
  ### Minor Changes
2459
2475
 
2460
- - [`0cab291e19e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0cab291e19e) - Add "more" and dopdown for actions when there is more then 2
2476
+ - [#19341](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19341) [`0cab291e19e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0cab291e19e) - Add "more" and dopdown for actions when there is more then 2
2461
2477
 
2462
2478
  ## 17.5.3
2463
2479
 
2464
2480
  ### Patch Changes
2465
2481
 
2466
- - [`e68f0f554fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e68f0f554fa) - remove mousedown handler for inline links and add a vr test for the logic
2482
+ - [#19339](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19339) [`e68f0f554fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e68f0f554fa) - remove mousedown handler for inline links and add a vr test for the logic
2467
2483
 
2468
2484
  ## 17.5.2
2469
2485
 
2470
2486
  ### Patch Changes
2471
2487
 
2472
- - [`0fb7e85e70a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0fb7e85e70a) - Flexible UI: Add PreviewBlock
2488
+ - [#19307](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19307) [`0fb7e85e70a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0fb7e85e70a) - Flexible UI: Add PreviewBlock
2473
2489
 
2474
2490
  ## 17.5.1
2475
2491
 
2476
2492
  ### Patch Changes
2477
2493
 
2478
- - [`238facb8e1a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/238facb8e1a) - Flexible UI: Add Preview element
2494
+ - [#19296](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19296) [`238facb8e1a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/238facb8e1a) - Flexible UI: Add Preview element
2479
2495
 
2480
2496
  ## 17.5.0
2481
2497
 
2482
2498
  ### Minor Changes
2483
2499
 
2484
- - [`be8dc55e85d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be8dc55e85d) - [ux] Add Footer block
2500
+ - [#19243](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19243) [`be8dc55e85d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be8dc55e85d) - [ux] Add Footer block
2485
2501
 
2486
2502
  ## 17.4.3
2487
2503
 
2488
2504
  ### Patch Changes
2489
2505
 
2490
- - [`5a50882a528`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a50882a528) - Flexible UI: Remove safeToken function
2506
+ - [#19213](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19213) [`5a50882a528`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5a50882a528) - Flexible UI: Remove safeToken function
2491
2507
 
2492
2508
  ## 17.4.2
2493
2509
 
2494
2510
  ### Patch Changes
2495
2511
 
2496
- - [`c8285bdcde4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8285bdcde4) - Flexible UI: Add SnippetBlock
2512
+ - [#19191](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19191) [`c8285bdcde4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c8285bdcde4) - Flexible UI: Add SnippetBlock
2497
2513
 
2498
2514
  ## 17.4.1
2499
2515
 
2500
2516
  ### Patch Changes
2501
2517
 
2502
- - [`ecf130ca7d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ecf130ca7d8) - Flexible UI: Remove check on Smart Links appearance
2518
+ - [#19085](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19085) [`ecf130ca7d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ecf130ca7d8) - Flexible UI: Remove check on Smart Links appearance
2503
2519
 
2504
2520
  ## 17.4.0
2505
2521
 
2506
2522
  ### Minor Changes
2507
2523
 
2508
- - [`392b7d2b98f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/392b7d2b98f) - Add Provider element
2524
+ - [#19175](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19175) [`392b7d2b98f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/392b7d2b98f) - Add Provider element
2509
2525
 
2510
2526
  ## 17.3.2
2511
2527
 
2512
2528
  ### Patch Changes
2513
2529
 
2514
- - [`02ed34221ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02ed34221ef) - Flexible UI: Add Snippet element
2530
+ - [#19107](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19107) [`02ed34221ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02ed34221ef) - Flexible UI: Add Snippet element
2515
2531
 
2516
2532
  ## 17.3.1
2517
2533
 
2518
2534
  ### Patch Changes
2519
2535
 
2520
- - [`66dc86e0331`](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dc86e0331) - Flexible UI: Check for null element
2536
+ - [#19029](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19029) [`66dc86e0331`](https://bitbucket.org/atlassian/atlassian-frontend/commits/66dc86e0331) - Flexible UI: Check for null element
2521
2537
 
2522
2538
  ## 17.3.0
2523
2539
 
2524
2540
  ### Minor Changes
2525
2541
 
2526
- - [`dab29fc6697`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dab29fc6697) - [ux] Flexible UI: AvatarGroup sizing updated for small and medium size
2542
+ - [#19028](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19028) [`dab29fc6697`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dab29fc6697) - [ux] Flexible UI: AvatarGroup sizing updated for small and medium size
2527
2543
 
2528
2544
  ### Patch Changes
2529
2545
 
2530
- - [`25408fac413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25408fac413) - Flexible UI: Add MetadataBlock example
2546
+ - [#19023](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19023) [`25408fac413`](https://bitbucket.org/atlassian/atlassian-frontend/commits/25408fac413) - Flexible UI: Add MetadataBlock example
2531
2547
 
2532
2548
  ## 17.2.1
2533
2549
 
2534
2550
  ### Patch Changes
2535
2551
 
2536
- - [`1d701660954`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d701660954) - Refactored deleteAction into a re-usable action component
2552
+ - [#18831](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18831) [`1d701660954`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d701660954) - Refactored deleteAction into a re-usable action component
2537
2553
 
2538
2554
  ## 17.2.0
2539
2555
 
2540
2556
  ### Minor Changes
2541
2557
 
2542
- - [`3200ce3abc5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3200ce3abc5) - Flexible UI: Add MetadataBlock
2558
+ - [#18951](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18951) [`3200ce3abc5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3200ce3abc5) - Flexible UI: Add MetadataBlock
2543
2559
 
2544
2560
  ## 17.1.0
2545
2561
 
2546
2562
  ### Minor Changes
2547
2563
 
2548
- - [`c73cde16d49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c73cde16d49) - [ux] Jira Work Management (JWM) List and Board view links will be converted into smart link embed by default
2564
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526) [`c73cde16d49`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c73cde16d49) - [ux] Jira Work Management (JWM) List and Board view links will be converted into smart link embed by default
2549
2565
  - [`948a410185b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/948a410185b) - [ux] New elements were added ModifiedOn and CreatedOn
2550
2566
  - [`6648e62bbfe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6648e62bbfe) - ### Expose smart-card SSR component
2551
2567
 
@@ -2567,7 +2583,7 @@
2567
2583
  - [`3c4e3cf2bd3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c4e3cf2bd3) - Flexible UI: Update sizing and styling
2568
2584
  - [`15b67162087`](https://bitbucket.org/atlassian/atlassian-frontend/commits/15b67162087) - Flexible UI: Add LinkIcon element
2569
2585
  - [`a53d41a0d93`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a53d41a0d93) - Flexible UI: Add TitleBlock error views
2570
- - [`12943538dde`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12943538dde) - Flexible UI: Add element - Title
2586
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752) [`12943538dde`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12943538dde) - Flexible UI: Add element - Title
2571
2587
  - [`a46aabfcc71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a46aabfcc71) - Flexible UI: TitleBlock metadata
2572
2588
  - [`8e1979f21ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8e1979f21ef) - Flexible UI: Update action styling and sizing
2573
2589
  - [`be56b069142`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be56b069142) - Flexible UI: Add element type Text
@@ -2611,7 +2627,7 @@
2611
2627
 
2612
2628
  ### Major Changes
2613
2629
 
2614
- - [`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
2630
+ - [#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
2615
2631
 
2616
2632
  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.
2617
2633
  Why change was made: As part of a coordinated upgrade effort across AF packages, as react-intl v2 is quite dated.
@@ -2657,7 +2673,7 @@
2657
2673
 
2658
2674
  ### Minor Changes
2659
2675
 
2660
- - [`af29def3dac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af29def3dac) - expose missing smart-card classnames
2676
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998) [`af29def3dac`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af29def3dac) - expose missing smart-card classnames
2661
2677
 
2662
2678
  ```
2663
2679
  import {
@@ -2690,13 +2706,13 @@
2690
2706
 
2691
2707
  ### Patch Changes
2692
2708
 
2693
- - [`d7f743bbbdd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7f743bbbdd) - useCallback for dispatchAnalytics to prevent multiple events firing on hover
2709
+ - [#16475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16475) [`d7f743bbbdd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7f743bbbdd) - useCallback for dispatchAnalytics to prevent multiple events firing on hover
2694
2710
 
2695
2711
  ## 16.2.0
2696
2712
 
2697
2713
  ### Minor Changes
2698
2714
 
2699
- - [`0448db49f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0448db49f68) - Implement UFO instrumentation events pattern
2715
+ - [#14777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/14777) [`0448db49f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0448db49f68) - Implement UFO instrumentation events pattern
2700
2716
 
2701
2717
  ### Patch Changes
2702
2718
 
@@ -2715,7 +2731,7 @@
2715
2731
 
2716
2732
  ### Minor Changes
2717
2733
 
2718
- - [`978e9280610`](https://bitbucket.org/atlassian/atlassian-frontend/commits/978e9280610) - add support for platform in BlockCard component
2734
+ - [#13864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13864) [`978e9280610`](https://bitbucket.org/atlassian/atlassian-frontend/commits/978e9280610) - add support for platform in BlockCard component
2719
2735
 
2720
2736
  ### Patch Changes
2721
2737
 
@@ -2726,7 +2742,7 @@
2726
2742
 
2727
2743
  ### Major Changes
2728
2744
 
2729
- - [`86aeb07cae3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/86aeb07cae3) - EDM-2264: allow embed resize events from all domains
2745
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302) [`86aeb07cae3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/86aeb07cae3) - EDM-2264: allow embed resize events from all domains
2730
2746
 
2731
2747
  **Note:**
2732
2748
 
@@ -2774,7 +2790,7 @@
2774
2790
 
2775
2791
  ### Minor Changes
2776
2792
 
2777
- - [`96b6fb1c6b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96b6fb1c6b9) - Add sandbox property to Smart Links embed
2793
+ - [#12837](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12837) [`96b6fb1c6b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96b6fb1c6b9) - Add sandbox property to Smart Links embed
2778
2794
  - [`c0fa45830e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c0fa45830e1) - Add sandbox prop to Smart Links block card preview iframe
2779
2795
 
2780
2796
  ### Patch Changes
@@ -2785,7 +2801,7 @@
2785
2801
 
2786
2802
  ### Minor Changes
2787
2803
 
2788
- - [`3c79bfd15b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c79bfd15b4) - Add sideEffects false for better tree-shaking support
2804
+ - [#12328](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/12328) [`3c79bfd15b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c79bfd15b4) - Add sideEffects false for better tree-shaking support
2789
2805
 
2790
2806
  ### Patch Changes
2791
2807
 
@@ -2795,14 +2811,14 @@
2795
2811
 
2796
2812
  ### Patch Changes
2797
2813
 
2798
- - [`d9cfa5c45dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9cfa5c45dc) - Render Polaris (Jira Product Discovery) view as an embed by default
2814
+ - [#11649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11649) [`d9cfa5c45dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9cfa5c45dc) - Render Polaris (Jira Product Discovery) view as an embed by default
2799
2815
  - Updated dependencies
2800
2816
 
2801
2817
  ## 15.3.0
2802
2818
 
2803
2819
  ### Minor Changes
2804
2820
 
2805
- - [`f7ff2c84451`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7ff2c84451) - bump json-ld-types from 2.2.2 to ^2.3.0"
2821
+ - [#11113](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/11113) [`f7ff2c84451`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f7ff2c84451) - bump json-ld-types from 2.2.2 to ^2.3.0"
2806
2822
  - [`c9dd0243320`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c9dd0243320) - [ux] prepend page title with emoji icon for smart link and block card
2807
2823
 
2808
2824
  ### Patch Changes
@@ -2813,14 +2829,14 @@
2813
2829
 
2814
2830
  ### Patch Changes
2815
2831
 
2816
- - [`277ed9667b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/277ed9667b2) - Fixed media bundle names following atlassian-frontend linting rules
2832
+ - [#10230](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/10230) [`277ed9667b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/277ed9667b2) - Fixed media bundle names following atlassian-frontend linting rules
2817
2833
  - Updated dependencies
2818
2834
 
2819
2835
  ## 15.2.0
2820
2836
 
2821
2837
  ### Minor Changes
2822
2838
 
2823
- - [`e494a28d544`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e494a28d544) - New exported member `embedHeaderHeight` is added. Also all the instances of `onResolve` callback now return an object that contains optional extra property `aspectRatio`.
2839
+ - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510) [`e494a28d544`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e494a28d544) - New exported member `embedHeaderHeight` is added. Also all the instances of `onResolve` callback now return an object that contains optional extra property `aspectRatio`.
2824
2840
 
2825
2841
  ### Patch Changes
2826
2842
 
@@ -2830,7 +2846,7 @@
2830
2846
 
2831
2847
  ### Minor Changes
2832
2848
 
2833
- - [`dfbb0a86959`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfbb0a86959) - [ux] Add ability for avatars to be shown in card view through adding the extractBlockUsers method
2849
+ - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083) [`dfbb0a86959`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dfbb0a86959) - [ux] Add ability for avatars to be shown in card view through adding the extractBlockUsers method
2834
2850
  - [`203e4021ada`](https://bitbucket.org/atlassian/atlassian-frontend/commits/203e4021ada) - [ux] Add support of .docx, .xlsx, .pptx, .rar mime types and folder; fix .doc and .ppt
2835
2851
 
2836
2852
  ### Patch Changes
@@ -2843,7 +2859,7 @@
2843
2859
 
2844
2860
  ### Patch Changes
2845
2861
 
2846
- - [`845dee52a4a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/845dee52a4a) - [ux] Adds additional request access metadata to forbidden urls if avalible
2862
+ - [#8644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8644) [`845dee52a4a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/845dee52a4a) - [ux] Adds additional request access metadata to forbidden urls if avalible
2847
2863
  - [`8d6a82191ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d6a82191ab) - Removes unused props from icon usage.
2848
2864
  - [`695ce4fe717`](https://bitbucket.org/atlassian/atlassian-frontend/commits/695ce4fe717) - Adds additional request access metadata to forbidden urls if avalible
2849
2865
  - Updated dependencies
@@ -2852,7 +2868,7 @@
2852
2868
 
2853
2869
  ### Major Changes
2854
2870
 
2855
- - [`08c624ac7b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c624ac7b8) - [ux] `inlinePreloaderStyle` prop was added to SmartCard. It can be either `'on-left-with-skeleton'` or a `'on-right-without-skeleton'`
2871
+ - [#8178](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8178) [`08c624ac7b8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c624ac7b8) - [ux] `inlinePreloaderStyle` prop was added to SmartCard. It can be either `'on-left-with-skeleton'` or a `'on-right-without-skeleton'`
2856
2872
 
2857
2873
  ### Patch Changes
2858
2874
 
@@ -2865,33 +2881,33 @@
2865
2881
 
2866
2882
  ### Patch Changes
2867
2883
 
2868
- - [`e604c297faf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e604c297faf) - Prevent resolveUnsupported errors being sent as unresolved events to stop SLO pollution.
2884
+ - [#8381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/8381) [`e604c297faf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e604c297faf) - Prevent resolveUnsupported errors being sent as unresolved events to stop SLO pollution.
2869
2885
 
2870
2886
  ## 14.8.4
2871
2887
 
2872
2888
  ### Patch Changes
2873
2889
 
2874
- - [`d9d5322b260`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9d5322b260) - [ux] Render as a blue link in adf when there is a fatal error on smartcard
2890
+ - [#7762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7762) [`d9d5322b260`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9d5322b260) - [ux] Render as a blue link in adf when there is a fatal error on smartcard
2875
2891
  - Updated dependencies
2876
2892
 
2877
2893
  ## 14.8.3
2878
2894
 
2879
2895
  ### Patch Changes
2880
2896
 
2881
- - [`eda409bf20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eda409bf20) - Handle network errors in smart-card client
2897
+ - [#7425](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7425) [`eda409bf20`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eda409bf20) - Handle network errors in smart-card client
2882
2898
  - Updated dependencies
2883
2899
 
2884
2900
  ## 14.8.2
2885
2901
 
2886
2902
  ### Patch Changes
2887
2903
 
2888
- - [`965c783580`](https://bitbucket.org/atlassian/atlassian-frontend/commits/965c783580) - add override references for Trello only
2904
+ - [#7559](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7559) [`965c783580`](https://bitbucket.org/atlassian/atlassian-frontend/commits/965c783580) - add override references for Trello only
2889
2905
 
2890
2906
  ## 14.8.1
2891
2907
 
2892
2908
  ### Patch Changes
2893
2909
 
2894
- - [`fae156831b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae156831b) - Removed unused devDependency (was only used in one example, which has been refactored)
2910
+ - [#7170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/7170) [`fae156831b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae156831b) - Removed unused devDependency (was only used in one example, which has been refactored)
2895
2911
  - [`df97510b77`](https://bitbucket.org/atlassian/atlassian-frontend/commits/df97510b77) - handle backend errors in smart-link dataloader
2896
2912
  - [`b4cd19ad66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4cd19ad66) - To allow jira roadmap link with query param to convert to embed view
2897
2913
  - Updated dependencies
@@ -2900,7 +2916,7 @@
2900
2916
 
2901
2917
  ### Minor Changes
2902
2918
 
2903
- - [`6bef7adf66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bef7adf66) - `Card` component expects optional `embedIframeRef` iframe ref. New `IframelyResizeMessageListener` HOC component export is introduced.
2919
+ - [#6930](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6930) [`6bef7adf66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6bef7adf66) - `Card` component expects optional `embedIframeRef` iframe ref. New `IframelyResizeMessageListener` HOC component export is introduced.
2904
2920
 
2905
2921
  ### Patch Changes
2906
2922
 
@@ -2912,7 +2928,7 @@
2912
2928
 
2913
2929
  ### Minor Changes
2914
2930
 
2915
- - [`48995f73b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48995f73b2) - Create entry points to export internal API isolated from UI changes.
2931
+ - [#6571](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6571) [`48995f73b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48995f73b2) - Create entry points to export internal API isolated from UI changes.
2916
2932
 
2917
2933
  ### Patch Changes
2918
2934
 
@@ -2922,13 +2938,13 @@
2922
2938
 
2923
2939
  ### Patch Changes
2924
2940
 
2925
- - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
2941
+ - [#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
2926
2942
 
2927
2943
  ## 14.6.0
2928
2944
 
2929
2945
  ### Minor Changes
2930
2946
 
2931
- - [`950ed4f24c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/950ed4f24c) - [ux] The embed card will now fallback to a inlineCard instead of blockCard in mobile
2947
+ - [#6228](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/6228) [`950ed4f24c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/950ed4f24c) - [ux] The embed card will now fallback to a inlineCard instead of blockCard in mobile
2932
2948
 
2933
2949
  ### Patch Changes
2934
2950
 
@@ -2940,7 +2956,7 @@
2940
2956
 
2941
2957
  ### Minor Changes
2942
2958
 
2943
- - [`09de4533b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09de4533b0) - Make findPattern available to consumers
2959
+ - [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516) [`09de4533b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09de4533b0) - Make findPattern available to consumers
2944
2960
  - [`3ae1d5929f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ae1d5929f) - [ux] Jira roadmap of classic projects will now be an embedCard by default
2945
2961
 
2946
2962
  ### Patch Changes
@@ -2951,13 +2967,13 @@
2951
2967
 
2952
2968
  ### Patch Changes
2953
2969
 
2954
- - [`676241b24e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/676241b24e) - HOT-93133: fix analytics for Smart Links
2970
+ - [#5734](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5734) [`676241b24e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/676241b24e) - HOT-93133: fix analytics for Smart Links
2955
2971
 
2956
2972
  ## 14.4.3
2957
2973
 
2958
2974
  ### Patch Changes
2959
2975
 
2960
- - [`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.
2976
+ - [#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.
2961
2977
  This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
2962
2978
  Also add `typescript` to `devDependencies` to denote version that the package was built with.
2963
2979
 
@@ -2971,13 +2987,13 @@
2971
2987
 
2972
2988
  ### Patch Changes
2973
2989
 
2974
- - [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo analytics-next file restructure to allow external ts definitions to continue working
2990
+ - [#5164](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5164) [`2ac834240e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ac834240e) - Undo analytics-next file restructure to allow external ts definitions to continue working
2975
2991
 
2976
2992
  ## 14.4.0
2977
2993
 
2978
2994
  ### Minor Changes
2979
2995
 
2980
- - [`22105274d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22105274d2) - Only render smart-card when context.value is available
2996
+ - [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749) [`22105274d2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22105274d2) - Only render smart-card when context.value is available
2981
2997
  - [`c2e573479c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2e573479c) - EDM-937: added prefetching to Smart Links rendering path.
2982
2998
 
2983
2999
  As of this version of `@atlaskit/smart-card`, when a Smart Link is initially rendered, one of two things will take place:
@@ -3008,13 +3024,13 @@
3008
3024
 
3009
3025
  ### Minor Changes
3010
3026
 
3011
- - [`bc754bab5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc754bab5f) - expose SmartCardContext from @atlaskit/smart-card
3027
+ - [#4829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4829) [`bc754bab5f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc754bab5f) - expose SmartCardContext from @atlaskit/smart-card
3012
3028
 
3013
3029
  ## 14.2.3
3014
3030
 
3015
3031
  ### Patch Changes
3016
3032
 
3017
- - [`6e5372dcda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e5372dcda) - **Ticket:** EDM-1121
3033
+ - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424) [`6e5372dcda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e5372dcda) - **Ticket:** EDM-1121
3018
3034
 
3019
3035
  **Changes:**
3020
3036
 
@@ -3038,7 +3054,7 @@
3038
3054
 
3039
3055
  ### Patch Changes
3040
3056
 
3041
- - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
3057
+ - [#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
3042
3058
 
3043
3059
  Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
3044
3060
  to prevent duplicates of tslib being bundled.
@@ -3047,13 +3063,13 @@
3047
3063
 
3048
3064
  ### Patch Changes
3049
3065
 
3050
- - [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
3066
+ - [#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
3051
3067
 
3052
3068
  ## 14.2.0
3053
3069
 
3054
3070
  ### Minor Changes
3055
3071
 
3056
- - [`fae1f71b0f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae1f71b0f) - Implement caching of duplicate URLs
3072
+ - [#3823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3823) [`fae1f71b0f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fae1f71b0f) - Implement caching of duplicate URLs
3057
3073
 
3058
3074
  ### Patch Changes
3059
3075
 
@@ -3068,7 +3084,7 @@
3068
3084
 
3069
3085
  ### Minor Changes
3070
3086
 
3071
- - [`4311cf9bf1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4311cf9bf1) - Add additional connectFailedEvent reasons for smartcards
3087
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428) [`4311cf9bf1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4311cf9bf1) - Add additional connectFailedEvent reasons for smartcards
3072
3088
 
3073
3089
  ### Patch Changes
3074
3090
 
@@ -3082,7 +3098,7 @@
3082
3098
 
3083
3099
  ### Major Changes
3084
3100
 
3085
- - [`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.
3101
+ - [#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.
3086
3102
  For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
3087
3103
 
3088
3104
  ### Patch Changes
@@ -3093,14 +3109,14 @@
3093
3109
 
3094
3110
  ### Patch Changes
3095
3111
 
3096
- - [`cd9c2500a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd9c2500a8) - EDM-834: Jira Roadmap embeds will now be an embedCard by default and also wide
3112
+ - [#2763](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2763) [`cd9c2500a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd9c2500a8) - EDM-834: Jira Roadmap embeds will now be an embedCard by default and also wide
3097
3113
  - [`b17d1c437a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b17d1c437a) - EDM-920: add required className to intersection observer loader
3098
3114
 
3099
3115
  ## 13.5.0
3100
3116
 
3101
3117
  ### Minor Changes
3102
3118
 
3103
- - [`0ae829a4ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae829a4ea) - EDM-648: Adds resizing and alignment to embed cards
3119
+ - [#2443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2443) [`0ae829a4ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae829a4ea) - EDM-648: Adds resizing and alignment to embed cards
3104
3120
  - [`62269a3e45`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62269a3e45) - Added undefined links
3105
3121
  - [`996e045cc4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/996e045cc4) - EDM-776: add platform prop to @atlaskit/smart-card for rendering fallback on mobile (embed -> block)
3106
3122
 
@@ -3115,14 +3131,14 @@
3115
3131
 
3116
3132
  ### Patch Changes
3117
3133
 
3118
- - [`455e383cda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/455e383cda) - Use IntersectionObserver in smart-card to detect when a link enters the viewport
3134
+ - [#2984](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2984) [`455e383cda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/455e383cda) - Use IntersectionObserver in smart-card to detect when a link enters the viewport
3119
3135
  - Updated dependencies
3120
3136
 
3121
3137
  ## 13.4.0
3122
3138
 
3123
3139
  ### Minor Changes
3124
3140
 
3125
- - [`50c333ab3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50c333ab3a) - EDM-216: Adds EmbedCards in the Editor under the flag - allowEmbeds in the UNSAFE_cards prop
3141
+ - [#2137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/2137) [`50c333ab3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50c333ab3a) - EDM-216: Adds EmbedCards in the Editor under the flag - allowEmbeds in the UNSAFE_cards prop
3126
3142
 
3127
3143
  ### Patch Changes
3128
3144
 
@@ -3136,7 +3152,7 @@
3136
3152
 
3137
3153
  ### Minor Changes
3138
3154
 
3139
- - [`9848dca5c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9848dca5c7) - Updated json-ld-types to 2.1.0
3155
+ - [#1868](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/1868) [`9848dca5c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9848dca5c7) - Updated json-ld-types to 2.1.0
3140
3156
 
3141
3157
  ### Patch Changes
3142
3158