@backstage/create-app 0.0.0-nightly-20220804024717 → 0.0.0-nightly-20220805025120

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,11 +1,21 @@
1
1
  # @backstage/create-app
2
2
 
3
- ## 0.0.0-nightly-20220804024717
3
+ ## 0.0.0-nightly-20220805025120
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - 73cee58fc2: Bumped create-app version.
8
8
  - f762386d48: Bumped create-app version.
9
+ - 0174a0a022: Add `PATCH` and `HEAD` to the `Access-Control-Allow-Methods`.
10
+
11
+ To apply this change to your Backstage installation make the following change to your `app-config.yaml`
12
+
13
+ ```diff
14
+ cors:
15
+ origin: http://localhost:3000
16
+ - methods: [GET, POST, PUT, DELETE]
17
+ + methods: [GET, POST, PUT, DELETE, PATCH, HEAD]
18
+ ```
9
19
 
10
20
  ## 0.4.30-next.1
11
21
 
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-20220804024717",
4
+ "version": "0.0.0-nightly-20220805025120",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -24,7 +24,7 @@ backend:
24
24
  # Default Helmet Content-Security-Policy values can be removed by setting the key to false
25
25
  cors:
26
26
  origin: http://localhost:3000
27
- methods: [GET, POST, PUT, DELETE]
27
+ methods: [GET, HEAD, PATCH, POST, PUT, DELETE]
28
28
  credentials: true
29
29
  # This is for local developement only, it is not recommended to use this in production
30
30
  # The production database configuration is stored in app-config.production.yaml