Skip to content

Tags: 0xsisyfos/noir

Tags

v0.30.0

Toggle v0.30.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: Release Noir(0.30.0) (noir-lang#4981)

🤖 I have created a release *beep* *boop*
---


<details><summary>0.30.0</summary>

## [0.30.0](noir-lang/noir@v0.29.0...v0.30.0)
(2024-05-20)


### ⚠ BREAKING CHANGES

* remove `Opcode::Brillig` from ACIR
(AztecProtocol/aztec-packages#5995)
* AES blackbox
(AztecProtocol/aztec-packages#6016)

### Features

* `multi_scalar_mul` blackbox func
(AztecProtocol/aztec-packages#6097)
([73a635e](noir-lang@73a635e))
* `variable_base_scalar_mul` blackbox func
(AztecProtocol/aztec-packages#6039)
([73a635e](noir-lang@73a635e))
* Add `Not` trait to stdlib
([noir-lang#4999](noir-lang#4999))
([95d4d13](noir-lang@95d4d13))
* Add `std::ops::Neg` trait to stdlib
([07930d4](noir-lang@07930d4))
* Add native rust implementations of pedersen functions
([noir-lang#4871](noir-lang#4871))
([fb039f7](noir-lang@fb039f7))
* Add support for u16/i16
([noir-lang#4985](noir-lang#4985))
([e43661d](noir-lang@e43661d))
* AES blackbox
(AztecProtocol/aztec-packages#6016)
([73a635e](noir-lang@73a635e))
* Do not return databus returndata, keep it private.
([noir-lang#5023](noir-lang#5023))
([a5b7df1](noir-lang@a5b7df1))
* Dynamic assertion payloads v2
(AztecProtocol/aztec-packages#5949)
([73a635e](noir-lang@73a635e))
* Implement `From` array trait for `BoundedVec`
([noir-lang#4927](noir-lang#4927))
([bf491dc](noir-lang@bf491dc))
* Implement `ops` traits on `u16`/`i16`
([noir-lang#4996](noir-lang#4996))
([8b65663](noir-lang@8b65663))
* Implement `std::ops::Sub` on `EmbeddedCurvePoint`
([07930d4](noir-lang@07930d4))
* Increase default expression width to 4
([noir-lang#4995](noir-lang#4995))
([f01d309](noir-lang@f01d309))
* Parsing non-string assertion payloads in noir js
(AztecProtocol/aztec-packages#6079)
([73a635e](noir-lang@73a635e))
* Remove query to backend to get expression width
([noir-lang#4975](noir-lang#4975))
([e5f356b](noir-lang@e5f356b))
* Set aztec private functions to be recursive
(AztecProtocol/aztec-packages#6192)
([73a635e](noir-lang@73a635e))


### Bug Fixes

* Compute the correct slice length when coercing from a literal array of
complex types ([noir-lang#4986](noir-lang#4986))
([f3f1150](noir-lang@f3f1150))
* Defer overflow checks for unsigned integers to acir-gen
([noir-lang#4832](noir-lang#4832))
([b577761](noir-lang@b577761))
* Fix no predicates for brillig with intermediate functions
([noir-lang#5015](noir-lang#5015))
([9c6de4b](noir-lang@9c6de4b))
* Fixed several vulnerabilities in U128, added some tests
([noir-lang#5024](noir-lang#5024))
([e5ab24d](noir-lang@e5ab24d))
* Ignore no_predicates in brillig functions
([noir-lang#5012](noir-lang#5012))
([b541e79](noir-lang@b541e79))
* Set index and value to 0 for array_get with predicate
([noir-lang#4971](noir-lang#4971))
([c49d3a9](noir-lang@c49d3a9))


### Miscellaneous Chores

* Remove `Opcode::Brillig` from ACIR
(AztecProtocol/aztec-packages#5995)
([73a635e](noir-lang@73a635e))
</details>

<details><summary>0.46.0</summary>

## [0.46.0](noir-lang/noir@v0.45.0...v0.46.0)
(2024-05-20)


### ⚠ BREAKING CHANGES

* remove `Opcode::Brillig` from ACIR
(AztecProtocol/aztec-packages#5995)
* AES blackbox
(AztecProtocol/aztec-packages#6016)
* Bit shift is restricted to u8 right operand
([noir-lang#4907](noir-lang#4907))
* contract interfaces and better function calls
(AztecProtocol/aztec-packages#5687)
* change backend width to 4
(AztecProtocol/aztec-packages#5374)
* Use fixed size arrays in black box functions where sizes are known
(AztecProtocol/aztec-packages#5620)
* trap with revert data
(AztecProtocol/aztec-packages#5732)
* **acir:** BrilligCall opcode
(AztecProtocol/aztec-packages#5709)
* remove fixed-length keccak256
(AztecProtocol/aztec-packages#5617)
* storage_layout and `#[aztec(storage)]`
(AztecProtocol/aztec-packages#5387)
* **acir:** Add predicate to call opcode
(AztecProtocol/aztec-packages#5616)
* contract_abi-exports
(AztecProtocol/aztec-packages#5386)
* Brillig typed memory
(AztecProtocol/aztec-packages#5395)
* **acir:** Program and witness stack structure
(AztecProtocol/aztec-packages#5149)
* automatic NoteInterface and NoteGetterOptions auto select
(AztecProtocol/aztec-packages#4508)
* Acir call opcode
(AztecProtocol/aztec-packages#4773)
* Support contracts with no constructor
(AztecProtocol/aztec-packages#5175)
* Internal as a macro
(AztecProtocol/aztec-packages#4898)
* move noir out of yarn-project
(AztecProtocol/aztec-packages#4479)
* note type ids
(AztecProtocol/aztec-packages#4500)
* rename bigint_neg into bigint_sub
(AztecProtocol/aztec-packages#4420)
* Add expression width into acir
(AztecProtocol/aztec-packages#4014)
* init storage macro
(AztecProtocol/aztec-packages#4200)
* **acir:** Move `is_recursive` flag to be part of the circuit
definition (AztecProtocol/aztec-packages#4221)
* Sync commits from `aztec-packages`
([noir-lang#4144](noir-lang#4144))

### Features

* `multi_scalar_mul` blackbox func
(AztecProtocol/aztec-packages#6097)
([73a635e](noir-lang@73a635e))
* `variable_base_scalar_mul` blackbox func
(AztecProtocol/aztec-packages#6039)
([73a635e](noir-lang@73a635e))
* Acir call opcode
(AztecProtocol/aztec-packages#4773)
([c3c9e19](noir-lang@c3c9e19))
* **acir_gen:** Brillig stdlib
([noir-lang#4848](noir-lang#4848))
([0c8175c](noir-lang@0c8175c))
* **acir_gen:** Fold attribute at compile-time and initial non inlined
ACIR (AztecProtocol/aztec-packages#5341)
([a0f7474](noir-lang@a0f7474))
* **acir:** Add predicate to call opcode
(AztecProtocol/aztec-packages#5616)
([2bd006a](noir-lang@2bd006a))
* **acir:** BrilligCall opcode
(AztecProtocol/aztec-packages#5709)
([0f9ae0a](noir-lang@0f9ae0a))
* **acir:** Program and witness stack structure
(AztecProtocol/aztec-packages#5149)
([13eb71b](noir-lang@13eb71b))
* **acvm_js:** Execute program
([noir-lang#4694](noir-lang#4694))
([386f6d0](noir-lang@386f6d0))
* **acvm:** Execute multiple circuits
(AztecProtocol/aztec-packages#5380)
([a0f7474](noir-lang@a0f7474))
* Add bit size to const opcode
(AztecProtocol/aztec-packages#4385)
([158c8ce](noir-lang@158c8ce))
* Add CMOV instruction to brillig and brillig gen
(AztecProtocol/aztec-packages#5308)
([13eb71b](noir-lang@13eb71b))
* Add expression width into acir
(AztecProtocol/aztec-packages#4014)
([158c8ce](noir-lang@158c8ce))
* Add instrumentation for tracking variables in debugging
([noir-lang#4122](noir-lang#4122))
([c58d691](noir-lang@c58d691))
* Add native rust implementations of pedersen functions
([noir-lang#4871](noir-lang#4871))
([fb039f7](noir-lang@fb039f7))
* Add poseidon2 opcode implementation for acvm/brillig, and Noir
([noir-lang#4398](noir-lang#4398))
([10e8292](noir-lang@10e8292))
* Add return values to aztec fns
(AztecProtocol/aztec-packages#5389)
([2bd006a](noir-lang@2bd006a))
* Add support for overriding expression width
([noir-lang#4117](noir-lang#4117))
([c8026d5](noir-lang@c8026d5))
* Added cast opcode and cast calldata
(AztecProtocol/aztec-packages#4423)
([78ef013](noir-lang@78ef013))
* AES blackbox
(AztecProtocol/aztec-packages#6016)
([73a635e](noir-lang@73a635e))
* Allow brillig to read arrays directly from memory
(AztecProtocol/aztec-packages#4460)
([158c8ce](noir-lang@158c8ce))
* Allow nested arrays and vectors in Brillig foreign calls
(AztecProtocol/aztec-packages#4478)
([158c8ce](noir-lang@158c8ce))
* Allow variables and stack trace inspection in the debugger
([noir-lang#4184](noir-lang#4184))
([bf263fc](noir-lang@bf263fc))
* Automatic NoteInterface and NoteGetterOptions auto select
(AztecProtocol/aztec-packages#4508)
([13eb71b](noir-lang@13eb71b))
* **avm:** Back in avm context with macro - refactor context
(AztecProtocol/aztec-packages#4438)
([158c8ce](noir-lang@158c8ce))
* **avm:** Brillig CONST of size &gt; u128
(AztecProtocol/aztec-packages#5217)
([c3c9e19](noir-lang@c3c9e19))
* **avm:** Integrate AVM with initializers
(AztecProtocol/aztec-packages#5469)
([2bd006a](noir-lang@2bd006a))
* **aztec-nr:** Initial work for aztec public vm macro
(AztecProtocol/aztec-packages#4400)
([158c8ce](noir-lang@158c8ce))
* Backpropagate constants in ACIR during optimization
([noir-lang#3926](noir-lang#3926))
([aad0da0](noir-lang@aad0da0))
* Bit shift is restricted to u8 right operand
([noir-lang#4907](noir-lang#4907))
([c4b0369](noir-lang@c4b0369))
* Brillig heterogeneous memory cells
(AztecProtocol/aztec-packages#5608)
([305bcdc](noir-lang@305bcdc))
* Brillig IR refactor
(AztecProtocol/aztec-packages#5233)
([c3c9e19](noir-lang@c3c9e19))
* Brillig pointer codegen and execution
(AztecProtocol/aztec-packages#5737)
([0f9ae0a](noir-lang@0f9ae0a))
* Brillig typed memory
(AztecProtocol/aztec-packages#5395)
([0bc18c4](noir-lang@0bc18c4))
* Change backend width to 4
(AztecProtocol/aztec-packages#5374)
([0f9ae0a](noir-lang@0f9ae0a))
* Check initializer msg.sender matches deployer from address preimage
(AztecProtocol/aztec-packages#5222)
([c3c9e19](noir-lang@c3c9e19))
* Contract interfaces and better function calls
(AztecProtocol/aztec-packages#5687)
([0f9ae0a](noir-lang@0f9ae0a))
* Contract_abi-exports
(AztecProtocol/aztec-packages#5386)
([2bd006a](noir-lang@2bd006a))
* Dynamic assertion payloads v2
(AztecProtocol/aztec-packages#5949)
([73a635e](noir-lang@73a635e))
* Evaluation of dynamic assert messages
([noir-lang#4101](noir-lang#4101))
([c284e01](noir-lang@c284e01))
* Handle `BrilligCall` opcodes in the debugger
([noir-lang#4897](noir-lang#4897))
([b380dc4](noir-lang@b380dc4))
* Impl of missing functionality in new key store
(AztecProtocol/aztec-packages#5750)
([0f9ae0a](noir-lang@0f9ae0a))
* Increase default expression width to 4
([noir-lang#4995](noir-lang#4995))
([f01d309](noir-lang@f01d309))
* Init storage macro
(AztecProtocol/aztec-packages#4200)
([158c8ce](noir-lang@158c8ce))
* Initial Earthly CI
(AztecProtocol/aztec-packages#5069)
([c3c9e19](noir-lang@c3c9e19))
* Internal as a macro
(AztecProtocol/aztec-packages#4898)
([5f57ebb](noir-lang@5f57ebb))
* **nargo:** Handle call stacks for multiple Acir calls
([noir-lang#4711](noir-lang#4711))
([5b23171](noir-lang@5b23171))
* New brillig field operations and refactor of binary operations
(AztecProtocol/aztec-packages#5208)
([c3c9e19](noir-lang@c3c9e19))
* Note type ids
(AztecProtocol/aztec-packages#4500)
([78ef013](noir-lang@78ef013))
* Parsing non-string assertion payloads in noir js
(AztecProtocol/aztec-packages#6079)
([73a635e](noir-lang@73a635e))
* Remove replacement of boolean range opcodes with `AssertZero` opcodes
([noir-lang#4107](noir-lang#4107))
([dac0e87](noir-lang@dac0e87))
* Restore hashing args via slice for performance
(AztecProtocol/aztec-packages#5539)
([2bd006a](noir-lang@2bd006a))
* Set aztec private functions to be recursive
(AztecProtocol/aztec-packages#6192)
([73a635e](noir-lang@73a635e))
* Signed integer division and modulus in brillig gen
(AztecProtocol/aztec-packages#5279)
([c3c9e19](noir-lang@c3c9e19))
* **simulator:** Fetch return values at circuit execution
(AztecProtocol/aztec-packages#5642)
([305bcdc](noir-lang@305bcdc))
* Storage_layout and `#[aztec(storage)]`
(AztecProtocol/aztec-packages#5387)
([2bd006a](noir-lang@2bd006a))
* Support contracts with no constructor
(AztecProtocol/aztec-packages#5175)
([c3c9e19](noir-lang@c3c9e19))
* Sync `aztec-packages`
([noir-lang#4011](noir-lang#4011))
([fee2452](noir-lang@fee2452))
* Sync commits from `aztec-packages`
([noir-lang#4068](noir-lang#4068))
([7a8f3a3](noir-lang@7a8f3a3))
* Sync commits from `aztec-packages`
([noir-lang#4144](noir-lang#4144))
([0205d3b](noir-lang@0205d3b))
* Sync from aztec-packages
([noir-lang#4483](noir-lang#4483))
([fe8f277](noir-lang@fe8f277))
* Sync from noir
(AztecProtocol/aztec-packages#5234)
([c3c9e19](noir-lang@c3c9e19))
* Sync from noir
(AztecProtocol/aztec-packages#5286)
([c3c9e19](noir-lang@c3c9e19))
* Sync from noir
(AztecProtocol/aztec-packages#5572)
([2bd006a](noir-lang@2bd006a))
* Sync from noir
(AztecProtocol/aztec-packages#5619)
([2bd006a](noir-lang@2bd006a))
* Sync from noir
(AztecProtocol/aztec-packages#5697)
([305bcdc](noir-lang@305bcdc))
* Sync from noir
(AztecProtocol/aztec-packages#5794)
([0f9ae0a](noir-lang@0f9ae0a))
* Sync from noir
(AztecProtocol/aztec-packages#5814)
([0f9ae0a](noir-lang@0f9ae0a))
* Sync from noir
(AztecProtocol/aztec-packages#5935)
([1b867b1](noir-lang@1b867b1))
* Sync from noir
(AztecProtocol/aztec-packages#5955)
([1b867b1](noir-lang@1b867b1))
* Sync from noir
(AztecProtocol/aztec-packages#5999)
([1b867b1](noir-lang@1b867b1))
* Trap with revert data
(AztecProtocol/aztec-packages#5732)
([0f9ae0a](noir-lang@0f9ae0a))
* Use fixed size arrays in black box functions where sizes are known
(AztecProtocol/aztec-packages#5620)
([0f9ae0a](noir-lang@0f9ae0a))
* Variable length returns
(AztecProtocol/aztec-packages#5633)
([305bcdc](noir-lang@305bcdc))


### Bug Fixes

* **acvm:** Mark outputs of Opcode::Call solvable
([noir-lang#4708](noir-lang#4708))
([8fea405](noir-lang@8fea405))
* Avoid huge unrolling in hash_args
(AztecProtocol/aztec-packages#5703)
([305bcdc](noir-lang@305bcdc))
* Catch panics from EC point creation (e.g. the point is at infinity)
([noir-lang#4790](noir-lang#4790))
([645dba1](noir-lang@645dba1))
* Don't reuse brillig with slice arguments
(AztecProtocol/aztec-packages#5800)
([0f9ae0a](noir-lang@0f9ae0a))
* Issue 4682 and add solver for unconstrained bigintegers
([noir-lang#4729](noir-lang#4729))
([e4d33c1](noir-lang@e4d33c1))
* Noir test incorrect reporting
(AztecProtocol/aztec-packages#4925)
([5f57ebb](noir-lang@5f57ebb))
* Proper field inversion for bigints
([noir-lang#4802](noir-lang#4802))
([b46d0e3](noir-lang@b46d0e3))
* Remove panic from `init_log_level` in `acvm_js`
([noir-lang#4195](noir-lang#4195))
([2e26530](noir-lang@2e26530))


### Miscellaneous Chores

* **acir:** Move `is_recursive` flag to be part of the circuit
definition (AztecProtocol/aztec-packages#4221)
([158c8ce](noir-lang@158c8ce))
* Move noir out of yarn-project
(AztecProtocol/aztec-packages#4479)
([78ef013](noir-lang@78ef013))
* Remove `Opcode::Brillig` from ACIR
(AztecProtocol/aztec-packages#5995)
([73a635e](noir-lang@73a635e))
* Remove fixed-length keccak256
(AztecProtocol/aztec-packages#5617)
([305bcdc](noir-lang@305bcdc))
* Rename bigint_neg into bigint_sub
(AztecProtocol/aztec-packages#4420)
([158c8ce](noir-lang@158c8ce))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

nightly-2024-05-22

Toggle nightly-2024-05-22's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(stdlib)!: eddsa function using turbofish (noir-lang#5050)

# Description

## Problem\*

Resolves noir-lang#4514 

## Summary\*

This updates `eddsa_verify_with_hasher` to have the following signature
now that we support the turbofish operator:
```rust
pub fn eddsa_verify_with_hasher<H>(
    pub_key_x: Field,
    pub_key_y: Field,
    signature_s: Field,
    signature_r8_x: Field,
    signature_r8_y: Field,
    message: Field
) -> bool 
where H: Hasher + Default {
  [function body ...]
}
``` 
This re-work was only possible with further bug fixes from
noir-lang#5049 and
noir-lang#5041. The original turbofish PR
can be found here (noir-lang#3542).

## Additional Context

This PR can most likely be merged into its parent noir-lang#5049 but I just made
this separate PR to separate the bug fix and the stdlib library breaking
change.

## Documentation\*

Check one:
- [ ] No documentation needed.
- [x] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

---------

Co-authored-by: Jake Fecher <jake@aztecprotocol.com>
Co-authored-by: Jake Fecher <jfecher11@gmail.com>
Co-authored-by: Tom French <tom@tomfren.ch>

nightly-2024-05-21

Toggle nightly-2024-05-21's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add native rust implementations of pedersen functions (noir-lan…

…g#4871)

# Description

## Problem\*

Resolves noir-lang#4863 

## Summary\*

This PR pulls in the relevant code from
[Barustenberg](https://github.com/laudiacay/barustenberg) for performing
pedersen commitments + hashes. Tests are currently failing (seems like
Barustenberg is failing its own CI) however it's a good starting point
for a working implementation.

In order for this PR to be merged we should have tests in barretenberg
which shows expected outputs for all of these added functions and this
code should replicate those.

Benchmarks relative to noir-lang#5056 
```
pedersen_commitment     time:   [3.5018 µs 3.5059 µs 3.5102 µs]
                        change: [-99.357% -99.356% -99.354%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 1 outliers among 40 measurements (2.50%)
  1 (2.50%) low mild

pedersen_hash           time:   [6.9828 µs 6.9920 µs 7.0021 µs]
                        change: [-99.181% -99.180% -99.178%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 40 measurements (5.00%)
  2 (5.00%) high mild
```

## Additional Context



## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-20

Toggle nightly-2024-05-20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: add benchmarks for pedersen and schnorr verification (noir-lan…

…g#5056)

# Description

## Problem\*

Resolves <!-- Link to GitHub Issue -->

## Summary\*

This PR adds benchmarks for pedersen commitments/hashes as well as
schnorr signature verification.

```
pedersen_commitment     time:   [542.17 µs 543.27 µs 544.40 µs]

pedersen_hash           time:   [850.69 µs 852.11 µs 853.68 µs]

schnorr_verify          time:   [1.5978 ms 1.5997 ms 1.6018 ms]
```

## Additional Context



## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-19

Toggle nightly-2024-05-19's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: do not return databus returndata, keep it private. (noir-lang#5023

)

# Description

## Problem\*

Related to  noir-lang#4974

## Summary\*
Very small PR which avoids returning databus objects, because they need
to be handled as private inputs.
This is incremental work, so it cannot be tested yet. The PR only impact
databus use case.



## Additional Context



## Documentation\*

Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [ ] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-18

Toggle nightly-2024-05-18's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: do not return databus returndata, keep it private. (noir-lang#5023

)

# Description

## Problem\*

Related to  noir-lang#4974

## Summary\*
Very small PR which avoids returning databus objects, because they need
to be handled as private inputs.
This is incremental work, so it cannot be tested yet. The PR only impact
databus use case.



## Additional Context



## Documentation\*

Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [ ] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-17

Toggle nightly-2024-05-17's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: do not return databus returndata, keep it private. (noir-lang#5023

)

# Description

## Problem\*

Related to  noir-lang#4974

## Summary\*
Very small PR which avoids returning databus objects, because they need
to be handled as private inputs.
This is incremental work, so it cannot be tested yet. The PR only impact
databus use case.



## Additional Context



## Documentation\*

Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [ ] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-16

Toggle nightly-2024-05-16's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: do not return databus returndata, keep it private. (noir-lang#5023

)

# Description

## Problem\*

Related to  noir-lang#4974

## Summary\*
Very small PR which avoids returning databus objects, because they need
to be handled as private inputs.
This is incremental work, so it cannot be tested yet. The PR only impact
databus use case.



## Additional Context



## Documentation\*

Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [ ] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-15

Toggle nightly-2024-05-15's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: do not return databus returndata, keep it private. (noir-lang#5023

)

# Description

## Problem\*

Related to  noir-lang#4974

## Summary\*
Very small PR which avoids returning databus objects, because they need
to be handled as private inputs.
This is incremental work, so it cannot be tested yet. The PR only impact
databus use case.



## Additional Context



## Documentation\*

Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [ ] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.

nightly-2024-05-14

Toggle nightly-2024-05-14's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Fix no predicates for brillig with intermediate functions (noir-…

…lang#5015)

# Description

## Problem\*

Fixes noir-lang#5012 using the entry point
instead of the source function, to consider intermediate functions.

## Summary\*



## Additional Context



## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.