From d4b78a837a6e44f3e4999c80f5710be0f17dba2d Mon Sep 17 00:00:00 2001 From: Shalitha Suranga Date: Sat, 28 Oct 2023 13:30:39 +0530 Subject: [PATCH] Update changelog markdowns --- docs/release-notes/cli.md | 15 +++++++++++++++ docs/release-notes/framework.md | 6 ++++++ 2 files changed, 21 insertions(+) diff --git a/docs/release-notes/cli.md b/docs/release-notes/cli.md index 3559397c..ff1ef3b3 100644 --- a/docs/release-notes/cli.md +++ b/docs/release-notes/cli.md @@ -4,6 +4,21 @@ title: CLI ## Unreleased +## v10.0.0 + +### Core: frontend-library-based development +Added new configuration options to the `cli.frontendLibrary` key of the `neutralino.config.json`: +- `projectPath`: Sets the project path of the frontend-library project. This path will be used as the current directory while executing the frontend-app-related commands. +- `initCommand`: A command that gets executed after downloading an app template with the `neu create` command. +- `devCommand`: This command will run with the `neu run` command to start the frontend development server. The CLI doesn't wait for `devCommand` completion, instead, it will wait for the frontend development server via the [`tcp-port-used`](https://www.npmjs.com/package/tcp-port-used) package. +- `buildCommand`: The `neu build` command will execute this command before generating the app bundle, so you can generate static resources of your frontend app using this command. + +## v9.8.0 + +### Core: Downloader +- Download the latest Neutralinojs framework resources with the `--latest` option in the `neu update` command. +- If framework versions are not present in the app/template configuration, download the latest framework resources automatically. The CLI will download nightly releases if it can't fetch the latest release tag because of an GitHub API-related issue (i.e., Exceeded rate limits). + ## v9.7.0 ### Core: Downloader/bundler diff --git a/docs/release-notes/framework.md b/docs/release-notes/framework.md index b456ca13..d6fc4397 100644 --- a/docs/release-notes/framework.md +++ b/docs/release-notes/framework.md @@ -4,6 +4,12 @@ title: Framework ## Unreleased +## v4.14.1 + +### DevOps +- Use Windows 2019 server and macOS 11 (Big Sur) to compile framework release artifacts. +- Set minimum supported macOS version via `MACOSX_DEPLOYMENT_TARGET=10.7` + ## v4.14.0 ### Filesystem API