Skip to content

Commit

Permalink
Merge branch 'master' into http-use-cdn
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson authored Jan 6, 2021
2 parents 8dae9f2 + e9689dc commit 674c920
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 12 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-test-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
strategy:
matrix:
os: [ windows-latest ]
node-version: [10.x, 12.x, 13.x]
node-version: [12.x, 14.x]
fail-fast: false

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
name: Checkout Haraka
with:
fetch-depth: 1
Expand All @@ -28,10 +28,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: npm install and test
run: |
npm install
npm run test
- name: Install
run: npm install

- name: Test
run: npm run test

env:
CI: true
8 changes: 4 additions & 4 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
# node 6, maint. ended 2018-04
# node 8, maint. ended 2019-12
# node 10, maint. ends 2021-04
node-version: [10.x, 12.x, 13.x]
node-version: [12.x, 14.x]
fail-fast: false

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
name: Checkout Haraka
with:
fetch-depth: 1
Expand All @@ -32,10 +32,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: npm install
- name: Install
run: npm install

- name: Run test suite
- name: Test
run: npm run test

env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ coverage
tests/node_modules
tests/queue/plain
tests/queue/multibyte
tests/test-queue
package-lock.json
12 changes: 12 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@

## NEXT - 2020-MM-DD

### Changes

- use address-rfc2821 2.0.0
- drop support for node 10

### New features

-

### Fixes

-

## 2.8.27 - 2021-01-05

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"main": "haraka.js",
"engines": {
"node": ">= v10.23.1"
"node": ">=12.20.1"
},
"dependencies": {
"address-rfc2821" : "^1.2.3",
"address-rfc2821" : "^2.0.0",
"address-rfc2822" : "^2.0.5",
"async" : "~3.2.0",
"daemon" : "~1.1.0",
Expand Down

0 comments on commit 674c920

Please sign in to comment.