Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eslint-community/eslint-plugin-n
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v17.10.1
Choose a base ref
...
head repository: eslint-community/eslint-plugin-n
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v17.10.2
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Aug 5, 2024

  1. fix: Duplex.from is supported in 16.8.0 (#325)

    Fix #324
    scagood authored Aug 5, 2024
    Copy the full SHA
    de5ac0a View commit details
  2. chore(master): release 17.10.2 (#326)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Aug 5, 2024
    Copy the full SHA
    388cef9 View commit details
Showing with 10 additions and 3 deletions.
  1. +1 −1 .github/release-please/manifest.json
  2. +7 −0 CHANGELOG.md
  3. +1 −1 lib/unsupported-features/node-builtins-modules/stream.js
  4. +1 −1 package.json
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"17.10.1"}
{".":"17.10.2"}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [17.10.2](https://github.com/eslint-community/eslint-plugin-n/compare/v17.10.1...v17.10.2) (2024-08-05)


### 🩹 Fixes

* Duplex.from is supported in 16.8.0 ([#325](https://github.com/eslint-community/eslint-plugin-n/issues/325)) ([de5ac0a](https://github.com/eslint-community/eslint-plugin-n/commit/de5ac0a4f4ea3e6de21d765084e03fcc37ef0b68)), closes [#324](https://github.com/eslint-community/eslint-plugin-n/issues/324)

## [17.10.1](https://github.com/eslint-community/eslint-plugin-n/compare/v17.10.0...v17.10.1) (2024-07-26)


2 changes: 1 addition & 1 deletion lib/unsupported-features/node-builtins-modules/stream.js
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ const Writable = {
/** @type {import('../types.js').SupportVersionTraceMap} */
const Duplex = {
[READ]: { supported: ["0.9.4"] },
from: { [READ]: { experimental: ["16.8.0"] } },
from: { [READ]: { supported: ["16.8.0"] } },
fromWeb: { [READ]: { experimental: ["17.0.0"] } },
toWeb: { [READ]: { experimental: ["17.0.0"] } },
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-n",
"version": "17.10.1",
"version": "17.10.2",
"description": "Additional ESLint's rules for Node.js",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"