From 646bb2367678181304d34abc9f5906a4236afc41 Mon Sep 17 00:00:00 2001 From: Gregor Date: Tue, 27 Jun 2023 15:43:00 +0200 Subject: [PATCH 1/5] bindings --- src/bindings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings b/src/bindings index caaa090412..51a3d3d116 160000 --- a/src/bindings +++ b/src/bindings @@ -1 +1 @@ -Subproject commit caaa090412fb5f7d347ba09c16fb26ebec87d5cd +Subproject commit 51a3d3d1161936231d24bcaa298d7a156c3a8532 From 87226c1fcd74f855e660b96e4b5f358212b4b2d7 Mon Sep 17 00:00:00 2001 From: Gregor Date: Tue, 27 Jun 2023 15:44:15 +0200 Subject: [PATCH 2/5] move nullifier changelog to the correct place --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c099a5d3a7..83e1f7d7b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - `Group` operations now generate a different set of constraints. This breaks deployed contracts, because the circuit changed. https://github.com/o1-labs/snarkyjs/pull/967 +### Added + +- Implemented `Nullifier` as a new primitive https://github.com/o1-labs/snarkyjs/pull/882 + - mina-signer can now be used to generate a Nullifier, which can be consumed by zkApps using the newly added Nullifier Struct + ### Changed - Improve error message `Can't evaluate prover code outside an as_prover block` https://github.com/o1-labs/snarkyjs/pull/998 @@ -40,8 +45,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - More efficient than `field.equals(x).assertFalse()` - Add `scalar.toConstant()`, `scalar.toBigInt()`, `Scalar.from()`, `privateKey.toBigInt()`, `PrivateKey.fromBigInt()` https://github.com/o1-labs/snarkyjs/pull/935 - `Poseidon.hashToGroup` enables hashing to a group https://github.com/o1-labs/snarkyjs/pull/887 -- Implemented `Nullifier` as a new primitive https://github.com/o1-labs/snarkyjs/pull/882 - - mina-signer can now be used to generate a Nullifier, which can be consumed by zkApps using the newly added Nullifier Struct ### Changed From 828bd498b3c51f48237477308edeababa0ab66d0 Mon Sep 17 00:00:00 2001 From: Gregor Date: Tue, 27 Jun 2023 15:45:17 +0200 Subject: [PATCH 3/5] changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83e1f7d7b0..65d6bfad5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Improve error message `Can't evaluate prover code outside an as_prover block` https://github.com/o1-labs/snarkyjs/pull/998 +### Fixed + +- Fix unsupported use of `window` when running SnarkyJS in workers https://github.com/o1-labs/snarkyjs/pull/1002 + ## [0.11.0](https://github.com/o1-labs/snarkyjs/compare/a632313a...3fbd9678e) ### Breaking changes From c549e02faba2f233e8484b1ee0160e2a43bdb0c1 Mon Sep 17 00:00:00 2001 From: Gregor Date: Tue, 27 Jun 2023 15:45:25 +0200 Subject: [PATCH 4/5] 0.11.1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7b238b3123..e59662750e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "snarkyjs", - "version": "0.11.0", + "version": "0.11.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "snarkyjs", - "version": "0.11.0", + "version": "0.11.1", "license": "Apache-2.0", "dependencies": { "blakejs": "1.2.1", diff --git a/package.json b/package.json index c6ada8e394..8ec2bf5c10 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "snarkyjs", "description": "TypeScript framework for zk-SNARKs and zkApps", - "version": "0.11.0", + "version": "0.11.1", "license": "Apache-2.0", "homepage": "https://github.com/o1-labs/snarkyjs/", "keywords": [ From d672bba3c316c6a4c0283341670896909a83b2b9 Mon Sep 17 00:00:00 2001 From: Gregor Date: Tue, 27 Jun 2023 15:46:16 +0200 Subject: [PATCH 5/5] changelog --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65d6bfad5d..479e4e2be4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm _Security_ in case of vulnerabilities. --> -## [Unreleased](https://github.com/o1-labs/snarkyjs/compare/3fbd9678e...HEAD) +## [Unreleased](https://github.com/o1-labs/snarkyjs/compare/c549e02fa...HEAD) + +> No unreleased changes yet + +## [0.11.1](https://github.com/o1-labs/snarkyjs/compare/3fbd9678e...c549e02fa) ### Breaking changes