-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- dep: eslint-plugin-haraka -> @haraka/eslint-config - lint: updated .eslintrc - package.json: updated scripts - prettier
- Loading branch information
Showing
17 changed files
with
1,524 additions
and
1,517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
Fixes # | ||
|
||
Changes proposed in this pull request: | ||
- | ||
- | ||
|
||
- | ||
- | ||
|
||
Checklist: | ||
|
||
- [ ] docs updated | ||
- [ ] tests updated | ||
- [ ] Changes.md updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,22 @@ | ||
name: CI | ||
|
||
on: [ push ] | ||
on: [push, pull_request] | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
|
||
lint: | ||
uses: haraka/.github/.github/workflows/lint.yml@master | ||
|
||
coverage: | ||
uses: haraka/.github/.github/workflows/coverage.yml@master | ||
secrets: inherit | ||
|
||
test: | ||
needs: [ lint, get-lts ] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
node-version: ${{ fromJson(needs.get-lts.outputs.active) }} | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
name: Node ${{ matrix.node-version }} on ${{ matrix.os }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- run: npm test | ||
|
||
test-win-latest: | ||
needs: [ lint, get-lts ] | ||
|
||
# no docker/images support on Windows (currently), so run w/o Redis | ||
# also, stack run commands so test doesn't begin before install completes | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
node-version: ${{ fromJson(needs.get-lts.outputs.active) }} | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
# Needed for Node 14 on Windows 2022 (which uses Visual Studio 2022) | ||
# The default node-gyp installed with Node 14 doesn't recognize VS 2022 | ||
# Remove this when Node 14 support is dropped (2023-04-30) | ||
- name: Update npm | ||
if: matrix.node-version == 14 | ||
run: npm install -g npm | ||
|
||
# To address a node-gyp install issues in Windows starting in Node 16 | ||
# This should be temporary and hopefully should be removed in the future | ||
- name: Install node-gyp (temp workaround) | ||
run: npx node-gyp@^9.0.0 install | ||
- run: npm install | ||
- run: npm run test | ||
|
||
test-win-2019: | ||
needs: [ test-win-latest, get-lts ] | ||
runs-on: windows-2019 | ||
strategy: | ||
matrix: | ||
node-version: ${{ fromJson(needs.get-lts.outputs.active) }} | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Update npm | ||
if: matrix.node-version == 14 | ||
run: npm install -g npm | ||
- name: Install node-gyp (temp workaround) | ||
run: npx node-gyp@^9.0.0 install | ||
- run: npm install | ||
- run: npm run test | ||
ubuntu: | ||
needs: [lint] | ||
uses: haraka/.github/.github/workflows/ubuntu.yml@master | ||
|
||
get-lts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: get | ||
uses: msimerson/node-lts-versions@v1 | ||
outputs: | ||
active: ${{ steps.get.outputs.active }} | ||
lts: ${{ steps.get.outputs.lts }} | ||
windows: | ||
needs: [lint] | ||
uses: haraka/.github/.github/workflows/windows.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ env: | |
jobs: | ||
publish: | ||
uses: haraka/.github/.github/workflows/publish.yml@master | ||
secrets: inherit | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
singleQuote: true |
Submodule .release
updated
9 files
+2 −0 | .prettierrc.yaml | |
+1 −0 | .shellcheckrc | |
+17 −0 | CHANGELOG.md | |
+14 −7 | README.md | |
+19 −1 | base.sh | |
+6 −2 | finish.sh | |
+1 −1 | npm/prepend-scope.cjs | |
+93 −18 | start.sh | |
+25 −6 | submit.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Changelog | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/). | ||
|
||
### Unreleased | ||
|
||
### [1.2.2] - 2024-04-07 | ||
|
||
- dep: eslint-plugin-haraka -> @haraka/eslint-config | ||
- lint: updated .eslintrc | ||
- package.json: updated scripts | ||
- prettier | ||
|
||
### [1.2.1] - 2024-04-03 | ||
|
||
- dep(libqp): bump to 2.1.0 | ||
- dep(libmime): bump to 5.3.4 | ||
- dep(haraka-message-stream): bump to 1.2.1 | ||
- dep(mocha & eslint): remove from devDeps (install as needed with npx) | ||
- add ./test to .npmignore | ||
|
||
### [1.2.0] - 2022-11-29 | ||
|
||
- dep(libqp): update from 1.1 -> 2.0.1 | ||
|
||
### [1.1.0] - 2022-09-14 | ||
|
||
- Do not insert banner in text attachments, #3 | ||
- chore(climate): configure code climate | ||
|
||
### [1.0.0] - 2022-06-24 | ||
|
||
- Imported from [Haraka](https://github.com/haraka/Haraka) | ||
|
||
[1.0.0]: https://github.com/haraka/email-message/releases/tag/v1.0.0 | ||
[1.1.0]: https://github.com/haraka/email-message/releases/tag/v1.1.0 | ||
[1.2.0]: https://github.com/haraka/email-message/releases/tag/v1.2.0 | ||
[1.2.1]: https://github.com/haraka/email-message/releases/tag/v1.2.1 | ||
[1.2.2]: https://github.com/haraka/email-message/releases/tag/v1.2.2 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.