@backstage/frontend-test-utils 0.2.0-next.2 → 0.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 (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @backstage/frontend-test-utils
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5446061: Removed support for testing "v1" extensions, where outputs are defined as an object rather than an array.
8
+ - e6e488c: **BREAKING**: The deprecated `.render()` method has been removed from the extension tester.
9
+
10
+ ### Patch Changes
11
+
12
+ - 2a61422: The extension tester will no longer unconditionally enable any additional extensions that have been added.
13
+ - fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
14
+ - 4a66456: Internal update to add support for passing an `ApiRegistry` when creating the node tree
15
+ - 2bb9517: Introduce the `@backstage/plugin-app` package to hold all of the built-in extensions for easy consumption and overriding.
16
+ - 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
17
+ - 948d431: Removing deprecated `namespace` parameter in favour of `pluginId` instead
18
+ - 043d7cd: Internal refactor
19
+ - f6d1874: Added the ability to provide additional `extensions` and `features` to `renderInTestApp`
20
+ - Updated dependencies
21
+ - @backstage/frontend-plugin-api@0.8.0
22
+ - @backstage/frontend-app-api@0.9.0
23
+ - @backstage/plugin-app@0.1.0
24
+ - @backstage/test-utils@1.6.0
25
+ - @backstage/version-bridge@1.0.9
26
+ - @backstage/config@1.2.0
27
+ - @backstage/types@1.1.1
28
+
3
29
  ## 0.2.0-next.2
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/frontend-test-utils",
3
- "version": "0.2.0-next.2",
3
+ "version": "0.2.0",
4
4
  "backstage": {
5
5
  "role": "web-library"
6
6
  },
@@ -32,16 +32,16 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@backstage/config": "^1.2.0",
35
- "@backstage/frontend-app-api": "^0.9.0-next.2",
36
- "@backstage/frontend-plugin-api": "^0.8.0-next.2",
37
- "@backstage/plugin-app": "^0.1.0-next.2",
38
- "@backstage/test-utils": "^1.6.0-next.1",
35
+ "@backstage/frontend-app-api": "^0.9.0",
36
+ "@backstage/frontend-plugin-api": "^0.8.0",
37
+ "@backstage/plugin-app": "^0.1.0",
38
+ "@backstage/test-utils": "^1.6.0",
39
39
  "@backstage/types": "^1.1.1",
40
- "@backstage/version-bridge": "^1.0.9-next.0",
40
+ "@backstage/version-bridge": "^1.0.9",
41
41
  "zod": "^3.22.4"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/cli": "^0.27.1-next.2",
44
+ "@backstage/cli": "^0.27.1",
45
45
  "@testing-library/jest-dom": "^6.0.0",
46
46
  "@types/react": "*"
47
47
  },