Skip to content

Commit 1b843fd

Browse files
committed
Merge branch 'release/1.12.6'
2 parents 38dc275 + 39e9d79 commit 1b843fd

File tree

9 files changed

+145
-160
lines changed

9 files changed

+145
-160
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: [push, pull_request]
55

66
jobs:
77
build:
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
strategy:
1010
matrix:
11-
node-version: [12.x, 14.x, 16.x]
11+
node-version: [12.x, 14.x, 16.x, 18.x]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Use Node.js ${{ matrix.node-version }}
@@ -53,7 +53,7 @@ jobs:
5353
cat /tmp/piping_log.txt
5454
5555
docker_test:
56-
runs-on: ubuntu-18.04
56+
runs-on: ubuntu-20.04
5757
steps:
5858
- uses: actions/checkout@v3
5959
- run: docker build -t piping-server .

.github/workflows/docker-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build_and_push:
12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-20.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
with:

.github/workflows/docker-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build_and_push:
14-
runs-on: ubuntu-18.04
14+
runs-on: ubuntu-20.04
1515
steps:
1616
- uses: actions/checkout@v3
1717
- run: git fetch --unshallow

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- 'v*'
66
jobs:
77
npm_publish:
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
steps:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-node@v3

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55

66
## [Unreleased]
77

8+
## [1.12.6] - 2022-08-10
9+
### Changed
10+
* Update dependencies
11+
12+
### Fixed
13+
* Change the way of setting secure context to avoid an error "curl: (35) error:14004410:SSL routines:CONNECT_CR_SRVR_HELLO:sslv3 alert handshake failure" on client side in some environment
14+
815
## [1.12.5] - 2022-07-06
916
### Changed
1017
* Update dependencies
@@ -442,7 +449,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
442449
* Docker automated build on Docker Hub
443450
* Support HTTPS
444451

445-
[Unreleased]: https://github.com/nwtgck/piping-server/compare/v1.12.5...HEAD
452+
[Unreleased]: https://github.com/nwtgck/piping-server/compare/v1.12.6...HEAD
453+
[1.12.6]: https://github.com/nwtgck/piping-server/compare/v1.12.5...v1.12.6
446454
[1.12.5]: https://github.com/nwtgck/piping-server/compare/v1.12.4...v1.12.5
447455
[1.12.4]: https://github.com/nwtgck/piping-server/compare/v1.12.3...v1.12.4
448456
[1.12.3]: https://github.com/nwtgck/piping-server/compare/v1.12.2...v1.12.3

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.15.1-alpine
1+
FROM node:16.16.0-alpine
22

33
LABEL maintainer="Ryo Ota <nwtgck@nwtgck.org>"
44

0 commit comments

Comments
 (0)