Skip to content

Commit

Permalink
Release v1.0.12 (#31)
Browse files Browse the repository at this point in the history
* ci: update GHA workflow with shared
* ci: add submodule .release
  • Loading branch information
msimerson authored Jun 5, 2022
1 parent f260cbe commit e363dfc
Show file tree
Hide file tree
Showing 11 changed files with 105 additions and 164 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/ci-test.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI

on: [ push ]

env:
CI: true

jobs:

lint:
uses: haraka/.github/.github/workflows/lint.yml@master

# coverage:
# uses: haraka/.github/.github/workflows/coverage.yml@master
# secrets: inherit

test:
needs: [ lint, get-lts ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

get-lts:
runs-on: ubuntu-latest
steps:
- id: get
uses: msimerson/node-lts-versions@v1
outputs:
active: ${{ steps.get.outputs.active }}
lts: ${{ steps.get.outputs.lts }}
13 changes: 13 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '18 7 * * 4'

jobs:
codeql:
uses: haraka/.github/.github/workflows/codeql.yml@master
32 changes: 0 additions & 32 deletions .github/workflows/coveralls.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/lint.yml

This file was deleted.

52 changes: 0 additions & 52 deletions .github/workflows/master.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: publish

on:
push:
branches:
- master

env:
CI: true

jobs:
publish:
uses: haraka/.github/.github/workflows/publish.yml@master
secrets: inherit
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule ".release"]
path = .release
url = [email protected]:msimerson/.release.git
1 change: 1 addition & 0 deletions .release
Submodule .release added at 9be2b2
43 changes: 32 additions & 11 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,55 +1,76 @@

## 1.0.11 - 2022-03-31
### Unreleased


### [1.0.12] - 2022-06-05

- ci: update GHA workflow with shared
- ci: add submodule .release


### 1.0.11 - 2022-03-31

- node 12 EOL, drop testing.


## 1.0.10 - 2019-03-22
### 1.0.10 - 2019-03-22

* Add an 'if' to "blocked message" HTML header
* CI testing updates (node.js versions)
* moved config/karma.ini to test/config/karma.ini

## 1.0.9 - 2017-08-17

### 1.0.9 - 2017-08-17

* also prune syslog hostname when no PID in entry

## 1.0.8 - 2017-06-16

### 1.0.8 - 2017-06-16

* depend on haraka-eslint for rules
* lint fixes

## 1.0.7 - 2017-05-04

### 1.0.7 - 2017-05-04

* add --text flag to grep call, in case log file has binary chars

## 1.0.6 - 2017-01-23

### 1.0.6 - 2017-01-23

* remove host & pid detail from syslog lines

## 1.0.5 - 2016-11-04

### 1.0.5 - 2016-11-04

* display log entries for transactions
* display just transaction ID in place of full UUID.id
* refactored most of get logs into grepWithShell & asHtml
* with test coverage for the latter two

## 1.0.4 - 2016-10-25

### 1.0.4 - 2016-10-25

* remove useless $UUID token from display

## Oct 2 12:57:42 2016

### Oct 2 12:57:42 2016

* trim uuids more reliably (#4)

## Oct 2 12:08:44 2016

### Oct 2 12:08:44 2016

* Duplicate resolutions (#2)
* suppress duplicate actions

## Sep 29 23:10:33 2016

### Sep 29 23:10:33 2016

* add missing eslint definition
* added README
* add .travis.yml
* initial commit


[1.0.12]: https://github.com/haraka/haraka-plugin-log-reader/releases/tag/1.0.12
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-log-reader",
"version": "1.0.11",
"version": "1.0.12",
"description": "display log entries from haraka log files via HTTP",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e363dfc

Please sign in to comment.