Skip to content

Commit 633c204

Browse files
committed
6.0.0
1 parent 0d3f3c9 commit 633c204

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# Changelog
22

33
## Version 6.x *(unreleased)*
4+
5+
## Version 6.0.0 *(2023-08-15)*
46
* Removed deprecated `nodeModulesDir` from `NodeExtension`
57
* The resolved/computed node directory and platform are stored in `resolvedNodeDir` and `resolvedPlatform` on `NodeExtension`
68
* Fixes configuration-cache issue in Gradle 8.4
79
* Removes the entire `PlatformHelper` as the functionality has migrated into top-level functions
810
* Removes the deprecated `HelperExecution`
911
* Fixed failure querying the task inputs/outputs on 8+ with configuration-cache enabled [#259](https://github.com/node-gradle/gradle-node-plugin/issues/259)
12+
* `ProxySetting.FORCED` will now unset environment variables configured outside of Gradle, forcing the settings to match [#153](https://github.com/node-gradle/gradle-node-plugin/issues/153)
1013

1114
## Version 5.0.0 *(2023-05-13)*
1215
* Support configuration-cache on Gradle 8.1 [#271](https://github.com/node-gradle/gradle-node-plugin/issues/271)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
![Build Status](https://github.com/node-gradle/gradle-node-plugin/workflows/Build/badge.svg?branch=master)
66
[![License](https://img.shields.io/github/license/node-gradle/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
7-
![Version](https://img.shields.io/badge/Version-5.0.0-orange.svg)
7+
![Version](https://img.shields.io/badge/Version-6.0.0-orange.svg)
88

99
This plugin enables you to use a lot of [Node.js](https://nodejs.org)-based technologies as part of your
1010
build without having Node.js installed locally on your system. It integrates the following Node.js-based system
@@ -39,7 +39,8 @@ issue to [GitHub Issues](https://github.com/node-gradle/gradle-node-plugin/issue
3939

4040
Here's the documentation for older releases of the plugin:
4141

42-
* [5.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/5.0.0/README.md) (current)
42+
* [6.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/6.0.0/README.md) (current)
43+
* [5.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/5.0.0/README.md)
4344
* [4.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/4.0.0/README.md)
4445
* [3.6.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.6.0/README.md)
4546
* [3.5.1](https://github.com/node-gradle/gradle-node-plugin/blob/3.5.1/README.md)

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ in your `build.gradle` file:
55

66
```gradle
77
plugins {
8-
id "com.github.node-gradle.node" version "5.0.0"
8+
id "com.github.node-gradle.node" version "6.0.0"
99
}
1010
```
1111

@@ -18,7 +18,7 @@ buildscript {
1818
}
1919
2020
dependencies {
21-
classpath "com.github.node-gradle:gradle-node-plugin:5.0.0"
21+
classpath "com.github.node-gradle:gradle-node-plugin:6.0.0"
2222
}
2323
}
2424

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ file (see [Installing](installation.md) for details):
1818

1919
```gradle
2020
plugins {
21-
id "com.github.node-gradle.node" version "5.0.0"
21+
id "com.github.node-gradle.node" version "6.0.0"
2222
}
2323
```
2424

0 commit comments

Comments
 (0)