From 310006b70ab44913d7ceb61c9e2d1c1c646164a6 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Thu, 8 Jun 2023 13:49:13 -0700 Subject: [PATCH] Release v2.2.3 (#38) - ci: add on pull_request - dev: expand .gitignore - packaging: add .npmignore - ci: drop node 14, add 20 --- .github/workflows/ci.yml | 7 ++--- .gitignore | 6 ++++ .npmignore | 59 ++++++++++++++++++++++++++++++++++++---- .release | 2 +- Changes.md | 8 ++++++ package.json | 2 +- 6 files changed, 72 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5f3eca..ffd4e38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,6 @@ name: CI -on: - push: +on: [ push, pull_request ] env: CI: true @@ -25,7 +24,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - node-version: [ 14, 16, 18 ] + node-version: [ 16, 18, 20 ] fail-fast: false steps: - uses: actions/checkout@v3 @@ -44,7 +43,7 @@ jobs: strategy: matrix: os: [ windows-latest ] - node-version: [ 14, 16, 18 ] + node-version: [ 16, 18, 20 ] fail-fast: false steps: - uses: actions/checkout@v3 diff --git a/.gitignore b/.gitignore index f8faa6b..625981f 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,9 @@ jspm_packages .node_repl_history package-lock.json +bower_components +# Optional npm cache directory +.npmrc +.idea +.DS_Store +haraka-update.sh \ No newline at end of file diff --git a/.npmignore b/.npmignore index 22ce579..b10c4d1 100644 --- a/.npmignore +++ b/.npmignore @@ -1,14 +1,61 @@ -.github +# Logs +logs +*.log +npm-debug.log* + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules +jspm_packages + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history + +package-lock.json +bower_components +# Optional npm cache directory +.npmrc +.idea .DS_Store +haraka-update.sh + +.github +.release +.codeclimate.yml .editorconfig .gitignore .gitmodules .lgtm.yml -http/bower_components -http/node_modules -.travis.yml appveyor.yml +codecov.yml +.travis.yml .eslintrc.yaml .eslintrc.json -codecov.yml -.codeclimate.yml \ No newline at end of file + +http/bower_components +http/node_modules diff --git a/.release b/.release index 4d5c90b..0890e94 160000 --- a/.release +++ b/.release @@ -1 +1 @@ -Subproject commit 4d5c90b2c428d2cd9d5c35758b0071925f5a0f0a +Subproject commit 0890e945e4e061c96c7b2ab45017525904c17728 diff --git a/Changes.md b/Changes.md index 58b764c..5cb83ce 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,13 @@ #### N.N.N - YYYY-MM-DD +### [2.2.3] - 2023-06-08 + +- ci: add on pull_request +- dev: expand .gitignore +- packaging: add .npmignore + + #### 2.2.2 - 2022-05-28 - feat: add ignores keys with undefined values @@ -67,3 +74,4 @@ #### 1.0.0 - initial release +[2.2.3]: https://github.com/haraka/haraka-results/releases/tag/2.2.3 diff --git a/package.json b/package.json index fea89e7..496d64c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "haraka-results", - "version": "2.2.2", + "version": "2.2.3", "description": "Haraka results store for connections and transactions", "main": "index.js", "directories": {