Skip to content

Commit

Permalink
Release v1.0.3 (#2)
Browse files Browse the repository at this point in the history
- dep(all): bump to latest
- dep(eslint): upgrade to v9
- doc(CONTRIBUTORS): added
  • Loading branch information
msimerson authored Jan 31, 2025
1 parent 7669049 commit fb576bc
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
engines:
eslint:
enabled: true
channel: 'eslint-8'
channel: 'eslint-9'
config:
config: '.eslintrc.yaml'
config: 'eslint.config.mjs'

ratings:
paths:
Expand Down
7 changes: 0 additions & 7 deletions .eslintrc.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions .prettierrc

This file was deleted.

2 changes: 1 addition & 1 deletion .release
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

- <!--your proposed changes go here. -->
### [1.0.3] - 2025-01-30

- dep(all): bump to latest
- dep(eslint): upgrade to v9
- doc(CONTRIBUTORS): added

### [1.0.2] - 2024-04-29

- repackaged from haraka/Haraka as NPM module

[1.0.2]: https://github.com/haraka/haraka-plugin-template/releases/tag/1.0.2
[1.0.1]: https://github.com/haraka/haraka-plugin-bounce/releases/tag/1.0.1
[1.0.2]: https://github.com/haraka/haraka-plugin-bounce/releases/tag/v1.0.2
[1.0.3]: https://github.com/haraka/haraka-plugin-bounce/releases/tag/v1.0.3
9 changes: 9 additions & 0 deletions CONTRIBUTORS.md
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-bounce/commits?author=msimerson">2</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>
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[![CI Test Status][ci-img]][ci-url]
[![Code Climate][clim-img]][clim-url]

[![NPM][npm-img]][npm-url]

# haraka-plugin-bounce

# bounce
Expand Down Expand Up @@ -77,5 +75,3 @@ $EDITOR config/bounce.ini
[ci-url]: https://github.com/haraka/haraka-plugin-bounce/actions/workflows/ci.yml
[clim-img]: https://codeclimate.com/github/haraka/haraka-plugin-bounce/badges/gpa.svg
[clim-url]: https://codeclimate.com/github/haraka/haraka-plugin-bounce
[npm-img]: https://nodei.co/npm/haraka-plugin-bounce.png
[npm-url]: https://www.npmjs.com/package/haraka-plugin-bounce
25 changes: 25 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import globals from 'globals'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import js from '@eslint/js'
import { FlatCompat } from '@eslint/eslintrc'

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})

export default [
...compat.extends('@haraka'),
{
languageOptions: {
globals: {
...globals.node,
...globals.mocha,
},
},
},
]
26 changes: 15 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-bounce",
"version": "1.0.2",
"version": "1.0.3",
"description": "Provide options for Haraka bounce processing",
"main": "index.js",
"files": [
Expand All @@ -9,11 +9,11 @@
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 *.js test --fix",
"lint": "npx eslint@^9 *.js test",
"lint:fix": "npx eslint@^9 *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha",
"test": "npx mocha@^11",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
Expand All @@ -34,13 +34,17 @@
"homepage": "https://github.com/haraka/haraka-plugin-bounce#readme",
"dependencies": {
"address-rfc2821": "^2.1.2",
"haraka-net-utils": "^1.6.0",
"haraka-plugin-spf": "^1.2.5",
"haraka-tld": "^1.2.1"
"haraka-net-utils": "^1.7.1",
"haraka-plugin-spf": "^1.2.9",
"haraka-tld": "^1.2.3"
},
"devDependencies": {
"@haraka/eslint-config": "1.1.3",
"haraka-email-message": "^1.2.3",
"haraka-test-fixtures": "1.3.5"
"@haraka/eslint-config": "^2.0.2",
"haraka-email-message": "^1.2.4",
"haraka-test-fixtures": "1.3.8"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}
}

0 comments on commit fb576bc

Please sign in to comment.