Skip to content

Commit

Permalink
v1.5.9 (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
sentientforest authored Dec 10, 2024
1 parent c7fba7e commit eb5ee87
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 804 deletions.
2 changes: 1 addition & 1 deletion chain-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gala-chain/api",
"version": "1.5.8",
"version": "1.5.9",
"description": "Common types, DTOs (Data Transfer Objects), APIs, signatures, and utils for GalaChain.",
"license": "Apache-2.0",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion chain-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ npm install -g @gala-chain/cli
$ galachain COMMAND
running command...
$ galachain (--version)
@gala-chain/cli/1.5.8 linux-x64 node-v18.20.4
@gala-chain/cli/1.5.9 linux-arm64 node-v18.20.5
$ galachain --help [COMMAND]
USAGE
$ galachain COMMAND
Expand Down
4 changes: 2 additions & 2 deletions chain-cli/chaincode-template/package-lock.json

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

12 changes: 6 additions & 6 deletions chain-cli/chaincode-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galachain/product",
"version": "1.5.8",
"version": "1.5.9",
"description": "Product Chaincode",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
Expand All @@ -22,17 +22,17 @@
"update-snapshot": "jest --updateSnapshot"
},
"dependencies": {
"@gala-chain/api": "1.5.8",
"@gala-chain/chaincode": "1.5.8",
"@gala-chain/api": "1.5.9",
"@gala-chain/chaincode": "1.5.9",
"@grpc/grpc-js": "1.10.10",
"dotenv": "^16.0.1",
"fabric-contract-api": "2.5.6",
"fabric-shim": "2.5.6"
},
"devDependencies": {
"@gala-chain/cli": "1.5.8",
"@gala-chain/client": "1.5.8",
"@gala-chain/test": "1.5.8",
"@gala-chain/cli": "1.5.9",
"@gala-chain/client": "1.5.9",
"@gala-chain/test": "1.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "18.11.9",
Expand Down
4 changes: 2 additions & 2 deletions chain-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gala-chain/cli",
"version": "1.5.8",
"version": "1.5.9",
"description": "CLI for GalaChain to manage and deploy chaincodes",
"license": "Apache-2.0",
"bin": {
Expand All @@ -14,7 +14,7 @@
"/oclif.manifest.json"
],
"dependencies": {
"@gala-chain/api": "1.5.8",
"@gala-chain/api": "1.5.9",
"@noble/secp256k1": "^1.7.1",
"@oclif/core": "^3",
"@oclif/plugin-help": "^3",
Expand Down
4 changes: 2 additions & 2 deletions chain-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gala-chain/client",
"version": "1.5.8",
"version": "1.5.9",
"description": "GalaChain client library",
"license": "Apache-2.0",
"scripts": {
Expand All @@ -21,7 +21,7 @@
"lib"
],
"dependencies": {
"@gala-chain/api": "1.5.8",
"@gala-chain/api": "1.5.9",
"axios": "^1.6.0",
"jsonschema": "^1.4.1",
"tslib": "^2.6.2"
Expand Down
4 changes: 2 additions & 2 deletions chain-connect/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@gala-chain/connect",
"version": "1.5.8",
"version": "1.5.9",
"dependencies": {
"@gala-chain/api": "1.5.8",
"@gala-chain/api": "1.5.9",
"ethers": "^6.12.1",
"tslib": "^2.3.0",
"bignumber.js": "9.1.2",
Expand Down
6 changes: 3 additions & 3 deletions chain-test/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@gala-chain/test",
"version": "1.5.8",
"version": "1.5.9",
"description": "Unit testing and integration testing for GalaChain",
"license": "Apache-2.0",
"dependencies": {
"@gala-chain/client": "1.5.8",
"@gala-chain/client": "1.5.9",
"nanoid": "^3.3.6",
"tslib": "^2.6.2",
"@jest/globals": "29.7.0"
},
"peerDependencies": {
"@gala-chain/api": "1.5.8",
"@gala-chain/api": "1.5.9",
"bignumber.js": "*",
"class-transformer": "*",
"elliptic": "*",
Expand Down
4 changes: 2 additions & 2 deletions chaincode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gala-chain/chaincode",
"version": "1.5.8",
"version": "1.5.9",
"description": "Framework for building chaincodes on GalaChain",
"license": "Apache-2.0",
"type": "commonjs",
Expand All @@ -22,7 +22,7 @@
"update-snapshot": "jest --updateSnapshot"
},
"dependencies": {
"@gala-chain/api": "1.5.8",
"@gala-chain/api": "1.5.9",
"@grpc/grpc-js": "1.10.10",
"fabric-contract-api": "2.5.6",
"fabric-shim": "2.5.6",
Expand Down
775 changes: 7 additions & 768 deletions licenses/licenses.csv

Large diffs are not rendered by default.

28 changes: 14 additions & 14 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": "@gala-chain/sdk",
"version": "1.5.8",
"version": "1.5.9",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
Expand Down

0 comments on commit eb5ee87

Please sign in to comment.