Skip to content

Commit

Permalink
Merge pull request #21 from lenchv/v.1.1.2
Browse files Browse the repository at this point in the history
bump app version 1.1.2
  • Loading branch information
lenchv authored Apr 20, 2024
2 parents be095e0 + ea7fcd5 commit 48d8526
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest]
node-version: [14.x, 16.x]
node-version: [14.x, 16.x, '20.x']
steps:
- uses: actions/checkout@v2
- name: Run tests on Node.js ${{ matrix.node-version }}
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [14.x, 16.x, '20.x']
steps:
- uses: actions/checkout@v2
- name: Coverage on Node.js ${{ matrix.node-version }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm publish --access public
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.1.2](https://github.com/lenchv/jks-js/releases/tag/v1.1.2) 2024-04-20

- Added index.d.ts with declared types for typescript
- Added polyfill for deprecated Buffer.slice

## [1.1.1](https://github.com/lenchv/jks-js/releases/tag/v1.1.1) 2024-03-18

- Fix dependency vulnerabilities
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jks-js",
"version": "1.1.1",
"version": "1.1.2",
"description": "jks-js is a converter of Java Key Store (JKS) to PEM certificates in order to securely connect to Java based servers using node js.",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 48d8526

Please sign in to comment.