@atlaskit/feedback-collector 7.1.3 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @atlaskit/feedback-collector
|
|
2
2
|
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`286af9264f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/286af9264f7) - **Note**: It is a re-release of the wrongly `patched` version `7.1.2` that should have been a `major` release.
|
|
8
|
+
|
|
9
|
+
## Breaking Changes
|
|
10
|
+
|
|
11
|
+
The new `cookie` property is **required**. This is property is a simple string of the user's cloud session token. Please pass in the entire key/value pair of the cookie. Like:
|
|
12
|
+
|
|
13
|
+
```html
|
|
14
|
+
<FeedbackCollector cookie={"cloud.session.token=...."} >
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This is used for getting Entitlement information about the user (used in feedback analysis) and for validating identities (see [VULN229258](https://asecurityteam.atlassian.net/browse/VULN-229258))
|
|
18
|
+
|
|
19
|
+
## Other changes
|
|
20
|
+
|
|
21
|
+
- Uses new Feedback Collector API for data analysis
|
|
22
|
+
- Data encoding
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
3
28
|
## 7.1.3
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -10,6 +35,8 @@
|
|
|
10
35
|
|
|
11
36
|
### Major Changes
|
|
12
37
|
|
|
38
|
+
_WRONG RELEASE TYPE - DON'T USE_
|
|
39
|
+
|
|
13
40
|
- [`be25f4abde4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be25f4abde4) - ## Breaking Changes
|
|
14
41
|
|
|
15
42
|
The new `cookie` property is **required**. This is property is a simple string of the user's cloud session token. Please pass in the entire key/value pair of the cookie. Like:
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/feedback-collector",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "A component that collects feedback across Atlassian products.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@atlaskit/button": "^16.1.0",
|
|
30
30
|
"@atlaskit/checkbox": "^12.3.0",
|
|
31
|
-
"@atlaskit/flag": "^14.
|
|
31
|
+
"@atlaskit/flag": "^14.5.0",
|
|
32
32
|
"@atlaskit/form": "^8.4.0",
|
|
33
|
-
"@atlaskit/icon": "^21.
|
|
33
|
+
"@atlaskit/icon": "^21.10.0",
|
|
34
34
|
"@atlaskit/modal-dialog": "^12.2.0",
|
|
35
35
|
"@atlaskit/select": "^15.2.0",
|
|
36
36
|
"@atlaskit/textarea": "^4.2.0",
|
|
37
|
-
"@atlaskit/theme": "^12.
|
|
37
|
+
"@atlaskit/theme": "^12.1.0",
|
|
38
38
|
"@atlaskit/tokens": "^0.4.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0",
|
|
40
40
|
"lodash": "^4.17.21"
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"react": "^16.8.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@atlaskit/build-utils": "*",
|
|
47
46
|
"@atlaskit/docs": "*",
|
|
48
47
|
"@atlaskit/logo": "^13.5.0",
|
|
49
48
|
"@atlaskit/navigation-next": "^9.0.0",
|