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: octokit/core.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.1
Choose a base ref
...
head repository: octokit/core.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.0-beta.1
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on May 21, 2023

  1. ci: stop testing against NodeJS v14, v16 (#561)

    * build(package): set minimal node version in engines field to v18
    * build: update esbuild options to use Node 18
    BREAKING CHANGE: Drop support for NodeJS v14, v16
    wolfy1339 authored May 21, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    11d6862 View commit details
Showing with 3 additions and 4 deletions.
  1. +1 −2 .github/workflows/test.yml
  2. +1 −1 package.json
  3. +1 −1 scripts/build.mjs
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -13,9 +13,8 @@ jobs:
strategy:
matrix:
node_version:
- 14
- 16
- 18
- 20
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -96,6 +96,6 @@
]
},
"engines": {
"node": ">= 14"
"node": ">= 18"
}
}
2 changes: 1 addition & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ async function main() {
outdir: "pkg/dist-node",
bundle: true,
platform: "node",
target: "node14",
target: "node18",
format: "cjs",
...sharedOptions,
}),