Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jul 8, 2022
2 parents d12332a + 5b9b2eb commit 43ea735
Show file tree
Hide file tree
Showing 27 changed files with 2,066 additions and 1,825 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
21 changes: 12 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ on:
pull_request:
types: [synchronize, opened, reopened]

permissions:
contents: read

jobs:
linux16:
linux18:
runs-on: ubuntu-latest
name: Node 16 + Coverage (Linux)
name: Node 18 + Coverage (Linux)
steps:
- name: Checkout Commit
uses: actions/checkout@v3
Expand All @@ -19,7 +22,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests with coverage
Expand All @@ -30,16 +33,16 @@ jobs:
with:
commit_parent: ${{ github.event.pull_request.head.sha }}

linux14:
linux16:
runs-on: ubuntu-latest
name: Node 14 + Extra Tests (Linux)
name: Node 16 + Extra Tests (Linux)
steps:
- name: Checkout Commit
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Lint
Expand All @@ -55,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['10', '12', '18']
node: ['10', '12', '14']
name: Node ${{ matrix.node }} (Linux)
steps:
- name: Checkout Commit
Expand All @@ -75,7 +78,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node: ['12', '16']
node: ['14', '18']
name: Node ${{ matrix.node }} (macOS)
steps:
- name: Checkout Commit
Expand All @@ -95,7 +98,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node: ['10', '16']
node: ['10', '14', '18']
name: Node ${{ matrix.node }} (Windows)
steps:
- name: Checkout Commit
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# rollup changelog

## 2.75.7

_2022-06-20_

### Bug Fixes

- Mark Array.prototype.group/groupToMap as side effect free. (#4531)

### Pull Requests

- [#4523](https://github.com/rollup/rollup/pull/4523): chore: remove source map workaround, bump deps (@dnalborczyk)
- [#4525](https://github.com/rollup/rollup/pull/4525): Add regression tests for instanceof (@lukastaegert)
- [#4528](https://github.com/rollup/rollup/pull/4528): chore: Set permissions for GitHub actions (@naveensrinivasan)
- [#4531](https://github.com/rollup/rollup/pull/4531): fix: rename Array.prototype.group/groupToMap (@dnalborczyk)
- [#4535](https://github.com/rollup/rollup/pull/4535): chore: bump resolve from 1.22.0 to 1.22.1 (@pos777)

## 2.75.6

_2022-06-07_
Expand Down
4 changes: 4 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
codecov:
require_ci_to_pass: no
notify:
wait_for_ci: no

0 comments on commit 43ea735

Please sign in to comment.