Bump NODE_LTS_VERSION to 20.11.1

In e8638c9a942e94f097dc8f37a3b58ac067a5ca16 we introduced a constant to
store the version of Node to be used when generating `.node-version`.

Since then, the [current LTS][LTS] version of Node is now `20.11.1` as
of [2024-02-14][date].

[LTS]: https://nodejs.github.io/nodejs.dev/en/about/releases/
[date]: https://nodejs.org/en/blog/release/v20.11.1
This commit is contained in:
Steve Polito 2024-03-22 13:27:44 -04:00
parent 68b20b6513
commit 0f18fe1322
2 changed files with 5 additions and 1 deletions

@ -1,3 +1,7 @@
* Update the `.node-version` file conditionally generated for new applications to 20.11.1
*Steve Polito*
* Fix sanitizer vendor configuration in 7.1 defaults.
In apps where rails-html-sanitizer was not eagerly loaded, the sanitizer default could end up

@ -16,7 +16,7 @@ class AppBase < Base # :nodoc:
include Devcontainer
include AppName
NODE_LTS_VERSION = "18.15.0"
NODE_LTS_VERSION = "20.11.1"
BUN_VERSION = "1.0.1"
JAVASCRIPT_OPTIONS = %w( importmap bun webpack esbuild rollup )