File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+
12
+ - Updated default Node.js version to 22.x.
13
+ ([ #950 ] ( https://github.com/heroku/buildpacks-nodejs/pull/950 ) )
14
+
10
15
## [ 3.2.18] - 2024-10-31
11
16
12
17
### Added
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ mod install_node;
33
33
34
34
const INVENTORY : & str = include_str ! ( "../inventory.toml" ) ;
35
35
36
- const LTS_VERSION : & str = "20 .x" ;
36
+ const LTS_VERSION : & str = "22 .x" ;
37
37
38
38
const MINIMUM_NODE_VERSION_FOR_METRICS : & str = ">=14.10" ;
39
39
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const METRICS_SEND_TIMEOUT: Duration = Duration::from_secs(15);
16
16
#[ ignore]
17
17
fn simple_indexjs ( ) {
18
18
nodejs_integration_test ( "./fixtures/node-with-indexjs" , |ctx| {
19
- assert_contains ! ( ctx. pack_stdout, "Node.js version not specified, using 20 .x" ) ;
19
+ assert_contains ! ( ctx. pack_stdout, "Node.js version not specified, using 22 .x" ) ;
20
20
assert_contains ! ( ctx. pack_stdout, "Installing Node.js" ) ;
21
21
assert_web_response ( & ctx, "node-with-indexjs" ) ;
22
22
} ) ;
You can’t perform that action at this time.
0 commit comments