@atlaskit/smart-user-picker 10.0.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlassian/smart-user-picker
|
|
2
2
|
|
|
3
|
+
## 10.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9b1521c6d0e35`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9b1521c6d0e35) -
|
|
8
|
+
FFCLEANUP-97327: Remove smart-user-picker-attribution-header feature gate (always-on cleanup)
|
|
9
|
+
|
|
3
10
|
## 10.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -4,15 +4,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.graphqlQuery = graphqlQuery;
|
|
7
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
8
7
|
var _atlAttribution = require("./atl-attribution");
|
|
9
8
|
var buildHeaders = function buildHeaders(attributionData) {
|
|
10
9
|
var headers = new Headers();
|
|
11
10
|
headers.append('Content-Type', 'application/json');
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
headers.append('atl-attribution', atlAttributionHeader['atl-attribution']);
|
|
15
|
-
}
|
|
11
|
+
var atlAttributionHeader = (0, _atlAttribution.createAtlAttributionHeader)(attributionData);
|
|
12
|
+
headers.append('atl-attribution', atlAttributionHeader['atl-attribution']);
|
|
16
13
|
return headers;
|
|
17
14
|
};
|
|
18
15
|
/**
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
2
1
|
import { createAtlAttributionHeader } from './atl-attribution';
|
|
3
2
|
const buildHeaders = attributionData => {
|
|
4
3
|
const headers = new Headers();
|
|
5
4
|
headers.append('Content-Type', 'application/json');
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
headers.append('atl-attribution', atlAttributionHeader['atl-attribution']);
|
|
9
|
-
}
|
|
5
|
+
const atlAttributionHeader = createAtlAttributionHeader(attributionData);
|
|
6
|
+
headers.append('atl-attribution', atlAttributionHeader['atl-attribution']);
|
|
10
7
|
return headers;
|
|
11
8
|
};
|
|
12
9
|
/**
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
2
1
|
import { createAtlAttributionHeader } from './atl-attribution';
|
|
3
2
|
var buildHeaders = function buildHeaders(attributionData) {
|
|
4
3
|
var headers = new Headers();
|
|
5
4
|
headers.append('Content-Type', 'application/json');
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
headers.append('atl-attribution', atlAttributionHeader['atl-attribution']);
|
|
9
|
-
}
|
|
5
|
+
var atlAttributionHeader = createAtlAttributionHeader(attributionData);
|
|
6
|
+
headers.append('atl-attribution', atlAttributionHeader['atl-attribution']);
|
|
10
7
|
return headers;
|
|
11
8
|
};
|
|
12
9
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/smart-user-picker",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -72,9 +72,6 @@
|
|
|
72
72
|
"smart-user-picker-restrict-to-gate": {
|
|
73
73
|
"type": "boolean"
|
|
74
74
|
},
|
|
75
|
-
"smart-user-picker-attribution-header": {
|
|
76
|
-
"type": "boolean"
|
|
77
|
-
},
|
|
78
75
|
"user_picker_guest_lozenges": {
|
|
79
76
|
"type": "boolean"
|
|
80
77
|
}
|