@atlaskit/media-common 12.0.0 → 12.1.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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atlaskit/media-common
2
2
 
3
+ ## 12.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#157095](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/157095)
8
+ [`ec7b5d3268aaf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ec7b5d3268aaf) -
9
+ We are testing the migration to the ADS Link component behind a feature flag. If this fix is
10
+ successful it will be available in a later release.
11
+
3
12
  ## 12.0.0
4
13
 
5
14
  ### Major Changes
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.flushPromises = void 0;
7
+ /** deprecated Use React Testing Library's waitFor like method instead */
7
8
  var flushPromises = exports.flushPromises = function flushPromises() {
8
9
  return new Promise(function (resolve) {
9
10
  return setImmediate(resolve);
@@ -1 +1,2 @@
1
+ /** deprecated Use React Testing Library's waitFor like method instead */
1
2
  export const flushPromises = () => new Promise(resolve => setImmediate(resolve));
@@ -1,3 +1,4 @@
1
+ /** deprecated Use React Testing Library's waitFor like method instead */
1
2
  export var flushPromises = function flushPromises() {
2
3
  return new Promise(function (resolve) {
3
4
  return setImmediate(resolve);
@@ -1 +1,2 @@
1
+ /** deprecated Use React Testing Library's waitFor like method instead */
1
2
  export declare const flushPromises: () => Promise<unknown>;
@@ -1 +1,2 @@
1
+ /** deprecated Use React Testing Library's waitFor like method instead */
1
2
  export declare const flushPromises: () => Promise<unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/media-common",
3
- "version": "12.0.0",
3
+ "version": "12.1.0",
4
4
  "description": "Includes common utilities used by other media packages",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -42,7 +42,9 @@
42
42
  "@atlaskit/analytics-gas-types": "^5.1.0",
43
43
  "@atlaskit/analytics-namespaced-context": "^7.0.0",
44
44
  "@atlaskit/analytics-next": "^11.0.0",
45
- "@atlaskit/section-message": "^8.0.0",
45
+ "@atlaskit/link": "^3.2.0",
46
+ "@atlaskit/platform-feature-flags": "^1.1.0",
47
+ "@atlaskit/section-message": "^8.2.0",
46
48
  "@babel/runtime": "^7.0.0",
47
49
  "immer": "^9.0.12",
48
50
  "uuid-validate": "^0.0.3"
@@ -63,5 +65,10 @@
63
65
  "react": "^18.2.0",
64
66
  "react-dom": "^18.2.0",
65
67
  "typescript": "~5.4.2"
68
+ },
69
+ "platform-feature-flags": {
70
+ "dst-a11y__replace-anchor-with-link__media-exif": {
71
+ "type": "boolean"
72
+ }
66
73
  }
67
74
  }