Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-11-08 14:04:37 +00:00
parent a651c6ecd7
commit b01fea7b8c
293 changed files with 3979 additions and 148 deletions
+51
View File
@@ -1,5 +1,56 @@
# @backstage/create-app
## 0.4.34-next.2
### Patch Changes
- 384eaa2307: Switched Node.js version to support version 16 & 18, rather than 14 & 16. To switch the Node.js version in your own project, apply the following change to the root `package.json`:
```diff
"engines": {
- "node": "14 || 16"
+ "node": "16 || 18"
},
```
As well as the following change to `packages/app/package.json`:
```diff
- "@types/node": "^14.14.32",
+ "@types/node": "^16.11.26",
```
- 864c876e57: Fixed incorrect comments in the templated `app-config.yaml` and `app-config.production.yaml`. The `backend.listen` directive is not in fact needed to override the `backend.baseUrl`, the backend listens to all interfaces by default. The configuration has also been updated to listen to all interfaces, rather than just IPv4 ones, as this is required for Node.js v18. The production configuration now also shows the option to specify `backend.listen` as a single string.
To apply this changes to an existing app, make the following change to `app-config.yaml`:
```diff
- # Uncomment the following host directive to bind to all IPv4 interfaces and
- # not just the baseUrl hostname.
- # host: 0.0.0.0
+ # Uncomment the following host directive to bind to specific interfaces
+ # host: 127.0.0.1
```
And the following change to `app-config.production.yaml`:
```diff
- listen:
- port: 7007
- # The following host directive binds to all IPv4 interfaces when its value
- # is "0.0.0.0". This is the most permissive setting. The right value depends
- # on your specific deployment. If you remove the host line entirely, the
- # backend will bind on the interface that corresponds to the backend.baseUrl
- # hostname.
- host: 0.0.0.0
+ # The listener can also be expressed as a single <host>:<port> string. In this case we bind to
+ # all interfaces, the most permissive setting. The right value depends on your specific deployment.
+ listen: ':7007'
```
- Updated dependencies
- @backstage/cli-common@0.1.10
## 0.4.33-next.1
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.4.33-next.1",
"version": "0.4.34-next.2",
"publishConfig": {
"access": "public"
},