Skip to content

Commit

Permalink
Release v2.2.3 (#38)
Browse files Browse the repository at this point in the history
- ci: add on pull_request
- dev: expand .gitignore
- packaging: add .npmignore
- ci: drop node 14, add 20
  • Loading branch information
msimerson authored Jun 8, 2023
1 parent 4415e9a commit 310006b
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 12 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: CI

on:
push:
on: [ push, pull_request ]

env:
CI: true
Expand All @@ -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
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
59 changes: 53 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -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

http/bower_components
http/node_modules
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 10 files
+29 −0 CHANGELOG.md
+37 −23 README.md
+15 −2 base.sh
+0 −10 cleanup.sh
+0 −51 do.sh
+22 −0 finish.sh
+16 −0 npm/prepend-scope.cjs
+0 −23 push.sh
+124 −0 start.sh
+28 −0 submit.sh
8 changes: 8 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -67,3 +74,4 @@


#### 1.0.0 - initial release
[2.2.3]: https://github.com/haraka/haraka-results/releases/tag/2.2.3
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 310006b

Please sign in to comment.