Skip to content

Commit

Permalink
Release 2.0.1 (#43)
Browse files Browse the repository at this point in the history
* chore(ci): depend on shared GHA workflows
  • Loading branch information
msimerson authored May 28, 2022
1 parent 261f617 commit e9cecc4
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 35 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,29 @@ jobs:
uses: haraka/.github/.github/workflows/lint.yml@master

test:
needs: lint
runs-on: ${{ matrix.os }}
services:
redis:
image: redis
ports:
- 6379/tcp
- 6379:6379
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 14, 16, 18 ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Node.js ${{ matrix.node-version }}
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

test-win:
needs: lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -41,7 +43,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Use Node.js ${{ matrix.node-version }}
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CodeQL

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '18 7 * * 4'

jobs:
codeql:
uses: haraka/.github/.github/workflows/codeql.yml@master
17 changes: 2 additions & 15 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 All @@ -12,18 +14,3 @@ jobs:
publish:
uses: haraka/.github/.github/workflows/publish.yml@master
secrets: inherit

publish-gpr:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34 changes: 19 additions & 15 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,80 +1,84 @@

### 2.0.1 - 2022-05-27

## 2.0.0 - 2022-03-29
- chore(ci): depend on shared GHA workflows


### 2.0.0 - 2022-03-29

- remove lots of plugin=this
- remove unnecessary braces and trailing ;
- some promises.


## 1.0.14 - 2022-02-14
### 1.0.14 - 2022-02-14

- try to unsubscribe in case connection is marked to skip during transaction


## 1.0.13 - 2019-04-23
### 1.0.13 - 2019-04-23

- add 'exists' pattern


## 1.0.12 - 2019-03-08
### 1.0.12 - 2019-03-08

- don't interfere with STARTLS and AUTH when karmi is listed above those plugins in config/plugins
- don't interfere with STARTLS and AUTH when karma is listed above those plugins in config/plugins


## 1.0.11 - 2017-10-25
### 1.0.11 - 2017-10-25

- private addresses and flagged connections exemption


## 1.0.10 - 2017-08-30
### 1.0.10 - 2017-08-30

- add TLS awards #19


## 1.0.9 - 2017-07-29
### 1.0.9 - 2017-07-29

- splash on some es6
- add AppVeyor CI testing


## 1.0.8 - 2017-06-26
### 1.0.8 - 2017-06-26

- revert #9, it breaks current Haraka deployments


## 1.0.7 - 2017-06-16
### 1.0.7 - 2017-06-16

- update for eslint 4 compat
- Add results_redis_publish=true for haraka-results changes #9


## 1.0.6 - 2017-05-04
### 1.0.6 - 2017-05-04

- emit error if redis plugin didn't create connection


## 1.0.5 - 2017-02-06
### 1.0.5 - 2017-02-06

- move merge_redis_ini into load_karma_ini, so it also gets applied
after a karma.ini change
- skip redis operations when no connection exists


## 1.0.4 - 2017-01-29
### 1.0.4 - 2017-01-29

- use the new haraka-plugin-redis
- remove exceptions for soft denials. This makes denial time simpler.
- rules updates


## 1.0.3 - 2017-01-27
### 1.0.3 - 2017-01-27

- add rule #280 for known-senders
- add support for 'length' type, with eq, gt, and lt operators
- use shared haraka-eslint


## 1.0.2 - 2017-01-24
### 1.0.2 - 2017-01-24

- use redis.merge_redis_ini()
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-karma",
"version": "2.0.0",
"version": "2.0.1",
"description": "A heuristics scoring and reputation engine for SMTP connections",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e9cecc4

Please sign in to comment.