Skip to content

Commit

Permalink
Merge pull request #107 from zama-ai/release05patch
Browse files Browse the repository at this point in the history
feat: adds storage check for ACL
  • Loading branch information
jatZama authored Oct 21, 2024
2 parents 25bbaa0 + 44d68ab commit 14a19c7
Show file tree
Hide file tree
Showing 14 changed files with 486 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x
- run: npm ci
- run: npm test
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publishprerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x
- run: npm ci
- run: npm test
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
!lib/**/*
!web.d.ts
!web.js
!node.d.ts
!node.js
!package.json
!README.md
!LICENSE
Expand Down
1 change: 1 addition & 0 deletions node.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/node';
1 change: 1 addition & 0 deletions node.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/node.cjs';
43 changes: 31 additions & 12 deletions package-lock.json

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

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fhevmjs",
"version": "0.5.0",
"version": "0.5.3",
"description": "fhEVM SDK for blockchain using TFHE",
"main": "lib/node.js",
"types": "lib/node/node.d.ts",
Expand All @@ -22,6 +22,9 @@
"require": "./lib/node.cjs"
}
},
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint src/",
"build": "npm run build:lib && npm run build:bundle",
Expand All @@ -45,7 +48,6 @@
"@types/keccak": "^3.0.4",
"bigint-buffer": "^1.1.5",
"commander": "^11.0.0",
"ethers": "^6.6.4",
"node-fetch": "^2.7.0",
"node-tfhe": "^0.6.3",
"sha3": "^2.1.4",
Expand All @@ -64,6 +66,7 @@
"@types/node-fetch": "^2.6.11",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"ethers": "^6.13.1",
"fetch-mock-jest": "^1.5.1",
"jest": "^29.5.0",
"jest-raw-loader": "^1.0.1",
Expand Down
Loading

0 comments on commit 14a19c7

Please sign in to comment.