Skip to content

Commit

Permalink
6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deepy committed Aug 15, 2023
1 parent 0d3f3c9 commit 633c204
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# Changelog

## Version 6.x *(unreleased)*

## Version 6.0.0 *(2023-08-15)*
* Removed deprecated `nodeModulesDir` from `NodeExtension`
* The resolved/computed node directory and platform are stored in `resolvedNodeDir` and `resolvedPlatform` on `NodeExtension`
* Fixes configuration-cache issue in Gradle 8.4
* Removes the entire `PlatformHelper` as the functionality has migrated into top-level functions
* Removes the deprecated `HelperExecution`
* Fixed failure querying the task inputs/outputs on 8+ with configuration-cache enabled [#259](https://github.com/node-gradle/gradle-node-plugin/issues/259)
* `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)

## Version 5.0.0 *(2023-05-13)*
* Support configuration-cache on Gradle 8.1 [#271](https://github.com/node-gradle/gradle-node-plugin/issues/271)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

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

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

* [5.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/5.0.0/README.md) (current)
* [6.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/6.0.0/README.md) (current)
* [5.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/5.0.0/README.md)
* [4.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/4.0.0/README.md)
* [3.6.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.6.0/README.md)
* [3.5.1](https://github.com/node-gradle/gradle-node-plugin/blob/3.5.1/README.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in your `build.gradle` file:

```gradle
plugins {
id "com.github.node-gradle.node" version "5.0.0"
id "com.github.node-gradle.node" version "6.0.0"
}
```

Expand All @@ -18,7 +18,7 @@ buildscript {
}
dependencies {
classpath "com.github.node-gradle:gradle-node-plugin:5.0.0"
classpath "com.github.node-gradle:gradle-node-plugin:6.0.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ file (see [Installing](installation.md) for details):

```gradle
plugins {
id "com.github.node-gradle.node" version "5.0.0"
id "com.github.node-gradle.node" version "6.0.0"
}
```

Expand Down

0 comments on commit 633c204

Please sign in to comment.