generated from haraka/haraka-plugin-template
-
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.
- deps: bump all deps to latest versions - doc: mv Changes -> CHANGELOG.md, add CONTRIBUTORS - ci: update to point to shared configs - style: automated code formatting with prettier - lint: remove duplicate / stale rules from .eslintrc - dep: eslint-plugin-haraka -> @haraka/eslint-config - populate [files] in package.json. Delete .npmignore.
- Loading branch information
Showing
17 changed files
with
409 additions
and
423 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
engines: | ||
eslint: | ||
enabled: true | ||
channel: "eslint-8" | ||
channel: 'eslint-9' | ||
config: | ||
config: ".eslintrc.yaml" | ||
config: 'eslint.config.mjs' | ||
|
||
ratings: | ||
paths: | ||
- "**.js" | ||
paths: | ||
- '**.js' |
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
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,41 +1,22 @@ | ||
name: CI | ||
|
||
on: [ push, pull_request ] | ||
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, windows-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 | ||
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
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,2 @@ | ||
singleQuote: true | ||
semi: false |
Submodule .release
updated
11 files
+2 −0 | .prettierrc.yaml | |
+1 −0 | .shellcheckrc | |
+32 −5 | CHANGELOG.md | |
+1 −1 | LICENSE | |
+34 −15 | README.md | |
+38 −1 | base.sh | |
+85 −0 | contributors.js | |
+14 −3 | finish.sh | |
+7 −6 | npm/prepend-scope.cjs | |
+146 −32 | start.sh | |
+46 −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 |
---|---|---|
@@ -1,40 +1,40 @@ | ||
|
||
### Unreleased | ||
|
||
### [1.0.9] - 2025-01-08 | ||
|
||
### [1.0.8] - 2023-05-25 | ||
- doc: mv Changes -> CHANGELOG.md, add CONTRIBUTORS | ||
- ci: update to point to shared configs | ||
- style: automated code formatting with prettier | ||
- lint: remove duplicate / stale rules from .eslintrc | ||
- dep: eslint-plugin-haraka -> @haraka/eslint-config | ||
- populate [files] in package.json. Delete .npmignore. | ||
|
||
#### Changed | ||
### [1.0.8] - 2023-05-25 | ||
|
||
- doc(README) Update config file name #9 | ||
|
||
|
||
### 1.0.7 - 2023-01-05 | ||
|
||
- handle Spamhaus DQS (#5): add a dqs_key config option and a [dbl.dq.spamhaus.net] zone, disabled by default | ||
|
||
|
||
### 1.0.6 - 2022-11-28 | ||
|
||
- test: increase timeout for DNSBL test | ||
|
||
|
||
### 1.0.5 - 2022-08-29 | ||
|
||
- fix #2 change Spamhaus defaults to not assume errors as positives | ||
- warn instead of debug when result do not validate | ||
|
||
|
||
### [1.0.4] - 2022-07-23 | ||
|
||
- updated package.json | ||
|
||
|
||
### 1.0.3 - 2022-07-23 | ||
|
||
- Import from Haraka | ||
|
||
|
||
[1.0.4]: https://github.com/haraka/haraka-plugin-uribl/releases/tag/1.0.4 | ||
[1.0.6]: https://github.com/haraka/haraka-plugin-uribl/releases/tag/1.0.6 | ||
[1.0.8]: https://github.com/haraka/haraka-plugin-uribl/releases/tag/1.0.8 | ||
[1.0.9]: https://github.com/haraka/haraka-plugin-uribl/releases/tag/1.0.9 |
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,9 @@ | ||
# Contributors | ||
|
||
This handcrafted artisinal software is brought to you by: | ||
|
||
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-plugin-uribl/commits?author=msimerson">21</a>)| <img height="80" src="https://avatars.githubusercontent.com/u/918201?v=4"><br><a href="https://github.com/DoobleD">DoobleD</a> (<a href="https://github.com/haraka/haraka-plugin-uribl/commits?author=DoobleD">1</a>)| <img height="80" src="https://avatars.githubusercontent.com/u/203240?v=4"><br><a href="https://github.com/lnedry">lnedry</a> (<a href="https://github.com/haraka/haraka-plugin-uribl/commits?author=lnedry">1</a>)| | ||
| :---: | :---: | :---: | | ||
|
||
<sub>this file is generated by [.release](https://github.com/msimerson/.release). | ||
Contribute to this project to get your GitHub profile included here.</sub> |
Oops, something went wrong.