Skip to content

Commit

Permalink
Merge branch 'release/v1.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Sep 27, 2023
2 parents f8f2983 + 09adf2a commit 847902e
Show file tree
Hide file tree
Showing 14 changed files with 64 additions and 62 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
if: ${{ (github.ref_name == 'master') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
if: startsWith(github.event.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jscu",
"private": true,
"license": "MIT",
"version": "1.0.6",
"version": "1.0.7",
"root_package": "packages/js-crypto-utils",
"workspaces": [
"packages/*"
Expand All @@ -21,24 +21,24 @@
"karma:window": "lerna run karma:window"
},
"devDependencies": {
"@types/elliptic": "6.4.14",
"@types/jest": "29.5.4",
"@types/node": "18.17.13",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@types/elliptic": "6.4.15",
"@types/jest": "29.5.5",
"@types/node": "18.18.0",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"can-npm-publish": "1.3.6",
"cross-env": "7.0.3",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "8.48.0",
"eslint": "8.50.0",
"jasmine-core": "5.1.1",
"jest": "29.6.4",
"jest": "29.7.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-jasmine": "5.1.0",
"karma-typescript": "5.5.4",
"lerna": "7.2.0",
"lerna": "7.3.0",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"typescript": "5.2.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/js-crypto-aes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-aes",
"version": "1.0.5",
"version": "1.0.6",
"description": "Universal Module for AES Encryption and Decryption in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -29,10 +29,10 @@
"webcrypto"
],
"devDependencies": {
"js-crypto-random": "^1.0.4",
"js-crypto-random": "^1.0.5",
"js-encoding-utils": "0.7.3"
},
"dependencies": {
"js-crypto-env": "^1.0.4"
"js-crypto-env": "^1.0.5"
}
}
12 changes: 6 additions & 6 deletions packages/js-crypto-ec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-ec",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for Elliptic Curve Cryptography (ECDSA and ECDH) in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -34,13 +34,13 @@
"asn1.js": "~5.4.1",
"buffer": "~6.0.0",
"elliptic": "~6.5.0",
"js-crypto-env": "^1.0.4",
"js-crypto-hash": "^1.0.6",
"js-crypto-key-utils": "^1.0.6",
"js-crypto-random": "^1.0.4",
"js-crypto-env": "^1.0.5",
"js-crypto-hash": "^1.0.7",
"js-crypto-key-utils": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-encoding-utils": "0.7.3"
},
"devDependencies": {
"@types/elliptic": "6.4.14"
"@types/elliptic": "6.4.15"
}
}
2 changes: 1 addition & 1 deletion packages/js-crypto-env/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-env",
"version": "1.0.4",
"version": "1.0.5",
"description": "Shared environment modules for jscu",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/js-crypto-hash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-hash",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for Hash Function in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"buffer": "~6.0.0",
"hash.js": "~1.1.7",
"js-crypto-env": "^1.0.4",
"js-crypto-env": "^1.0.5",
"md5": "~2.3.0",
"sha3": "~2.1.0"
},
Expand Down
9 changes: 5 additions & 4 deletions packages/js-crypto-hkdf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-hkdf",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for HKDF (Hash-based Key Derivation Function) in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -30,9 +30,10 @@
"webcrypto"
],
"dependencies": {
"js-crypto-env": "^1.0.4",
"js-crypto-hmac": "^1.0.6",
"js-crypto-random": "^1.0.4",
"js-crypto-env": "^1.0.5",
"js-crypto-hash": "^1.0.7",
"js-crypto-hmac": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-encoding-utils": "0.7.3"
}
}
7 changes: 4 additions & 3 deletions packages/js-crypto-hmac/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-hmac",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for HMAC (Hash-based Message Authentication Code) in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -29,10 +29,11 @@
"webcrypto"
],
"devDependencies": {
"js-crypto-random": "^1.0.5",
"js-encoding-utils": "0.7.3"
},
"dependencies": {
"js-crypto-env": "^1.0.4",
"js-crypto-hash": "^1.0.6"
"js-crypto-env": "^1.0.5",
"js-crypto-hash": "^1.0.7"
}
}
10 changes: 5 additions & 5 deletions packages/js-crypto-key-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-key-utils",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for Cryptographic Key Utilities in JavaScript, including PEM-JWK converters",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -49,10 +49,10 @@
"buffer": "~6.0.0",
"des.js": "~1.1.0",
"elliptic": "~6.5.0",
"js-crypto-aes": "^1.0.5",
"js-crypto-hash": "^1.0.6",
"js-crypto-pbkdf": "^1.0.6",
"js-crypto-random": "^1.0.4",
"js-crypto-aes": "^1.0.6",
"js-crypto-hash": "^1.0.7",
"js-crypto-pbkdf": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-encoding-utils": "0.7.3",
"lodash.clonedeep": "~4.5.0"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/js-crypto-pbkdf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-pbkdf",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for Password-based Key Derivation Function (PBKDF) in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -31,8 +31,8 @@
"rfc8018"
],
"dependencies": {
"js-crypto-hash": "^1.0.6",
"js-crypto-hmac": "^1.0.6",
"js-crypto-hash": "^1.0.7",
"js-crypto-hmac": "^1.0.7",
"js-encoding-utils": "0.7.3"
}
}
4 changes: 2 additions & 2 deletions packages/js-crypto-random/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-random",
"version": "1.0.4",
"version": "1.0.5",
"description": "Universal Module for Secure Random Generator in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -29,6 +29,6 @@
"webcrypto"
],
"dependencies": {
"js-crypto-env": "^1.0.4"
"js-crypto-env": "^1.0.5"
}
}
10 changes: 5 additions & 5 deletions packages/js-crypto-rsa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-rsa",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module for RSA Cryptography (RSA-OAEP and RSASSA-PSS/PKCS1-V1_5) in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -35,10 +35,10 @@
"dependencies": {
"bn.js": "~5.2.0",
"buffer": "~6.0.0",
"js-crypto-env": "^1.0.4",
"js-crypto-hash": "^1.0.6",
"js-crypto-key-utils": "^1.0.6",
"js-crypto-random": "^1.0.4",
"js-crypto-env": "^1.0.5",
"js-crypto-hash": "^1.0.7",
"js-crypto-key-utils": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-encoding-utils": "0.7.3"
}
}
22 changes: 11 additions & 11 deletions packages/js-crypto-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-crypto-utils",
"version": "1.0.6",
"version": "1.0.7",
"description": "JavaScript cryptographic utilities for OpenSSL-WebCrypto compatibility including PEM/X509-JWK converter.",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -33,17 +33,17 @@
"openssl"
],
"dependencies": {
"js-crypto-aes": "^1.0.5",
"js-crypto-ec": "^1.0.6",
"js-crypto-hash": "^1.0.6",
"js-crypto-hkdf": "^1.0.6",
"js-crypto-hmac": "^1.0.6",
"js-crypto-key-utils": "^1.0.6",
"js-crypto-pbkdf": "^1.0.6",
"js-crypto-random": "^1.0.4",
"js-crypto-rsa": "^1.0.6",
"js-crypto-aes": "^1.0.6",
"js-crypto-ec": "^1.0.7",
"js-crypto-hash": "^1.0.7",
"js-crypto-hkdf": "^1.0.7",
"js-crypto-hmac": "^1.0.7",
"js-crypto-key-utils": "^1.0.7",
"js-crypto-pbkdf": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-crypto-rsa": "^1.0.7",
"js-encoding-utils": "0.7.3",
"js-x509-utils": "^1.0.6",
"js-x509-utils": "^1.0.7",
"lodash.clonedeep": "~4.5.0"
}
}
10 changes: 5 additions & 5 deletions packages/js-x509-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-x509-utils",
"version": "1.0.6",
"version": "1.0.7",
"description": "Universal Module of X.509 Certificate Utilities in JavaScript",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -34,10 +34,10 @@
"asn1.js-rfc5280": "~3.0.0",
"bn.js": "~5.2.0",
"buffer": "~6.0.0",
"js-crypto-ec": "^1.0.6",
"js-crypto-key-utils": "^1.0.6",
"js-crypto-random": "^1.0.4",
"js-crypto-rsa": "^1.0.6",
"js-crypto-ec": "^1.0.7",
"js-crypto-key-utils": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-crypto-rsa": "^1.0.7",
"js-encoding-utils": "0.7.3"
}
}

0 comments on commit 847902e

Please sign in to comment.