@backstage/create-app 0.0.0-nightly-202111282332 → 0.0.0-nightly-2021112922954

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,6 +1,6 @@
1
1
  # @backstage/create-app
2
2
 
3
- ## 0.0.0-nightly-202111282332
3
+ ## 0.0.0-nightly-2021112922954
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -25,6 +25,7 @@
25
25
  + <body>
26
26
  ```
27
27
 
28
+ - 613ad12960: Add a comment to the default backend about the fallback 404 handler.
28
29
  - 0dcd1dd64f: Add a `scheduler` to the plugin environment, which can schedule collaborative tasks across backends. To apply the same change in your backend, follow the steps below.
29
30
 
30
31
  First install the package:
@@ -64,20 +65,21 @@
64
65
  ```
65
66
 
66
67
  - Updated dependencies
67
- - @backstage/plugin-auth-backend@0.0.0-nightly-202111282332
68
- - @backstage/test-utils@0.0.0-nightly-202111282332
69
- - @backstage/backend-common@0.0.0-nightly-202111282332
70
- - @backstage/cli@0.0.0-nightly-202111282332
71
- - @backstage/plugin-catalog@0.0.0-nightly-202111282332
72
- - @backstage/plugin-catalog-backend@0.0.0-nightly-202111282332
73
- - @backstage/plugin-scaffolder@0.0.0-nightly-202111282332
74
- - @backstage/plugin-scaffolder-backend@0.0.0-nightly-202111282332
75
- - @backstage/plugin-techdocs@0.0.0-nightly-202111282332
76
- - @backstage/plugin-rollbar-backend@0.0.0-nightly-202111282332
77
- - @backstage/integration-react@0.0.0-nightly-202111282332
78
- - @backstage/plugin-catalog-import@0.0.0-nightly-202111282332
79
- - @backstage/plugin-github-actions@0.0.0-nightly-202111282332
80
- - @backstage/plugin-techdocs-backend@0.0.0-nightly-202111282332
68
+ - @backstage/plugin-rollbar-backend@0.0.0-nightly-2021112922954
69
+ - @backstage/plugin-auth-backend@0.0.0-nightly-2021112922954
70
+ - @backstage/test-utils@0.0.0-nightly-2021112922954
71
+ - @backstage/backend-common@0.0.0-nightly-2021112922954
72
+ - @backstage/plugin-search@0.0.0-nightly-2021112922954
73
+ - @backstage/cli@0.0.0-nightly-2021112922954
74
+ - @backstage/plugin-catalog@0.0.0-nightly-2021112922954
75
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-2021112922954
76
+ - @backstage/plugin-scaffolder@0.0.0-nightly-2021112922954
77
+ - @backstage/plugin-scaffolder-backend@0.0.0-nightly-2021112922954
78
+ - @backstage/plugin-techdocs@0.0.0-nightly-2021112922954
79
+ - @backstage/plugin-techdocs-backend@0.0.0-nightly-2021112922954
80
+ - @backstage/integration-react@0.0.0-nightly-2021112922954
81
+ - @backstage/plugin-catalog-import@0.0.0-nightly-2021112922954
82
+ - @backstage/plugin-github-actions@0.0.0-nightly-2021112922954
81
83
 
82
84
  ## 0.4.9
83
85
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/create-app",
3
3
  "description": "A CLI that helps you create your own Backstage app",
4
- "version": "0.0.0-nightly-202111282332",
4
+ "version": "0.0.0-nightly-2021112922954",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -81,6 +81,8 @@ async function main() {
81
81
  apiRouter.use('/techdocs', await techdocs(techdocsEnv));
82
82
  apiRouter.use('/proxy', await proxy(proxyEnv));
83
83
  apiRouter.use('/search', await search(searchEnv));
84
+
85
+ // Add backends ABOVE this line; this 404 handler is the catch-all fallback
84
86
  apiRouter.use(notFoundHandler());
85
87
 
86
88
  const service = createServiceBuilder(module)