@atlaskit/link-create 2.0.0 → 2.2.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 (129) hide show
  1. package/CHANGELOG.md +352 -337
  2. package/dist/cjs/common/constants.js +8 -2
  3. package/dist/cjs/{ui/link-create → common/ui}/confirm-dismiss-dialog/main.js +4 -6
  4. package/dist/cjs/{ui/link-create → common/ui}/edit-modal/index.js +4 -8
  5. package/dist/cjs/{ui/link-create → common/ui}/error-boundary/index.js +1 -1
  6. package/dist/cjs/{controllers → common/ui}/experience-tracker/index.js +3 -3
  7. package/dist/cjs/common/ui/link-create-content/index.js +21 -0
  8. package/dist/cjs/{ui/link-create → common/ui}/modal-hero/index.js +1 -3
  9. package/dist/cjs/controllers/callback-context/main.js +1 -1
  10. package/dist/cjs/index.js +6 -0
  11. package/dist/cjs/ui/create-form/main.js +1 -1
  12. package/dist/cjs/ui/create-form/user-picker/index.js +12 -0
  13. package/dist/cjs/ui/create-form/user-picker/main.js +59 -0
  14. package/dist/cjs/ui/create-form/user-picker/types.js +5 -0
  15. package/dist/cjs/ui/index.js +19 -5
  16. package/dist/cjs/ui/{main.js → inline-create/index.js} +11 -17
  17. package/dist/cjs/ui/inline-create/main.js +125 -0
  18. package/dist/cjs/ui/modal-create/index.js +38 -0
  19. package/dist/cjs/ui/{link-create → modal-create}/main.js +36 -39
  20. package/dist/es2019/common/constants.js +7 -1
  21. package/dist/es2019/{ui/link-create → common/ui}/confirm-dismiss-dialog/main.js +4 -7
  22. package/dist/es2019/{ui/link-create → common/ui}/edit-modal/index.js +4 -10
  23. package/dist/es2019/{ui/link-create → common/ui}/error-boundary/index.js +1 -1
  24. package/dist/es2019/{controllers → common/ui}/experience-tracker/index.js +3 -3
  25. package/dist/es2019/common/ui/link-create-content/index.js +11 -0
  26. package/dist/es2019/{ui/link-create → common/ui}/modal-hero/index.js +1 -3
  27. package/dist/es2019/controllers/callback-context/main.js +1 -1
  28. package/dist/es2019/index.js +4 -1
  29. package/dist/es2019/ui/create-form/main.js +1 -1
  30. package/dist/es2019/ui/create-form/user-picker/index.js +1 -0
  31. package/dist/es2019/ui/create-form/user-picker/main.js +48 -0
  32. package/dist/es2019/ui/create-form/user-picker/types.js +1 -0
  33. package/dist/es2019/ui/index.js +4 -2
  34. package/dist/es2019/ui/inline-create/index.js +30 -0
  35. package/dist/es2019/ui/inline-create/main.js +100 -0
  36. package/dist/es2019/ui/{main.js → modal-create/index.js} +8 -14
  37. package/dist/es2019/ui/{link-create → modal-create}/main.js +19 -19
  38. package/dist/esm/common/constants.js +7 -1
  39. package/dist/esm/{ui/link-create → common/ui}/confirm-dismiss-dialog/main.js +4 -6
  40. package/dist/esm/{ui/link-create → common/ui}/edit-modal/index.js +4 -8
  41. package/dist/esm/{ui/link-create → common/ui}/error-boundary/index.js +1 -1
  42. package/dist/esm/{controllers → common/ui}/experience-tracker/index.js +3 -3
  43. package/dist/esm/common/ui/link-create-content/index.js +12 -0
  44. package/dist/esm/{ui/link-create → common/ui}/modal-hero/index.js +1 -3
  45. package/dist/esm/controllers/callback-context/main.js +1 -1
  46. package/dist/esm/index.js +4 -1
  47. package/dist/esm/ui/create-form/main.js +1 -1
  48. package/dist/esm/ui/create-form/user-picker/index.js +1 -0
  49. package/dist/esm/ui/create-form/user-picker/main.js +51 -0
  50. package/dist/esm/ui/create-form/user-picker/types.js +1 -0
  51. package/dist/esm/ui/index.js +4 -2
  52. package/dist/esm/ui/inline-create/index.js +30 -0
  53. package/dist/esm/ui/inline-create/main.js +119 -0
  54. package/dist/esm/ui/{main.js → modal-create/index.js} +8 -14
  55. package/dist/esm/ui/{link-create → modal-create}/main.js +38 -41
  56. package/dist/types/common/constants.d.ts +2 -0
  57. package/dist/types/common/ui/Button/index.d.ts +1 -1
  58. package/dist/types/common/ui/confirm-dismiss-dialog/main.d.ts +7 -0
  59. package/dist/types/common/ui/edit-modal/index.d.ts +11 -0
  60. package/dist/types/{ui/link-create → common/ui}/error-boundary/index.d.ts +1 -1
  61. package/dist/types/common/ui/link-create-content/index.d.ts +8 -0
  62. package/dist/types/common/utils/analytics/index.d.ts +1 -1
  63. package/dist/types/controllers/exit-warning-modal-context/index.d.ts +1 -1
  64. package/dist/types/controllers/form-context/index.d.ts +1 -1
  65. package/dist/types/index.d.ts +2 -2
  66. package/dist/types/ui/create-form/form-spy/index.d.ts +1 -1
  67. package/dist/types/ui/create-form/user-picker/index.d.ts +1 -0
  68. package/dist/types/ui/create-form/user-picker/main.d.ts +8 -0
  69. package/dist/types/ui/create-form/user-picker/types.d.ts +25 -0
  70. package/dist/types/ui/index.d.ts +3 -1
  71. package/dist/types/ui/inline-create/index.d.ts +5 -0
  72. package/dist/types/ui/inline-create/main.d.ts +5 -0
  73. package/dist/types/ui/modal-create/index.d.ts +5 -0
  74. package/dist/{types-ts4.5/ui/link-create → types/ui/modal-create}/main.d.ts +1 -1
  75. package/dist/types-ts4.5/common/constants.d.ts +2 -0
  76. package/dist/types-ts4.5/common/ui/Button/index.d.ts +1 -1
  77. package/dist/types-ts4.5/common/ui/confirm-dismiss-dialog/main.d.ts +7 -0
  78. package/dist/types-ts4.5/common/ui/edit-modal/index.d.ts +11 -0
  79. package/dist/types-ts4.5/{ui/link-create → common/ui}/error-boundary/index.d.ts +1 -1
  80. package/dist/types-ts4.5/common/ui/link-create-content/index.d.ts +8 -0
  81. package/dist/types-ts4.5/common/utils/analytics/index.d.ts +1 -1
  82. package/dist/types-ts4.5/controllers/exit-warning-modal-context/index.d.ts +1 -1
  83. package/dist/types-ts4.5/controllers/form-context/index.d.ts +1 -1
  84. package/dist/types-ts4.5/index.d.ts +2 -2
  85. package/dist/types-ts4.5/ui/create-form/form-spy/index.d.ts +1 -1
  86. package/dist/types-ts4.5/ui/create-form/user-picker/index.d.ts +1 -0
  87. package/dist/types-ts4.5/ui/create-form/user-picker/main.d.ts +8 -0
  88. package/dist/types-ts4.5/ui/create-form/user-picker/types.d.ts +25 -0
  89. package/dist/types-ts4.5/ui/index.d.ts +3 -1
  90. package/dist/types-ts4.5/ui/{main.d.ts → inline-create/index.d.ts} +1 -3
  91. package/dist/types-ts4.5/ui/inline-create/main.d.ts +5 -0
  92. package/dist/{types/ui/main.d.ts → types-ts4.5/ui/modal-create/index.d.ts} +1 -3
  93. package/dist/{types/ui/link-create → types-ts4.5/ui/modal-create}/main.d.ts +1 -1
  94. package/example-helpers/mock-disclaimer.tsx +11 -11
  95. package/example-helpers/mock-plugin-form.tsx +71 -74
  96. package/package.json +6 -7
  97. package/dist/cjs/ui/link-create/index.js +0 -13
  98. package/dist/es2019/ui/link-create/index.js +0 -1
  99. package/dist/esm/ui/link-create/index.js +0 -1
  100. package/dist/types/ui/link-create/confirm-dismiss-dialog/main.d.ts +0 -6
  101. package/dist/types/ui/link-create/edit-modal/index.d.ts +0 -8
  102. package/dist/types/ui/link-create/index.d.ts +0 -1
  103. package/dist/types-ts4.5/ui/link-create/confirm-dismiss-dialog/main.d.ts +0 -6
  104. package/dist/types-ts4.5/ui/link-create/edit-modal/index.d.ts +0 -8
  105. package/dist/types-ts4.5/ui/link-create/index.d.ts +0 -1
  106. /package/dist/cjs/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.js +0 -0
  107. /package/dist/cjs/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.js +0 -0
  108. /package/dist/cjs/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.js +0 -0
  109. /package/dist/cjs/ui/{link-create → modal-create}/messages.js +0 -0
  110. /package/dist/es2019/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.js +0 -0
  111. /package/dist/es2019/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.js +0 -0
  112. /package/dist/es2019/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.js +0 -0
  113. /package/dist/es2019/ui/{link-create → modal-create}/messages.js +0 -0
  114. /package/dist/esm/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.js +0 -0
  115. /package/dist/esm/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.js +0 -0
  116. /package/dist/esm/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.js +0 -0
  117. /package/dist/esm/ui/{link-create → modal-create}/messages.js +0 -0
  118. /package/dist/types/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.d.ts +0 -0
  119. /package/dist/types/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.d.ts +0 -0
  120. /package/dist/types/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.d.ts +0 -0
  121. /package/dist/types/{controllers → common/ui}/experience-tracker/index.d.ts +0 -0
  122. /package/dist/types/{ui/link-create → common/ui}/modal-hero/index.d.ts +0 -0
  123. /package/dist/types/ui/{link-create → modal-create}/messages.d.ts +0 -0
  124. /package/dist/types-ts4.5/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.d.ts +0 -0
  125. /package/dist/types-ts4.5/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.d.ts +0 -0
  126. /package/dist/types-ts4.5/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.d.ts +0 -0
  127. /package/dist/types-ts4.5/{controllers → common/ui}/experience-tracker/index.d.ts +0 -0
  128. /package/dist/types-ts4.5/{ui/link-create → common/ui}/modal-hero/index.d.ts +0 -0
  129. /package/dist/types-ts4.5/ui/{link-create → modal-create}/messages.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,820 +1,835 @@
1
1
  # @atlaskit/link-create
2
2
 
3
+ ## 2.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#105330](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105330)
8
+ [`9fb53f33cb33`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9fb53f33cb33) -
9
+ [ux] Added a goal owner selector component to the goal creation modal. Additionally, added a new
10
+ user-picker component to be used in CreateForm. Goal picker has a new mandatory default owner prop
11
+
12
+ ## 2.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#105452](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105452)
17
+ [`29a14c8d1f23`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/29a14c8d1f23) -
18
+ Add inline create component and internal refactor for link-create
19
+
3
20
  ## 2.0.0
4
21
 
5
22
  ### Major Changes
6
23
 
7
- - [#89064](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89064)
8
- [`545c87a31801`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/545c87a31801) -
9
- Cleans up the feature flag implemented in 1.11.0 which is now a breaking change for plugins (not
10
- for direct consumers).
24
+ - [#89064](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89064)
25
+ [`545c87a31801`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/545c87a31801) -
26
+ Cleans up the feature flag implemented in 1.11.0 which is now a breaking change for plugins (not
27
+ for direct consumers).
11
28
 
12
- Improves observability over failure cases when plugins call `onFailure()`, or throw an error to
13
- be caught by `<LinkCreate />`'s internal error boundary.
29
+ Improves observability over failure cases when plugins call `onFailure()`, or throw an error to be
30
+ caught by `<LinkCreate />`'s internal error boundary.
14
31
 
15
- Errors provided via `onFailure()` from plugins no longer play a role in displaying an error
16
- message to users in the `<CreateForm />`.
32
+ Errors provided via `onFailure()` from plugins no longer play a role in displaying an error
33
+ message to users in the `<CreateForm />`.
17
34
 
18
- When handling form submission errors, plugin should return an object of error messages in the
19
- `onSubmit()` handler provided to the `CreateForm`. To set a generic error, use the newly exposed
20
- `FORM_ERROR`
21
- [see react-final-form](https://final-form.org/docs/react-final-form/types/FormProps#submission-errors)
22
- to define an error message on the object resolved `onSubmit`.
35
+ When handling form submission errors, plugin should return an object of error messages in the
36
+ `onSubmit()` handler provided to the `CreateForm`. To set a generic error, use the newly exposed
37
+ `FORM_ERROR`
38
+ [see react-final-form](https://final-form.org/docs/react-final-form/types/FormProps#submission-errors)
39
+ to define an error message on the object resolved `onSubmit`.
23
40
 
24
- Example:
41
+ Example:
25
42
 
26
- ```tsx
27
- import { FORM_ERROR } from '@atlaskit/link-create';
43
+ ```tsx
44
+ import { FORM_ERROR } from '@atlaskit/link-create';
28
45
 
29
- <CreateForm
30
- onSubmit={(data) => {
31
- return {
32
- [FORM_ERROR]: 'Something bad happened!',
33
- };
34
- }}
35
- />;
36
- ```
46
+ <CreateForm
47
+ onSubmit={(data) => {
48
+ return {
49
+ [FORM_ERROR]: 'Something bad happened!',
50
+ };
51
+ }}
52
+ />;
53
+ ```
37
54
 
38
55
  ### Minor Changes
39
56
 
40
- - [#89064](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89064)
41
- [`1a6df7c186bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1a6df7c186bf) -
42
- Adds required fields instruction to start of link create form.
57
+ - [#89064](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89064)
58
+ [`1a6df7c186bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1a6df7c186bf) -
59
+ Adds required fields instruction to start of link create form.
43
60
 
44
61
  ## 1.15.9
45
62
 
46
63
  ### Patch Changes
47
64
 
48
- - Updated dependencies
65
+ - Updated dependencies
49
66
 
50
67
  ## 1.15.8
51
68
 
52
69
  ### Patch Changes
53
70
 
54
- - Updated dependencies
71
+ - Updated dependencies
55
72
 
56
73
  ## 1.15.7
57
74
 
58
75
  ### Patch Changes
59
76
 
60
- - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
61
- [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
62
- Migrated to the new button component
63
- - Updated dependencies
77
+ - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
78
+ [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
79
+ Migrated to the new button component
80
+ - Updated dependencies
64
81
 
65
82
  ## 1.15.6
66
83
 
67
84
  ### Patch Changes
68
85
 
69
- - [#91203](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91203)
70
- [`3c8348468618`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c8348468618) -
71
- Minor Typescript changes to improve compatibility with React 18
86
+ - [#91203](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91203)
87
+ [`3c8348468618`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c8348468618) -
88
+ Minor Typescript changes to improve compatibility with React 18
72
89
 
73
90
  ## 1.15.5
74
91
 
75
92
  ### Patch Changes
76
93
 
77
- - [#88102](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88102)
78
- [`e424cbf4d842`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e424cbf4d842) -
79
- Cleans up internal observability feature flag. No expected functional changes.
80
- - Updated dependencies
94
+ - [#88102](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88102)
95
+ [`e424cbf4d842`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e424cbf4d842) -
96
+ Cleans up internal observability feature flag. No expected functional changes.
97
+ - Updated dependencies
81
98
 
82
99
  ## 1.15.4
83
100
 
84
101
  ### Patch Changes
85
102
 
86
- - [#87422](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87422)
87
- [`54c6f458dbd6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/54c6f458dbd6) -
88
- Cleansup ff platform.linking-platform.link-create.enable-sentry-client, enabling sentry client
89
- to capture exceptions
103
+ - [#87422](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87422)
104
+ [`54c6f458dbd6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/54c6f458dbd6) -
105
+ Cleansup ff platform.linking-platform.link-create.enable-sentry-client, enabling sentry client to
106
+ capture exceptions
90
107
 
91
108
  ## 1.15.3
92
109
 
93
110
  ### Patch Changes
94
111
 
95
- - [#86416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86416)
96
- [`91c59efc1417`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91c59efc1417) -
97
- Cleans up feature flag platform.linking-platform.link-create.slo-ignore-failed-fetch permanently
98
- marking failed to fetch errors to be ignored for SLO metrics.
112
+ - [#86416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86416)
113
+ [`91c59efc1417`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91c59efc1417) -
114
+ Cleans up feature flag platform.linking-platform.link-create.slo-ignore-failed-fetch permanently
115
+ marking failed to fetch errors to be ignored for SLO metrics.
99
116
 
100
117
  ## 1.15.2
101
118
 
102
119
  ### Patch Changes
103
120
 
104
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
105
- [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
106
- Upgrade Typescript from `4.9.5` to `5.4.2`
121
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
122
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
123
+ Upgrade Typescript from `4.9.5` to `5.4.2`
107
124
 
108
125
  ## 1.15.1
109
126
 
110
127
  ### Patch Changes
111
128
 
112
- - Updated dependencies
129
+ - Updated dependencies
113
130
 
114
131
  ## 1.15.0
115
132
 
116
133
  ### Minor Changes
117
134
 
118
- - [#81320](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81320)
119
- [`d26f355c6fa9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d26f355c6fa9) -
120
- allow rendering of ModalHero in LinkCreate modal
135
+ - [#81320](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81320)
136
+ [`d26f355c6fa9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d26f355c6fa9) -
137
+ allow rendering of ModalHero in LinkCreate modal
121
138
 
122
139
  ## 1.14.6
123
140
 
124
141
  ### Patch Changes
125
142
 
126
- - [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
127
- [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
128
- Update usage of `React.FC` to explicity include `children`
143
+ - [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
144
+ [`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
145
+ Update usage of `React.FC` to explicity include `children`
129
146
 
130
147
  ## 1.14.5
131
148
 
132
149
  ### Patch Changes
133
150
 
134
- - Updated dependencies
151
+ - Updated dependencies
135
152
 
136
153
  ## 1.14.4
137
154
 
138
155
  ### Patch Changes
139
156
 
140
- - Updated dependencies
157
+ - Updated dependencies
141
158
 
142
159
  ## 1.14.3
143
160
 
144
161
  ### Patch Changes
145
162
 
146
- - Updated dependencies
163
+ - Updated dependencies
147
164
 
148
165
  ## 1.14.2
149
166
 
150
167
  ### Patch Changes
151
168
 
152
- - [#68142](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68142)
153
- [`eeee0117234f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eeee0117234f) -
154
- EDM-9179: under FF update form error messages and move error messages from form footer to fields
169
+ - [#68142](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68142)
170
+ [`eeee0117234f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eeee0117234f) -
171
+ EDM-9179: under FF update form error messages and move error messages from form footer to fields
155
172
 
156
173
  ## 1.14.1
157
174
 
158
175
  ### Patch Changes
159
176
 
160
- - [#68013](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68013)
161
- [`a23882ab49f8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a23882ab49f8) -
162
- Upgrade depdendency `final-form` for bugfix.
177
+ - [#68013](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68013)
178
+ [`a23882ab49f8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a23882ab49f8) -
179
+ Upgrade depdendency `final-form` for bugfix.
163
180
 
164
181
  ## 1.14.0
165
182
 
166
183
  ### Minor Changes
167
184
 
168
- - [#66763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66763)
169
- [`496a3feac442`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/496a3feac442) -
170
- Update `LinkPickerPlugin` Type to take a generic `entityKey` type
185
+ - [#66763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66763)
186
+ [`496a3feac442`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/496a3feac442) -
187
+ Update `LinkPickerPlugin` Type to take a generic `entityKey` type
171
188
 
172
189
  ## 1.13.3
173
190
 
174
191
  ### Patch Changes
175
192
 
176
- - [#64291](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64291)
177
- [`c44535acbea9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c44535acbea9) -
178
- remove platform.linking-platform.link-create.tmp-fix-translations to permanently return
179
- undefined in the loaderFn when dynamic import of locale messages fail.
193
+ - [#64291](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64291)
194
+ [`c44535acbea9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c44535acbea9) -
195
+ remove platform.linking-platform.link-create.tmp-fix-translations to permanently return undefined
196
+ in the loaderFn when dynamic import of locale messages fail.
180
197
 
181
198
  ## 1.13.2
182
199
 
183
200
  ### Patch Changes
184
201
 
185
- - [#64870](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64870)
186
- [`0f1f6c106355`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0f1f6c106355) -
187
- Adds analytics attribute to help exclude expected errors from SLIs, behind ff
188
- - Updated dependencies
202
+ - [#64870](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64870)
203
+ [`0f1f6c106355`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0f1f6c106355) -
204
+ Adds analytics attribute to help exclude expected errors from SLIs, behind ff
205
+ - Updated dependencies
189
206
 
190
207
  ## 1.13.1
191
208
 
192
209
  ### Patch Changes
193
210
 
194
- - [#63626](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63626)
195
- [`e71c8f5f586e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e71c8f5f586e) -
196
- loaderFn returns undefined if failed to dynamicaly import locale messages - fixes issue in Jira
197
- where default English replaces languages chunk.
198
- - Updated dependencies
211
+ - [#63626](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63626)
212
+ [`e71c8f5f586e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e71c8f5f586e) -
213
+ loaderFn returns undefined if failed to dynamicaly import locale messages - fixes issue in Jira
214
+ where default English replaces languages chunk.
215
+ - Updated dependencies
199
216
 
200
217
  ## 1.13.0
201
218
 
202
219
  ### Minor Changes
203
220
 
204
- - [#63972](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63972)
205
- [`3fe8708a6cf0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3fe8708a6cf0) -
206
- Log error message on experience failure for debugging purposes, when ff is enabled.
221
+ - [#63972](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63972)
222
+ [`3fe8708a6cf0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3fe8708a6cf0) -
223
+ Log error message on experience failure for debugging purposes, when ff is enabled.
207
224
 
208
225
  ## 1.12.1
209
226
 
210
227
  ### Patch Changes
211
228
 
212
- - Updated dependencies
229
+ - Updated dependencies
213
230
 
214
231
  ## 1.12.0
215
232
 
216
233
  ### Minor Changes
217
234
 
218
- - [#60340](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60340)
219
- [`480de4a70eed`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/480de4a70eed) -
220
- EDM-8657: remove platform.linking-platform.link-create.enable-edit feature flag, to permanently
221
- enable the use of create and open (edit) flow in link create / link create confluence.
235
+ - [#60340](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60340)
236
+ [`480de4a70eed`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/480de4a70eed) -
237
+ EDM-8657: remove platform.linking-platform.link-create.enable-edit feature flag, to permanently
238
+ enable the use of create and open (edit) flow in link create / link create confluence.
222
239
 
223
240
  ## 1.11.6
224
241
 
225
242
  ### Patch Changes
226
243
 
227
- - Updated dependencies
244
+ - Updated dependencies
228
245
 
229
246
  ## 1.11.5
230
247
 
231
248
  ### Patch Changes
232
249
 
233
- - [#59772](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59772)
234
- [`64c93d86d9fa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64c93d86d9fa) -
235
- Cleans up FF: platform.linking-platform.link-create.confirm-dismiss-dialog permanently enabling
236
- the exit warning dialog
237
- - Updated dependencies
250
+ - [#59772](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59772)
251
+ [`64c93d86d9fa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64c93d86d9fa) -
252
+ Cleans up FF: platform.linking-platform.link-create.confirm-dismiss-dialog permanently enabling
253
+ the exit warning dialog
254
+ - Updated dependencies
238
255
 
239
256
  ## 1.11.4
240
257
 
241
258
  ### Patch Changes
242
259
 
243
- - [#60029](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60029)
244
- [`b9826ea49c47`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9826ea49c47) -
245
- Update dependencies that were impacted by HOT-106483 to latest.
260
+ - [#60029](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60029)
261
+ [`b9826ea49c47`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9826ea49c47) -
262
+ Update dependencies that were impacted by HOT-106483 to latest.
246
263
 
247
264
  ## 1.11.3
248
265
 
249
266
  ### Patch Changes
250
267
 
251
- - [#57917](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57917)
252
- [`61a45bf00e72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/61a45bf00e72) -
253
- Enrol @atlaskit/link-create to push model in Jira Frontend.
254
- - Updated dependencies
268
+ - [#57917](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57917)
269
+ [`61a45bf00e72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/61a45bf00e72) -
270
+ Enrol @atlaskit/link-create to push model in Jira Frontend.
271
+ - Updated dependencies
255
272
 
256
273
  ## 1.11.2
257
274
 
258
275
  ### Patch Changes
259
276
 
260
- - [#57729](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57729)
261
- [`3778c5a24fc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3778c5a24fc1) -
262
- Fix bug with available sites filtering in Jira Create plugin
263
- - Updated dependencies
277
+ - [#57729](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57729)
278
+ [`3778c5a24fc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3778c5a24fc1) -
279
+ Fix bug with available sites filtering in Jira Create plugin
280
+ - Updated dependencies
264
281
 
265
282
  ## 1.11.1
266
283
 
267
284
  ### Patch Changes
268
285
 
269
- - [#56657](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56657)
270
- [`3d2d5c5602fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d2d5c5602fb) -
271
- remove actionSubjectId from operational analytics event
286
+ - [#56657](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56657)
287
+ [`3d2d5c5602fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d2d5c5602fb) - remove
288
+ actionSubjectId from operational analytics event
272
289
 
273
290
  ## 1.11.0
274
291
 
275
292
  ### Minor Changes
276
293
 
277
- - [#43513](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43513)
278
- [`3b056e3b332`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b056e3b332) - ###
279
- Improved Observability
294
+ - [#43513](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43513)
295
+ [`3b056e3b332`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b056e3b332) - ###
296
+ Improved Observability
280
297
 
281
- Improves observability over failure cases when plugins call `onFailure()`, or throw an error to
282
- be caught by `<LinkCreate />`'s internal error boundary.
298
+ Improves observability over failure cases when plugins call `onFailure()`, or throw an error to be
299
+ caught by `<LinkCreate />`'s internal error boundary.
283
300
 
284
- When `platform.linking-platform.link-create.better-observability` feature flag is enabled,
285
- errors provided via `onFailure()` from plugins no longer play a role in displaying an error
286
- message to users in the `<CreateForm />`.
301
+ When `platform.linking-platform.link-create.better-observability` feature flag is enabled, errors
302
+ provided via `onFailure()` from plugins no longer play a role in displaying an error message to
303
+ users in the `<CreateForm />`.
287
304
 
288
- ### Improved Create Form error handling
305
+ ### Improved Create Form error handling
289
306
 
290
- Allows plugins to return an object of error messages in the `onSubmit()` handler provided to the
291
- `CreateForm`. To set a generic error, use the newly exposed `FORM_ERROR`
292
- [see react-final-form](https://final-form.org/docs/react-final-form/types/FormProps#submission-errors)
293
- to define an error message on the object resolved `onSubmit`.
307
+ Allows plugins to return an object of error messages in the `onSubmit()` handler provided to the
308
+ `CreateForm`. To set a generic error, use the newly exposed `FORM_ERROR`
309
+ [see react-final-form](https://final-form.org/docs/react-final-form/types/FormProps#submission-errors)
310
+ to define an error message on the object resolved `onSubmit`.
294
311
 
295
- Example:
312
+ Example:
296
313
 
297
- ```tsx
298
- import { FORM_ERROR } from '@atlaskit/link-create'
314
+ ```tsx
315
+ import { FORM_ERROR } from '@atlaskit/link-create'
299
316
 
300
- <CreateForm onSubmit={(data) => {
301
- return {
302
- [FORM_ERROR]: "Something bad happened!"
303
- }
304
- } />
305
- ```
317
+ <CreateForm onSubmit={(data) => {
318
+ return {
319
+ [FORM_ERROR]: "Something bad happened!"
320
+ }
321
+ } />
322
+ ```
306
323
 
307
- The error message returned by the plugin will be displayed in the form footer when the
308
- `platform.linking-platform.link-create.better-observability` feature flag is enabled.
324
+ The error message returned by the plugin will be displayed in the form footer when the
325
+ `platform.linking-platform.link-create.better-observability` feature flag is enabled.
309
326
 
310
327
  ### Patch Changes
311
328
 
312
- - Updated dependencies
329
+ - Updated dependencies
313
330
 
314
331
  ## 1.10.0
315
332
 
316
333
  ### Minor Changes
317
334
 
318
- - [#43692](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43692)
319
- [`6f2a46c60f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f2a46c60f3) -
320
- NOISSUE Make undefinable ari optional in link create payload
335
+ - [#43692](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43692)
336
+ [`6f2a46c60f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f2a46c60f3) - NOISSUE
337
+ Make undefinable ari optional in link create payload
321
338
 
322
339
  ### Patch Changes
323
340
 
324
- - [#43685](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43685)
325
- [`315e88c6400`](https://bitbucket.org/atlassian/atlassian-frontend/commits/315e88c6400) -
326
- EDM-8558: rename label of edit button to 'create + open'
341
+ - [#43685](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43685)
342
+ [`315e88c6400`](https://bitbucket.org/atlassian/atlassian-frontend/commits/315e88c6400) -
343
+ EDM-8558: rename label of edit button to 'create + open'
327
344
 
328
345
  ## 1.9.5
329
346
 
330
347
  ### Patch Changes
331
348
 
332
- - [#43257](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43257)
333
- [`cf4d4a94b14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf4d4a94b14) -
334
- EDM-8493: fire analytics event for modal screens and buttons associated with link-create edit
335
- flow
349
+ - [#43257](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43257)
350
+ [`cf4d4a94b14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf4d4a94b14) -
351
+ EDM-8493: fire analytics event for modal screens and buttons associated with link-create edit flow
336
352
 
337
353
  ## 1.9.4
338
354
 
339
355
  ### Patch Changes
340
356
 
341
- - Updated dependencies
357
+ - Updated dependencies
342
358
 
343
359
  ## 1.9.3
344
360
 
345
361
  ### Patch Changes
346
362
 
347
- - [#43347](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43347)
348
- [`378d75bbaad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d75bbaad) - Clean
349
- up outer error boundary feature flag
350
- - Updated dependencies
363
+ - [#43347](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43347)
364
+ [`378d75bbaad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d75bbaad) - Clean up
365
+ outer error boundary feature flag
366
+ - Updated dependencies
351
367
 
352
368
  ## 1.9.2
353
369
 
354
370
  ### Patch Changes
355
371
 
356
- - Updated dependencies
372
+ - Updated dependencies
357
373
 
358
374
  ## 1.9.1
359
375
 
360
376
  ### Patch Changes
361
377
 
362
- - [#43170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43170)
363
- [`959e2b89af9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/959e2b89af9) - Change
364
- exit warning modal to show only when fields have been modified by user
378
+ - [#43170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43170)
379
+ [`959e2b89af9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/959e2b89af9) - Change
380
+ exit warning modal to show only when fields have been modified by user
365
381
 
366
382
  ## 1.9.0
367
383
 
368
384
  ### Minor Changes
369
385
 
370
- - [#43068](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43068)
371
- [`76817bfbd5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76817bfbd5d) -
372
- EDM-8402: under a FF platform.linking-platform.link-create.enable-edit internally refactor
373
- onCloseComplete hook to be conditionally called when active prop is false
386
+ - [#43068](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43068)
387
+ [`76817bfbd5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76817bfbd5d) -
388
+ EDM-8402: under a FF platform.linking-platform.link-create.enable-edit internally refactor
389
+ onCloseComplete hook to be conditionally called when active prop is false
374
390
 
375
391
  ### Patch Changes
376
392
 
377
- - Updated dependencies
393
+ - Updated dependencies
378
394
 
379
395
  ## 1.8.1
380
396
 
381
397
  ### Patch Changes
382
398
 
383
- - [#43001](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43001)
384
- [`7eed2972d58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7eed2972d58) -
385
- Internal refactor moving show exit warning modal conditions to React context
399
+ - [#43001](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43001)
400
+ [`7eed2972d58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7eed2972d58) - Internal
401
+ refactor moving show exit warning modal conditions to React context
386
402
 
387
403
  ## 1.8.0
388
404
 
389
405
  ### Minor Changes
390
406
 
391
- - [#42777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42777)
392
- [`fe571895d1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe571895d1f) -
393
- EDM-8401: Introduce the onComplete props to LinkCreateProps which is a callback function to be
394
- called when the link create experience is completed. This prop allows a post-create edit flow to
395
- be added into the link create experience before completion.
407
+ - [#42777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42777)
408
+ [`fe571895d1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe571895d1f) -
409
+ EDM-8401: Introduce the onComplete props to LinkCreateProps which is a callback function to be
410
+ called when the link create experience is completed. This prop allows a post-create edit flow to
411
+ be added into the link create experience before completion.
396
412
 
397
413
  ## 1.7.2
398
414
 
399
415
  ### Patch Changes
400
416
 
401
- - Updated dependencies
417
+ - Updated dependencies
402
418
 
403
419
  ## 1.7.1
404
420
 
405
421
  ### Patch Changes
406
422
 
407
- - [#42758](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42758)
408
- [`67953559475`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67953559475) -
409
- Updates error boundary to captureException to Sentry behind a feature flag.
410
- - Updated dependencies
423
+ - [#42758](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42758)
424
+ [`67953559475`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67953559475) - Updates
425
+ error boundary to captureException to Sentry behind a feature flag.
426
+ - Updated dependencies
411
427
 
412
428
  ## 1.7.0
413
429
 
414
430
  ### Minor Changes
415
431
 
416
- - [#42674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42674)
417
- [`2fd5dd27ec2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fd5dd27ec2) -
418
- EDM-8373: export editViewProps type
432
+ - [#42674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42674)
433
+ [`2fd5dd27ec2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fd5dd27ec2) -
434
+ EDM-8373: export editViewProps type
419
435
 
420
436
  ## 1.6.0
421
437
 
422
438
  ### Minor Changes
423
439
 
424
- - [#42487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42487)
425
- [`0b6245f9d18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b6245f9d18) -
426
- EDM-8376: Introduces a editView field to the LinkCreatePlugin interface which will allow plugins
427
- to register a screen to edit objects post-creation in a future release.
440
+ - [#42487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42487)
441
+ [`0b6245f9d18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b6245f9d18) -
442
+ EDM-8376: Introduces a editView field to the LinkCreatePlugin interface which will allow plugins
443
+ to register a screen to edit objects post-creation in a future release.
428
444
 
429
445
  ## 1.5.1
430
446
 
431
447
  ### Patch Changes
432
448
 
433
- - [#42575](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42575)
434
- [`d7338b9229e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7338b9229e) -
435
- Updates exit warning dialog to fire analytics on open, and button clicks
436
- - [#42553](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42553)
437
- [`76b95198067`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76b95198067) - Add
438
- error boundary to catch unhandled errors outside the link create modal
439
- - Updated dependencies
449
+ - [#42575](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42575)
450
+ [`d7338b9229e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7338b9229e) - Updates
451
+ exit warning dialog to fire analytics on open, and button clicks
452
+ - [#42553](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42553)
453
+ [`76b95198067`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76b95198067) - Add
454
+ error boundary to catch unhandled errors outside the link create modal
455
+ - Updated dependencies
440
456
 
441
457
  ## 1.5.0
442
458
 
443
459
  ### Minor Changes
444
460
 
445
- - [#42436](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42436)
446
- [`08c8e861177`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c8e861177) -
447
- EDM-8371: internal refactor under feature flag platform.linking-platform.link-create.enable-edit
461
+ - [#42436](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42436)
462
+ [`08c8e861177`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c8e861177) -
463
+ EDM-8371: internal refactor under feature flag platform.linking-platform.link-create.enable-edit
448
464
 
449
465
  ## 1.4.0
450
466
 
451
467
  ### Minor Changes
452
468
 
453
- - [#42119](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42119)
454
- [`fbb3d5ea801`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbb3d5ea801) -
455
- Displays a confirm dismiss dialog when user clicks cancel and made changes to form
469
+ - [#42119](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42119)
470
+ [`fbb3d5ea801`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbb3d5ea801) - Displays
471
+ a confirm dismiss dialog when user clicks cancel and made changes to form
456
472
 
457
473
  ## 1.3.0
458
474
 
459
475
  ### Minor Changes
460
476
 
461
- - [#41722](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41722)
462
- [`0bcdc0cc988`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0bcdc0cc988) -
463
- EDM-8055 Add ARI to link create callback
477
+ - [#41722](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41722)
478
+ [`0bcdc0cc988`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0bcdc0cc988) - EDM-8055
479
+ Add ARI to link create callback
464
480
 
465
481
  ## 1.2.0
466
482
 
467
483
  ### Minor Changes
468
484
 
469
- - [#42356](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42356)
470
- [`db060471faf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db060471faf) -
471
- EDM-7905: an internal refactor for a new experimental feature under a feature flag
472
- platform.linking-platform.link-create.enable-edit
485
+ - [#42356](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42356)
486
+ [`db060471faf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db060471faf) -
487
+ EDM-7905: an internal refactor for a new experimental feature under a feature flag
488
+ platform.linking-platform.link-create.enable-edit
473
489
 
474
490
  ## 1.1.2
475
491
 
476
492
  ### Patch Changes
477
493
 
478
- - [#41867](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41867)
479
- [`2fb6074140b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fb6074140b) - Add
480
- default value to environment variable
494
+ - [#41867](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41867)
495
+ [`2fb6074140b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fb6074140b) - Add
496
+ default value to environment variable
481
497
 
482
498
  ## 1.1.1
483
499
 
484
500
  ### Patch Changes
485
501
 
486
- - [#40368](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40368)
487
- [`b77b38f55e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b77b38f55e3) -
488
- EDM-7921: fire ui analytics event for error component in jira-issue-form and add new error type
489
- and handling for NO_JIRA_SITE_FOUND_ERROR
502
+ - [#40368](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40368)
503
+ [`b77b38f55e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b77b38f55e3) -
504
+ EDM-7921: fire ui analytics event for error component in jira-issue-form and add new error type
505
+ and handling for NO_JIRA_SITE_FOUND_ERROR
490
506
 
491
507
  ## 1.1.0
492
508
 
493
509
  ### Minor Changes
494
510
 
495
- - [#39079](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39079)
496
- [`d3b95d820f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3b95d820f7) -
497
- EDM-7280 Add analytics for Jira link create
511
+ - [#39079](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39079)
512
+ [`d3b95d820f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3b95d820f7) - EDM-7280
513
+ Add analytics for Jira link create
498
514
 
499
515
  ## 1.0.3
500
516
 
501
517
  ### Patch Changes
502
518
 
503
- - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
504
- [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
505
- version.json
506
- - Updated dependencies
519
+ - [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
520
+ [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
521
+ version.json
522
+ - Updated dependencies
507
523
 
508
524
  ## 1.0.2
509
525
 
510
526
  ### Patch Changes
511
527
 
512
- - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
513
- [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
514
- injected env vars instead of version.json
528
+ - [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
529
+ [`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
530
+ injected env vars instead of version.json
515
531
 
516
532
  ## 1.0.1
517
533
 
518
534
  ### Patch Changes
519
535
 
520
- - [#38070](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38070)
521
- [`572ea7d92bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/572ea7d92bd) -
522
- revised form mutator types
536
+ - [#38070](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38070)
537
+ [`572ea7d92bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/572ea7d92bd) - revised
538
+ form mutator types
523
539
 
524
540
  ## 1.0.0
525
541
 
526
542
  ### Major Changes
527
543
 
528
- - [#37475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37475)
529
- [`687749df97a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/687749df97a) -
530
- Refactor form components to use react-final-form
544
+ - [#37475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37475)
545
+ [`687749df97a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/687749df97a) - Refactor
546
+ form components to use react-final-form
531
547
 
532
548
  ## 0.10.0
533
549
 
534
550
  ### Minor Changes
535
551
 
536
- - [#37341](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37341)
537
- [`dc546d1044a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc546d1044a) - Update
538
- failure handler in link-create API to take Error instead of string, and fire analytics on
539
- failure
552
+ - [#37341](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37341)
553
+ [`dc546d1044a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc546d1044a) - Update
554
+ failure handler in link-create API to take Error instead of string, and fire analytics on failure
540
555
 
541
556
  ## 0.9.1
542
557
 
543
558
  ### Patch Changes
544
559
 
545
- - [#36913](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36913)
546
- [`84b33e5a4b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84b33e5a4b6) -
547
- EDM-6544: minor internal refactors with no expected functional change
560
+ - [#36913](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36913)
561
+ [`84b33e5a4b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84b33e5a4b6) -
562
+ EDM-6544: minor internal refactors with no expected functional change
548
563
 
549
564
  ## 0.9.0
550
565
 
551
566
  ### Minor Changes
552
567
 
553
- - [#36926](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36926)
554
- [`c209f670761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c209f670761) -
555
- Improved testIds
568
+ - [#36926](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36926)
569
+ [`c209f670761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c209f670761) - Improved
570
+ testIds
556
571
 
557
572
  ## 0.8.2
558
573
 
559
574
  ### Patch Changes
560
575
 
561
- - [#36843](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36843)
562
- [`90ad796d91c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90ad796d91c) - Fix
563
- fetching hyphened locales to underscores
576
+ - [#36843](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36843)
577
+ [`90ad796d91c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90ad796d91c) - Fix
578
+ fetching hyphened locales to underscores
564
579
 
565
580
  ## 0.8.1
566
581
 
567
582
  ### Patch Changes
568
583
 
569
- - [#36761](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36761)
570
- [`70b0f95345a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70b0f95345a) - Add
571
- support for i18n
584
+ - [#36761](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36761)
585
+ [`70b0f95345a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70b0f95345a) - Add
586
+ support for i18n
572
587
 
573
588
  ## 0.8.0
574
589
 
575
590
  ### Minor Changes
576
591
 
577
- - [#36304](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36304)
578
- [`f3acb380cb2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3acb380cb2) -
579
- EDM-7064: remove FormContextProvider export to prevent usage in external packages.
592
+ - [#36304](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36304)
593
+ [`f3acb380cb2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3acb380cb2) -
594
+ EDM-7064: remove FormContextProvider export to prevent usage in external packages.
580
595
 
581
596
  ## 0.7.1
582
597
 
583
598
  ### Patch Changes
584
599
 
585
- - [#35576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35576)
586
- [`41d73aab05c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d73aab05c) -
587
- EDM-6938: pass spaceName into onCreate submit for confluence-create and pass as optional meta
588
- data into link-create."
600
+ - [#35576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35576)
601
+ [`41d73aab05c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d73aab05c) -
602
+ EDM-6938: pass spaceName into onCreate submit for confluence-create and pass as optional meta data
603
+ into link-create."
589
604
 
590
605
  ## 0.7.0
591
606
 
592
607
  ### Minor Changes
593
608
 
594
- - [#35134](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35134)
595
- [`eb070266532`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb070266532) - Expose
596
- Modal callbacks and Add modalTitle to the linkCreate Props
609
+ - [#35134](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35134)
610
+ [`eb070266532`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb070266532) - Expose
611
+ Modal callbacks and Add modalTitle to the linkCreate Props
597
612
 
598
613
  ## 0.6.0
599
614
 
600
615
  ### Minor Changes
601
616
 
602
- - [#35035](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35035)
603
- [`ac3927f0650`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac3927f0650) - Make
604
- modal 480px wide, Update TextField to take isRequired prop w/o default browser validation,
605
- remove extra internal spacing in the create form
617
+ - [#35035](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35035)
618
+ [`ac3927f0650`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac3927f0650) - Make
619
+ modal 480px wide, Update TextField to take isRequired prop w/o default browser validation, remove
620
+ extra internal spacing in the create form
606
621
 
607
622
  ## 0.5.7
608
623
 
609
624
  ### Patch Changes
610
625
 
611
- - [#34925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34925)
612
- [`ffb87e553ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffb87e553ea) - Hides
613
- the validation error when user edits the field
626
+ - [#34925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34925)
627
+ [`ffb87e553ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffb87e553ea) - Hides
628
+ the validation error when user edits the field
614
629
 
615
630
  ## 0.5.6
616
631
 
617
632
  ### Patch Changes
618
633
 
619
- - [#34759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34759)
620
- [`a02d619af5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02d619af5c) -
621
- Changed onCreate to return a possible Promise to hold the create button spinner while submitting
634
+ - [#34759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34759)
635
+ [`a02d619af5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02d619af5c) - Changed
636
+ onCreate to return a possible Promise to hold the create button spinner while submitting
622
637
 
623
638
  ## 0.5.5
624
639
 
625
640
  ### Patch Changes
626
641
 
627
- - [#34750](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34750)
628
- [`7b5fb18bb63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b5fb18bb63) - Update
629
- screen event to UI
642
+ - [#34750](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34750)
643
+ [`7b5fb18bb63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b5fb18bb63) - Update
644
+ screen event to UI
630
645
 
631
646
  ## 0.5.4
632
647
 
633
648
  ### Patch Changes
634
649
 
635
- - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
636
- [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) -
637
- Removing unused dependencies and dev dependencies
650
+ - [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
651
+ [`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing
652
+ unused dependencies and dev dependencies
638
653
 
639
654
  ## 0.5.3
640
655
 
641
656
  ### Patch Changes
642
657
 
643
- - [#34463](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34463)
644
- [`ae5ac36af00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae5ac36af00) -
645
- Updates analytics codegen to support screen events.
658
+ - [#34463](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34463)
659
+ [`ae5ac36af00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae5ac36af00) - Updates
660
+ analytics codegen to support screen events.
646
661
 
647
662
  ## 0.5.2
648
663
 
649
664
  ### Patch Changes
650
665
 
651
- - [#34207](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34207)
652
- [`7734ef0bdb4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7734ef0bdb4) -
653
- allowing default values in confluence creation form.
666
+ - [#34207](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34207)
667
+ [`7734ef0bdb4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7734ef0bdb4) - allowing
668
+ default values in confluence creation form.
654
669
 
655
670
  ## 0.5.1
656
671
 
657
672
  ### Patch Changes
658
673
 
659
- - [#33671](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33671)
660
- [`2d812255401`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d812255401) -
661
- EDM-6561: add an autofocus on title field in create modal and change cancel button labeling to
662
- close
674
+ - [#33671](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33671)
675
+ [`2d812255401`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d812255401) -
676
+ EDM-6561: add an autofocus on title field in create modal and change cancel button labeling to
677
+ close
663
678
 
664
679
  ## 0.5.0
665
680
 
666
681
  ### Minor Changes
667
682
 
668
- - [#33735](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33735)
669
- [`ad753581e70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad753581e70) - [ux]
670
- Moves the FormFooter out of CreateForm and provides a new CreateFormLoader component & now we
671
- handle the submitting state in the form context
683
+ - [#33735](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33735)
684
+ [`ad753581e70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad753581e70) - [ux]
685
+ Moves the FormFooter out of CreateForm and provides a new CreateFormLoader component & now we
686
+ handle the submitting state in the form context
672
687
 
673
688
  ## 0.4.4
674
689
 
675
690
  ### Patch Changes
676
691
 
677
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
678
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
679
- legacy types are published for TS 4.5-4.8
692
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
693
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
694
+ legacy types are published for TS 4.5-4.8
680
695
 
681
696
  ## 0.4.3
682
697
 
683
698
  ### Patch Changes
684
699
 
685
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
686
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
687
- Upgrade Typescript from `4.5.5` to `4.9.5`
700
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
701
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
702
+ Typescript from `4.5.5` to `4.9.5`
688
703
 
689
704
  ## 0.4.2
690
705
 
691
706
  ### Patch Changes
692
707
 
693
- - [#33372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33372)
694
- [`93af54caca2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93af54caca2) -
695
- EDM-6553: no functionality change, just updating UI so that there is padding between the cancel
696
- and create button for link-create. Also updated the dropdown error message.
708
+ - [#33372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33372)
709
+ [`93af54caca2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93af54caca2) -
710
+ EDM-6553: no functionality change, just updating UI so that there is padding between the cancel
711
+ and create button for link-create. Also updated the dropdown error message.
697
712
 
698
713
  ## 0.4.1
699
714
 
700
715
  ### Patch Changes
701
716
 
702
- - [#33186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33186)
703
- [`3c5946b6cdf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c5946b6cdf) -
704
- EDM-6524: remove isRequired prop from textfield in create component as browser validation will
705
- not be used, also spread AKTextfield props to stop exposure of testid and placeholder props.
717
+ - [#33186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33186)
718
+ [`3c5946b6cdf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c5946b6cdf) -
719
+ EDM-6524: remove isRequired prop from textfield in create component as browser validation will not
720
+ be used, also spread AKTextfield props to stop exposure of testid and placeholder props.
706
721
 
707
722
  ## 0.4.0
708
723
 
709
724
  ### Minor Changes
710
725
 
711
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
712
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
713
- minor dependency bump
726
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
727
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
728
+ minor dependency bump
714
729
 
715
730
  ### Patch Changes
716
731
 
717
- - Updated dependencies
732
+ - Updated dependencies
718
733
 
719
734
  ## 0.3.3
720
735
 
721
736
  ### Patch Changes
722
737
 
723
- - [#32602](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32602)
724
- [`5cbb3a0f20c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5cbb3a0f20c) - Fix
725
- tangerine lint warnings & fix SVG id not unique & add VR test for dropdowns in modal & handle
726
- plugin errors
738
+ - [#32602](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32602)
739
+ [`5cbb3a0f20c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5cbb3a0f20c) - Fix
740
+ tangerine lint warnings & fix SVG id not unique & add VR test for dropdowns in modal & handle
741
+ plugin errors
727
742
 
728
743
  ## 0.3.2
729
744
 
730
745
  ### Patch Changes
731
746
 
732
- - [#32501](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32501)
733
- [`1600a0d171f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1600a0d171f) - Adds
734
- various eslint-ignores for tokens-related warnings
747
+ - [#32501](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32501)
748
+ [`1600a0d171f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1600a0d171f) - Adds
749
+ various eslint-ignores for tokens-related warnings
735
750
 
736
751
  ## 0.3.1
737
752
 
738
753
  ### Patch Changes
739
754
 
740
- - [#32659](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32659)
741
- [`9e1c1e92771`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e1c1e92771) - Fire
742
- analytics
755
+ - [#32659](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32659)
756
+ [`9e1c1e92771`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e1c1e92771) - Fire
757
+ analytics
743
758
 
744
759
  ## 0.3.0
745
760
 
746
761
  ### Minor Changes
747
762
 
748
- - [#32457](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32457)
749
- [`29dfee4c540`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29dfee4c540) - Adds
750
- global error boundary and fixes footer padding
763
+ - [#32457](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32457)
764
+ [`29dfee4c540`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29dfee4c540) - Adds
765
+ global error boundary and fixes footer padding
751
766
 
752
767
  ## 0.2.1
753
768
 
754
769
  ### Patch Changes
755
770
 
756
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
757
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
758
- remove before merging to master; dupe adf-schema via adf-utils
759
- - Updated dependencies
771
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
772
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
773
+ remove before merging to master; dupe adf-schema via adf-utils
774
+ - Updated dependencies
760
775
 
761
776
  ## 0.2.0
762
777
 
763
778
  ### Minor Changes
764
779
 
765
- - [#30840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30840)
766
- [`a765caedf71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a765caedf71) -
767
- EDM-5666 Implement Create Confluence Plugin
780
+ - [#30840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30840)
781
+ [`a765caedf71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a765caedf71) - EDM-5666
782
+ Implement Create Confluence Plugin
768
783
 
769
784
  ### Patch Changes
770
785
 
771
- - [`430f0f27c63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/430f0f27c63) - Use
772
- FormSection instead of ModalSection
786
+ - [`430f0f27c63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/430f0f27c63) - Use
787
+ FormSection instead of ModalSection
773
788
 
774
789
  ## 0.1.2
775
790
 
776
791
  ### Patch Changes
777
792
 
778
- - [#31972](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31972)
779
- [`5da1c8f4422`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5da1c8f4422) -
780
- Integrate with link-create-presets
793
+ - [#31972](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31972)
794
+ [`5da1c8f4422`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5da1c8f4422) -
795
+ Integrate with link-create-presets
781
796
 
782
797
  ## 0.1.1
783
798
 
784
799
  ### Patch Changes
785
800
 
786
- - [#31721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31721)
787
- [`63acd1bc789`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63acd1bc789) - Update
788
- examples with presets
801
+ - [#31721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31721)
802
+ [`63acd1bc789`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63acd1bc789) - Update
803
+ examples with presets
789
804
 
790
805
  ## 0.1.0
791
806
 
792
807
  ### Minor Changes
793
808
 
794
- - [#30674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30674)
795
- [`7e7ca45dbe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e7ca45dbe4) -
796
- Exports LinkCreateProps and LinkCreatePlugin Types
809
+ - [#30674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30674)
810
+ [`7e7ca45dbe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e7ca45dbe4) - Exports
811
+ LinkCreateProps and LinkCreatePlugin Types
797
812
 
798
813
  ## 0.0.4
799
814
 
800
815
  ### Patch Changes
801
816
 
802
- - [#30194](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30194)
803
- [`09697a312bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09697a312bc) -
804
- EDM-5657 EDM-5661 Implement Select and Textfield components
817
+ - [#30194](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30194)
818
+ [`09697a312bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09697a312bc) - EDM-5657
819
+ EDM-5661 Implement Select and Textfield components
805
820
 
806
821
  ## 0.0.3
807
822
 
808
823
  ### Patch Changes
809
824
 
810
- - [#30122](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30122)
811
- [`4b8910b3460`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b8910b3460) - Add
812
- link-create-confluence package
825
+ - [#30122](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30122)
826
+ [`4b8910b3460`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b8910b3460) - Add
827
+ link-create-confluence package
813
828
 
814
829
  ## 0.0.2
815
830
 
816
831
  ### Patch Changes
817
832
 
818
- - [#29757](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29757)
819
- [`d7724023d26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7724023d26) -
820
- Initial version of Create component
833
+ - [#29757](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29757)
834
+ [`d7724023d26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7724023d26) - Initial
835
+ version of Create component