@backstage/plugin-scaffolder 0.12.2-next.0 → 0.12.2

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 +13 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-scaffolder
2
2
 
3
+ ## 0.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 33e139e652: Adds a loading bar to the scaffolder task page if the task is still loading. This can happen if it takes a while for a task worker to pick up a task.
8
+ - 6458be3307: Encode the `formData` in the `queryString` using `JSON.stringify` to keep the types in the decoded value
9
+ - 319f4b79a2: The ScaffolderPage can be passed an optional `TaskPageComponent` with a `loadingText` string. It will replace the Loading text in the scaffolder task page.
10
+ - Updated dependencies
11
+ - @backstage/catalog-client@0.6.0
12
+ - @backstage/core-components@0.8.8
13
+ - @backstage/plugin-catalog-react@0.6.14
14
+ - @backstage/integration-react@0.1.21
15
+
3
16
  ## 0.12.2-next.0
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder",
3
3
  "description": "The Backstage plugin that helps you create new things",
4
- "version": "0.12.2-next.0",
4
+ "version": "0.12.2",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -31,16 +31,16 @@
31
31
  "clean": "backstage-cli clean"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/catalog-client": "^0.5.5",
34
+ "@backstage/catalog-client": "^0.6.0",
35
35
  "@backstage/catalog-model": "^0.9.10",
36
36
  "@backstage/config": "^0.1.13",
37
- "@backstage/core-components": "^0.8.8-next.0",
37
+ "@backstage/core-components": "^0.8.8",
38
38
  "@backstage/core-plugin-api": "^0.6.0",
39
39
  "@backstage/errors": "^0.2.0",
40
40
  "@backstage/integration": "^0.7.2",
41
- "@backstage/integration-react": "^0.1.21-next.0",
41
+ "@backstage/integration-react": "^0.1.21",
42
42
  "@backstage/plugin-catalog-common": "^0.1.2",
43
- "@backstage/plugin-catalog-react": "^0.6.14-next.0",
43
+ "@backstage/plugin-catalog-react": "^0.6.14",
44
44
  "@backstage/plugin-permission-react": "^0.3.0",
45
45
  "@backstage/plugin-scaffolder-common": "^0.1.3",
46
46
  "@backstage/theme": "^0.2.14",
@@ -69,10 +69,10 @@
69
69
  "react": "^16.13.1 || ^17.0.0"
70
70
  },
71
71
  "devDependencies": {
72
- "@backstage/cli": "^0.13.2-next.0",
72
+ "@backstage/cli": "^0.13.2",
73
73
  "@backstage/core-app-api": "^0.5.2",
74
- "@backstage/dev-utils": "^0.2.21-next.0",
75
- "@backstage/plugin-catalog": "^0.7.12-next.0",
74
+ "@backstage/dev-utils": "^0.2.21",
75
+ "@backstage/plugin-catalog": "^0.7.12",
76
76
  "@backstage/test-utils": "^0.2.4",
77
77
  "@testing-library/jest-dom": "^5.10.1",
78
78
  "@testing-library/react": "^11.2.5",
@@ -88,5 +88,5 @@
88
88
  "files": [
89
89
  "dist"
90
90
  ],
91
- "gitHead": "e6f167225d843beeb974c287c3364d951b587626"
91
+ "gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
92
92
  }