Skip to content

Commit

Permalink
Release v1.1.0 (#34)
Browse files Browse the repository at this point in the history
- bump version deps
- Fix: minor debug logging issue (#32)
- Fix: restored function call to load_dissallowed_extns (#31)
  • Loading branch information
msimerson authored Mar 20, 2024
1 parent 8e306af commit 97927e4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [ push ]
on: [ push, pull_request ]

env:
CI: true
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
paths:
- package.json

env:
CI: true
Expand Down
10 changes: 8 additions & 2 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
### Unreleased


### [1.0.7] - 2022-06-16
### [1.1.0] - 2024-03-20

- chore: bump version deps, and pin them
- fix: minor debug logging issue #32
- fix: restored missing function call #31

#### Changed

### [1.0.7] - 2022-06-16

- import fresh from Haraka
- convert tests to mocha
Expand Down Expand Up @@ -32,3 +37,4 @@


[1.0.7]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/1.0.7
[1.1.0]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/1.1.0
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "haraka-plugin-attachment",
"license": "MIT",
"description": "A message attachment scanning plugin for Haraka",
"version": "1.0.7",
"version": "1.1.0",
"homepage": "https://github.com/haraka/haraka-plugin-attachment",
"repository": {
"type": "git",
Expand All @@ -16,20 +16,20 @@
"scripts": {
"test": "npx mocha --exit",
"lint": "npx eslint *.js test",
"lintfix": "npx eslint --fix *.js test"
"lintfix": "npx eslint --fix *.js test",
"versions": "npx dependency-version-checker check"
},
"dependencies": {
"tmp": "0.2.1",
"haraka-constants": "*",
"haraka-utils": "*"
"tmp": "0.2.3",
"haraka-constants": "1.0.6",
"haraka-utils": "1.0.3"
},
"optionalDependencies": {},
"devDependencies": {
"eslint": ">=8",
"eslint-plugin-haraka": "*",
"haraka-config": "*",
"haraka-test-fixtures": ">=1.2.0",
"mocha": ">=9"
"eslint-plugin-haraka": "1.0.15",
"haraka-config": "1.1.0",
"haraka-test-fixtures": "1.3.3",
"mocha": "10.3.0"
},
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-attachment/issues"
Expand Down

0 comments on commit 97927e4

Please sign in to comment.