Skip to content

Commit

Permalink
chore: bumps supported Node versions, deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jul 16, 2024
1 parent d6e8cdf commit 6e2a4f6
Show file tree
Hide file tree
Showing 6 changed files with 1,163 additions and 3,786 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run Eslint
Expand All @@ -22,12 +22,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodeversion: ['12', '14', '16', '18']
nodeversion: ['16', '18', '20', '22']
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodeversion }}
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: |
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v5.0.0 (2024-07-16)

- Drops support for Node < 16
- Adds support for Node 20, 22
- Bumps dependencies

## v4.2.0 (2022-02-05)

- Adds French addresses
Expand All @@ -14,7 +20,7 @@

## v4.0.0 (2021-07-12)

- Separates DAD address data into a separate repo (https://github.com/justintime50/dad), removes tooling and references to data and focuses instead on implementing a way to retrieve that data via Node
- Separates DAD address data into a separate repo (<https://github.com/justintime50/dad>), removes tooling and references to data and focuses instead on implementing a way to retrieve that data via Node
- Removed the `addresses` key as inherently each list is a set of addresses already
- Bumped dependencies, additional small tweaks

Expand Down
Loading

0 comments on commit 6e2a4f6

Please sign in to comment.