From 97927e4f3176ccdc706a78b34d02feeddd5f484f Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Wed, 20 Mar 2024 12:03:49 -0700 Subject: [PATCH] Release v1.1.0 (#34) - bump version deps - Fix: minor debug logging issue (#32) - Fix: restored function call to load_dissallowed_extns (#31) --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 ++ Changes.md | 10 ++++++++-- package.json | 20 ++++++++++---------- 4 files changed, 21 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d7386c..5d1cca8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: CI -on: [ push ] +on: [ push, pull_request ] env: CI: true diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 42a9bb9..d489fbd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,6 +4,8 @@ on: push: branches: - master + paths: + - package.json env: CI: true diff --git a/Changes.md b/Changes.md index f292630..ab69c60 100644 --- a/Changes.md +++ b/Changes.md @@ -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 @@ -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 diff --git a/package.json b/package.json index e5d1c57..6f64918 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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"