Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(acir_gen): Width aware ACIR gen addition #5493

Merged
merged 34 commits into from
Jul 24, 2024
Merged

Conversation

vezenovm
Copy link
Contributor

@vezenovm vezenovm commented Jul 11, 2024

Description

Problem*

Resolves #4629

Summary*

This PR updates how we add vars in ACIR gen to account for an expression width. This is under a compile time flag --bounded-codegen.

If the sum of two expressions is going to go over the specified expression width we automatically create witnesses for either the lhs, the rhs, or both, before then generating a sum expression.

This new bounded codegen could provide an easy way for developers to tell whether their program can be optimized using as_witness. Reference the additional context section below for some numbers.

Additional Context

There are some limitations in this approach as it is pretty naive in how it decides to when to generate a new witness. It doesn't look ahead at all other than for whether the two AcirVar's being added are going to create an expression over the specified ACIR width.

For example we can see the following gate counts for poseidonsponge_x5_254:

No width awareness:
+-----------------------+----------+----------------------+--------------+
| Package               | Function | Expression Width     | ACIR Opcodes |
+-----------------------+----------+----------------------+--------------+
| poseidonsponge_x5_254 | main     | Bounded { width: 4 } | 3096         |
+-----------------------+----------+----------------------+--------------+

No width awareness w/ as_witness (this is the currently optimized poseidon we have in the stdlib):
+-----------------------+----------+----------------------+--------------+
| Package               | Function | Expression Width     | ACIR Opcodes |
+-----------------------+----------+----------------------+--------------+
| poseidonsponge_x5_254 | main     | Bounded { width: 4 } | 1302         |
+-----------------------+----------+----------------------+--------------+

Width awareness:
+-----------------------+----------+----------------------+--------------+
| Package               | Function | Expression Width     | ACIR Opcodes |
+-----------------------+----------+----------------------+--------------+
| poseidonsponge_x5_254 | main     | Bounded { width: 4 } | 2114         |
+-----------------------+----------+----------------------+--------------+

Width awareness w/ as_witness:
+-----------------------+----------+----------------------+--------------+
| Package               | Function | Expression Width     | ACIR Opcodes |
+-----------------------+----------+----------------------+--------------+
| poseidonsponge_x5_254 | main     | Bounded { width: 4 } | 1792         |
+-----------------------+----------+----------------------+--------------+

From the above we can see that we actually have a degradation when using the addition strategy used in this PR with a hand optimized program using as_witness. Although this PR still gives an improvement in the default.

Another example is the following program:

fn main(x: Field, y: pub Field) {
    let state = [x, y];
    let state = oh_no_not_again(state);

    // This assert will fail if we execute
    assert(state[0] + state[1] == 0);
}

fn oh_no_not_again(mut state: [Field; 2]) -> [Field; 2] {
    for _ in 0..200 {
        state[0] = state[0] * state[0] + state[1];
        state[1] += state[0];
    }
    state
}

Without any width awareness we get 1150 ACIR gates. With this PR we will get 399 gates. If we substitute oh_no_not_again for the following:

fn oh_no_not_again_as_witness(mut state: [Field; 2]) -> [Field; 2] {
    for i in 0..200 {
        state[0] = state[0] * state[0] + state[1];
        std::as_witness(state[0]);
        state[1] += state[0];
        if (i & 1 == 1) {
            std::as_witness(state[1]);
        }
    }
    state
}

We will get 301 gates if the method above is called instead of oh_no_not_again.

Documentation*

Check one:

  • 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.
  • I have formatted the changes with Prettier and/or cargo fmt on default settings.

@vezenovm vezenovm changed the title feat: Width aware ACIR gen feat(acir_gen): Width aware ACIR gen Jul 11, 2024
@vezenovm vezenovm changed the title feat(acir_gen): Width aware ACIR gen feat(acir_gen): Width aware ACIR gen addition Jul 12, 2024
@vezenovm vezenovm marked this pull request as ready for review July 12, 2024 14:10
@vezenovm vezenovm requested review from TomAFrench and guipublic July 12, 2024 14:51
@vezenovm
Copy link
Contributor Author

vezenovm commented Jul 12, 2024

bench_poseidon_hash 447 (+40) +9.83% 453 (+40) +9.69%

Here are some extra numbers to give the full perspective.

Baseline no width awareness gives 1220 ACIR gates.
No width awareness w/ as_witness gives 407 ACIR gates (what we currently have on master).

Width awareness gives 592 gates.
Width awareness w/ as_witness gives 440 ACIR gates.

With the new updates:
Width awareness gives 577 gates
Width awareness w/ as_witness gives 435 ACIR gates.

@vezenovm vezenovm requested a review from a team July 12, 2024 16:34
Copy link
Member

@TomAFrench TomAFrench left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Generally looks good. Will review again after responses to comments

compiler/noirc_driver/src/lib.rs Outdated Show resolved Hide resolved
compiler/noirc_driver/src/lib.rs Outdated Show resolved Hide resolved
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 25, 2024
noir-lang/noir#5596)

feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 25, 2024
…/noir#5596)

feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 26, 2024
…#5603)

fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 26, 2024
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 27, 2024
…comptime code (noir-lang/noir#5609)

chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 27, 2024
noir-lang/noir#5609)

chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 28, 2024
…comptime code (noir-lang/noir#5609)

chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 29, 2024
…comptime code (noir-lang/noir#5609)

chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 30, 2024
noir-lang/noir#5622)

chore: Switch `Value::TraitConstraint` to a resolved trait constraint (noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias (noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints (noir-lang/noir#5620)
feat: turbofish in struct pattern (noir-lang/noir#5616)
fix: correct span for prefix operator (noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only (noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code (noir-lang/noir#5609)
chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Jul 31, 2024
…dir if possible (noir-lang/noir#5642)

feat: LSP inlay type hints on lambda parameters (noir-lang/noir#5639)
feat: Sync from aztec-packages (noir-lang/noir#5598)
fix!: parse block and if statements independently of expressions in statements (noir-lang/noir#5634)
chore: test blackbox binary op instructions (noir-lang/noir#5484)
chore(docs): add Writing Noir doc (noir-lang/noir#5456)
chore(github): Switch to organization-wide Issue templates (noir-lang/noir#5622)
chore: Switch `Value::TraitConstraint` to a resolved trait constraint (noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias (noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints (noir-lang/noir#5620)
feat: turbofish in struct pattern (noir-lang/noir#5616)
fix: correct span for prefix operator (noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only (noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code (noir-lang/noir#5609)
chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Aug 1, 2024
…noir#5635)

fix: error on unbound generics in structs (noir-lang/noir#5619)
fix: allow using Self for function calls (noir-lang/noir#5629)
feat: let filenames in errors be relative to the current dir if possible (noir-lang/noir#5642)
feat: LSP inlay type hints on lambda parameters (noir-lang/noir#5639)
feat: Sync from aztec-packages (noir-lang/noir#5598)
fix!: parse block and if statements independently of expressions in statements (noir-lang/noir#5634)
chore: test blackbox binary op instructions (noir-lang/noir#5484)
chore(docs): add Writing Noir doc (noir-lang/noir#5456)
chore(github): Switch to organization-wide Issue templates (noir-lang/noir#5622)
chore: Switch `Value::TraitConstraint` to a resolved trait constraint (noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias (noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints (noir-lang/noir#5620)
feat: turbofish in struct pattern (noir-lang/noir#5616)
fix: correct span for prefix operator (noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only (noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code (noir-lang/noir#5609)
chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Aug 2, 2024
…ir-lang/noir#5665)

chore(docs): Update web app page to use nargo v 0.31 (noir-lang/noir#5652)
feat: add `std::meta::type_of` and `impl Eq for Type` (noir-lang/noir#5669)
fix: speed up LSP (noir-lang/noir#5650)
feat: don't eagerly error on cast expressions (noir-lang/noir#5635)
fix: error on unbound generics in structs (noir-lang/noir#5619)
fix: allow using Self for function calls (noir-lang/noir#5629)
feat: let filenames in errors be relative to the current dir if possible (noir-lang/noir#5642)
feat: LSP inlay type hints on lambda parameters (noir-lang/noir#5639)
feat: Sync from aztec-packages (noir-lang/noir#5598)
fix!: parse block and if statements independently of expressions in statements (noir-lang/noir#5634)
chore: test blackbox binary op instructions (noir-lang/noir#5484)
chore(docs): add Writing Noir doc (noir-lang/noir#5456)
chore(github): Switch to organization-wide Issue templates (noir-lang/noir#5622)
chore: Switch `Value::TraitConstraint` to a resolved trait constraint (noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias (noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints (noir-lang/noir#5620)
feat: turbofish in struct pattern (noir-lang/noir#5616)
fix: correct span for prefix operator (noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only (noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code (noir-lang/noir#5609)
chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Aug 2, 2024
…ir-lang/noir#5665)

chore(docs): Update web app page to use nargo v 0.31 (noir-lang/noir#5652)
feat: add `std::meta::type_of` and `impl Eq for Type` (noir-lang/noir#5669)
fix: speed up LSP (noir-lang/noir#5650)
feat: don't eagerly error on cast expressions (noir-lang/noir#5635)
fix: error on unbound generics in structs (noir-lang/noir#5619)
fix: allow using Self for function calls (noir-lang/noir#5629)
feat: let filenames in errors be relative to the current dir if possible (noir-lang/noir#5642)
feat: LSP inlay type hints on lambda parameters (noir-lang/noir#5639)
feat: Sync from aztec-packages (noir-lang/noir#5598)
fix!: parse block and if statements independently of expressions in statements (noir-lang/noir#5634)
chore: test blackbox binary op instructions (noir-lang/noir#5484)
chore(docs): add Writing Noir doc (noir-lang/noir#5456)
chore(github): Switch to organization-wide Issue templates (noir-lang/noir#5622)
chore: Switch `Value::TraitConstraint` to a resolved trait constraint (noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias (noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints (noir-lang/noir#5620)
feat: turbofish in struct pattern (noir-lang/noir#5616)
fix: correct span for prefix operator (noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only (noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code (noir-lang/noir#5609)
chore(docs): Update proving backend related docs (noir-lang/noir#5601)
feat: turbofish operator in struct constructor (noir-lang/noir#5607)
feat: add parameter to call_data attribute (noir-lang/noir#5599)
feat: turbofish operator on path segments (noir-lang/noir#5603)
fix: Filter comptime globals (noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug (noir-lang/noir#5605)
chore: add array and slice control flow tests (noir-lang/noir#5558)
fix: let trait calls work in globals (noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter (noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter (noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition (noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types (noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses (noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices (noir-lang/noir#5592)
fix: error on duplicate struct field (noir-lang/noir#5585)
sirasistant added a commit to AztecProtocol/aztec-packages that referenced this pull request Aug 2, 2024
Automated pull of development from the
[noir](https://github.com/noir-lang/noir) programming language, a
dependency of Aztec.
BEGIN_COMMIT_OVERRIDE
feat: let LSP work will with code generated by macros
(noir-lang/noir#5665)
chore(docs): Update web app page to use nargo v 0.31
(noir-lang/noir#5652)
feat: add `std::meta::type_of` and `impl Eq for Type`
(noir-lang/noir#5669)
fix: speed up LSP (noir-lang/noir#5650)
feat: don't eagerly error on cast expressions
(noir-lang/noir#5635)
fix: error on unbound generics in structs
(noir-lang/noir#5619)
fix: allow using Self for function calls
(noir-lang/noir#5629)
feat: let filenames in errors be relative to the current dir if possible
(noir-lang/noir#5642)
feat: LSP inlay type hints on lambda parameters
(noir-lang/noir#5639)
feat: Sync from aztec-packages
(noir-lang/noir#5598)
fix!: parse block and if statements independently of expressions in
statements (noir-lang/noir#5634)
chore: test blackbox binary op instructions
(noir-lang/noir#5484)
chore(docs): add Writing Noir doc
(noir-lang/noir#5456)
chore(github): Switch to organization-wide Issue templates
(noir-lang/noir#5622)
chore: Switch `Value::TraitConstraint` to a resolved trait constraint
(noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias
(noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints
(noir-lang/noir#5620)
feat: turbofish in struct pattern
(noir-lang/noir#5616)
fix: correct span for prefix operator
(noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only
(noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code
(noir-lang/noir#5609)
chore(docs): Update proving backend related docs
(noir-lang/noir#5601)
feat: turbofish operator in struct constructor
(noir-lang/noir#5607)
feat: add parameter to call_data attribute
(noir-lang/noir#5599)
feat: turbofish operator on path segments
(noir-lang/noir#5603)
fix: Filter comptime globals
(noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug
(noir-lang/noir#5605)
chore: add array and slice control flow tests
(noir-lang/noir#5558)
fix: let trait calls work in globals
(noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter
(noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter
(noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition
(noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types
(noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses
(noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices
(noir-lang/noir#5592)
fix: error on duplicate struct field
(noir-lang/noir#5585)
END_COMMIT_OVERRIDE

---------

Co-authored-by: sirasistant <[email protected]>
AztecBot added a commit to AztecProtocol/aztec-nr that referenced this pull request Aug 3, 2024
Automated pull of development from the
[noir](https://github.com/noir-lang/noir) programming language, a
dependency of Aztec.
BEGIN_COMMIT_OVERRIDE
feat: let LSP work will with code generated by macros
(noir-lang/noir#5665)
chore(docs): Update web app page to use nargo v 0.31
(noir-lang/noir#5652)
feat: add `std::meta::type_of` and `impl Eq for Type`
(noir-lang/noir#5669)
fix: speed up LSP (noir-lang/noir#5650)
feat: don't eagerly error on cast expressions
(noir-lang/noir#5635)
fix: error on unbound generics in structs
(noir-lang/noir#5619)
fix: allow using Self for function calls
(noir-lang/noir#5629)
feat: let filenames in errors be relative to the current dir if possible
(noir-lang/noir#5642)
feat: LSP inlay type hints on lambda parameters
(noir-lang/noir#5639)
feat: Sync from aztec-packages
(noir-lang/noir#5598)
fix!: parse block and if statements independently of expressions in
statements (noir-lang/noir#5634)
chore: test blackbox binary op instructions
(noir-lang/noir#5484)
chore(docs): add Writing Noir doc
(noir-lang/noir#5456)
chore(github): Switch to organization-wide Issue templates
(noir-lang/noir#5622)
chore: Switch `Value::TraitConstraint` to a resolved trait constraint
(noir-lang/noir#5618)
fix: error on incorrect generic count for impl and type alias
(noir-lang/noir#5623)
feat: allow inserting LSP inlay type hints
(noir-lang/noir#5620)
feat: turbofish in struct pattern
(noir-lang/noir#5616)
fix: correct span for prefix operator
(noir-lang/noir#5624)
fix: `NoMatchingImplFound` in comptime code only
(noir-lang/noir#5617)
feat: Remove 'comptime or separate crate' restriction on comptime code
(noir-lang/noir#5609)
chore(docs): Update proving backend related docs
(noir-lang/noir#5601)
feat: turbofish operator in struct constructor
(noir-lang/noir#5607)
feat: add parameter to call_data attribute
(noir-lang/noir#5599)
feat: turbofish operator on path segments
(noir-lang/noir#5603)
fix: Filter comptime globals
(noir-lang/noir#5538)
chore: Display comptime assertion errors, not Debug
(noir-lang/noir#5605)
chore: add array and slice control flow tests
(noir-lang/noir#5558)
fix: let trait calls work in globals
(noir-lang/noir#5602)
feat: Implement format strings in the comptime interpreter
(noir-lang/noir#5596)
feat: Implement `Value::Type` in comptime interpreter
(noir-lang/noir#5593)
chore(docs): nasty linky (noir-lang/noir#5600)
feat(acir_gen): Width aware ACIR gen addition
(noir-lang/noir#5493)
fix: lookup trait constraints methods in composite types
(noir-lang/noir#5595)
fix: allow trailing comma when parsing where clauses
(noir-lang/noir#5594)
fix: let std::unsafe::zeroed() work for slices
(noir-lang/noir#5592)
fix: error on duplicate struct field
(noir-lang/noir#5585)
END_COMMIT_OVERRIDE

---------

Co-authored-by: sirasistant <[email protected]>
github-merge-queue bot pushed a commit that referenced this pull request Aug 6, 2024
🤖 I have created a release *beep* *boop*
---


<details><summary>0.33.0</summary>

## [0.33.0](v0.32.0...v0.33.0)
(2024-08-06)


### ⚠ BREAKING CHANGES

* parse block and if statements independently of expressions in
statements ([#5634](#5634))
* **frontend:** Restrict numeric generic types to unsigned ints up to
`u32` ([#5581](#5581))

### Features

* **acir_gen:** Width aware ACIR gen addition
([#5493](#5493))
([85fa592](85fa592))
* Add `FunctionDefinition::parameters`,
`FunctionDefinition::return_type` and `impl Eq for Quoted`
([#5681](#5681))
([d52fc05](d52fc05))
* Add `std::meta::type_of` and `impl Eq for Type`
([#5669](#5669))
([0503956](0503956))
* Add `TraitDefinition::as_trait_constraint()`
([#5541](#5541))
([0943223](0943223))
* Add `Type::as_struct`
([#5680](#5680))
([ade69a9](ade69a9))
* Add `Type::is_field` and `Type::as_integer`
([#5670](#5670))
([939357a](939357a))
* Add `Type` methods: `as_tuple`, `as_slice`, `as_array`, `as_constant`,
`is_bool` ([#5678](#5678))
([604fa0d](604fa0d))
* Add a compile-time hash map type
([#5543](#5543))
([c6e5c4b](c6e5c4b))
* Add a limited form of arithmetic on generics
([#5625](#5625))
([0afb680](0afb680))
* Add parameter to call_data attribute
([#5599](#5599))
([e8bb341](e8bb341))
* Allow inserting LSP inlay type hints
([#5620](#5620))
([b33495d](b33495d))
* Avoid heap allocs when going to/from field
(AztecProtocol/aztec-packages#7547)
([daad75c](daad75c))
* Derive `Ord` and `Hash` in the stdlib; add `std::meta::make_impl`
helper ([#5683](#5683))
([38397d3](38397d3))
* Don't eagerly error on cast expressions
([#5635](#5635))
([0ca5d9d](0ca5d9d))
* Implement `poseidon2_permutation` in comptime interpreter
([#5590](#5590))
([89dfbbf](89dfbbf))
* Implement `Value::Type` in comptime interpreter
([#5593](#5593))
([4c3bf97](4c3bf97))
* Implement `zeroed` in the interpreter
([#5540](#5540))
([ff8ca91](ff8ca91))
* Implement closures in the comptime interpreter
([#5682](#5682))
([9e2a323](9e2a323))
* Implement format strings in the comptime interpreter
([#5596](#5596))
([fd7002c](fd7002c))
* Integrate new proving systems in e2e
(AztecProtocol/aztec-packages#6971)
([daad75c](daad75c))
* Let filenames in errors be relative to the current dir if possible
([#5642](#5642))
([f656681](f656681))
* Let LSP work will with code generated by macros
([#5665](#5665))
([8122624](8122624))
* LSP closing brace hints
([#5686](#5686))
([2b18151](2b18151))
* LSP hover now includes "Go to" links
([#5677](#5677))
([d466d49](d466d49))
* LSP inlay parameter hints
([#5553](#5553))
([822fe2c](822fe2c))
* LSP inlay type hints on lambda parameters
([#5639](#5639))
([80128ff](80128ff))
* Make Brillig do integer arithmetic operations using u128 instead of
Bigint (AztecProtocol/aztec-packages#7518)
([daad75c](daad75c))
* **noir_js:** Expose UltraHonk and integration tests
([#5656](#5656))
([4552b4f](4552b4f))
* Remove 'comptime or separate crate' restriction on comptime code
([#5609](#5609))
([1cddf42](1cddf42))
* Resolve arguments to attributes
([#5649](#5649))
([e139002](e139002))
* **ssa:** Simple serialization of unoptimized SSA to file
([#5679](#5679))
([07ea107](07ea107))
* Sync from noir
(AztecProtocol/aztec-packages#7432)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7444)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7454)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7512)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7577)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7583)
([daad75c](daad75c))
* Turbofish in struct pattern
([#5616](#5616))
([b3c408b](b3c408b))
* Turbofish operator in struct constructor
([#5607](#5607))
([106abd7](106abd7))
* Turbofish operator on path segments
([#5603](#5603))
([0bb8372](0bb8372))
* Typing return values of embedded_curve_ops
(AztecProtocol/aztec-packages#7413)
([daad75c](daad75c))


### Bug Fixes

* 'cannot eval non-comptime global' error
([#5586](#5586))
([0a987c7](0a987c7))
* `NoMatchingImplFound` in comptime code only
([#5617](#5617))
([28211a3](28211a3))
* Add trailing extra arguments for backend in gates_flamegraph
(AztecProtocol/aztec-packages#7472)
([daad75c](daad75c))
* Allow calling a trait method with paths that don't consist of exactly
two segments ([#5577](#5577))
([88c0a40](88c0a40))
* Allow trailing comma when parsing where clauses
([#5594](#5594))
([75bfe13](75bfe13))
* Allow using Self for function calls
([#5629](#5629))
([b7e4f42](b7e4f42))
* Correct span for prefix operator
([#5624](#5624))
([5824785](5824785))
* Correctly track sources for open LSP documents
([#5561](#5561))
([9e61e97](9e61e97))
* Derive generic types
([#5674](#5674))
([19e58a9](19e58a9))
* Don't panic when a macro fails to resolve
([#5537](#5537))
([6109ddc](6109ddc))
* Elaborate struct & trait annotations in the correct module
([#5643](#5643))
([d0a957b](d0a957b))
* Error on duplicate struct field
([#5585](#5585))
([3aed671](3aed671))
* Error on incorrect generic count for impl and type alias
([#5623](#5623))
([1f5d000](1f5d000))
* Error on trait impl generics count mismatch
([#5582](#5582))
([da3d607](da3d607))
* Error on unbound generics in structs
([#5619](#5619))
([efef6b4](efef6b4))
* Filter comptime globals
([#5538](#5538))
([2adc6ac](2adc6ac))
* Fix `uhashmap` test name
([#5563](#5563))
([d5de83f](d5de83f))
* Fix occurs check
([#5535](#5535))
([51dd529](51dd529))
* Fix where clause issue in items generated from attributes
([#5673](#5673))
([9a8cfc9](9a8cfc9))
* **frontend:** Disallow signed numeric generics
([#5572](#5572))
([2b4853e](2b4853e))
* **frontend:** Error for when impl is stricter than trait
([#5343](#5343))
([ece033f](ece033f))
* **frontend:** Restrict numeric generic types to unsigned ints up to
`u32` ([#5581](#5581))
([b85e764](b85e764))
* Let a trait impl that relies on another trait work
([#5646](#5646))
([e00c370](e00c370))
* Let std::unsafe::zeroed() work for slices
([#5592](#5592))
([7daee20](7daee20))
* Let trait calls work in globals
([#5602](#5602))
([c02a6f6](c02a6f6))
* Let unary traits work at comptime
([#5507](#5507))
([aa62d8a](aa62d8a))
* Lookup trait constraints methods in composite types
([#5595](#5595))
([cec6390](cec6390))
* Parse block and if statements independently of expressions in
statements ([#5634](#5634))
([9341113](9341113))
* Revert "feat: Sync from noir
(AztecProtocol/aztec-packages#7512)"
(AztecProtocol/aztec-packages#7558)
([daad75c](daad75c))
* Run macros within comptime contexts
([#5576](#5576))
([df44919](df44919))
* Speed up LSP ([#5650](#5650))
([e5f1b36](e5f1b36))
* **ssa:** More robust array deduplication check
([#5547](#5547))
([dd89b90](dd89b90))
* Switch verify proof to arrays
([#5664](#5664))
([c1ed9fb](c1ed9fb))
* Type_of for pointer types
([#5536](#5536))
([edb3810](edb3810))
* Workaround from_slice with nested slices
([#5648](#5648))
([6310a55](6310a55))
</details>

<details><summary>0.49.0</summary>

## [0.49.0](v0.48.0...v0.49.0)
(2024-08-06)


### ⚠ BREAKING CHANGES

* constant inputs for blackbox
(AztecProtocol/aztec-packages#7222)
* add session id to foreign call RPC requests
([#5205](#5205))
* restrict noir word size to u32
([#5180](#5180))
* switch `bb` over to read ACIR from nargo artifacts
(AztecProtocol/aztec-packages#6283)
* specify databus arrays for BB
(AztecProtocol/aztec-packages#6239)
* remove `Opcode::Brillig` from ACIR
(AztecProtocol/aztec-packages#5995)
* AES blackbox
(AztecProtocol/aztec-packages#6016)
* Bit shift is restricted to u8 right operand
([#4907](#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)

### Features

* `multi_scalar_mul` blackbox func
(AztecProtocol/aztec-packages#6097)
([73a635e](73a635e))
* `variable_base_scalar_mul` blackbox func
(AztecProtocol/aztec-packages#6039)
([73a635e](73a635e))
* **acir_gen:** Brillig stdlib
([#4848](#4848))
([0c8175c](0c8175c))
* **acir_gen:** Fold attribute at compile-time and initial non inlined
ACIR (AztecProtocol/aztec-packages#5341)
([a0f7474](a0f7474))
* **acir_gen:** Width aware ACIR gen addition
([#5493](#5493))
([85fa592](85fa592))
* **acir:** Add predicate to call opcode
(AztecProtocol/aztec-packages#5616)
([2bd006a](2bd006a))
* **acir:** BrilligCall opcode
(AztecProtocol/aztec-packages#5709)
([0f9ae0a](0f9ae0a))
* Activate return_data in ACIR opcodes
([#5080](#5080))
([c9fda3c](c9fda3c))
* **acvm_js:** Execute program
([#4694](#4694))
([386f6d0](386f6d0))
* **acvm:** Execute multiple circuits
(AztecProtocol/aztec-packages#5380)
([a0f7474](a0f7474))
* Add native rust implementation of schnorr signature verification
([#5053](#5053))
([fab1c35](fab1c35))
* Add native rust implementations of pedersen functions
([#4871](#4871))
([fb039f7](fb039f7))
* Add return values to aztec fns
(AztecProtocol/aztec-packages#5389)
([2bd006a](2bd006a))
* Add session id to foreign call RPC requests
([#5205](#5205))
([14adafc](14adafc))
* AES blackbox
(AztecProtocol/aztec-packages#6016)
([73a635e](73a635e))
* **avm:** Integrate AVM with initializers
(AztecProtocol/aztec-packages#5469)
([2bd006a](2bd006a))
* Avoid heap allocs when going to/from field
(AztecProtocol/aztec-packages#7547)
([daad75c](daad75c))
* Bit shift is restricted to u8 right operand
([#4907](#4907))
([c4b0369](c4b0369))
* Brillig heterogeneous memory cells
(AztecProtocol/aztec-packages#5608)
([305bcdc](305bcdc))
* Brillig pointer codegen and execution
(AztecProtocol/aztec-packages#5737)
([0f9ae0a](0f9ae0a))
* Brillig typed memory
(AztecProtocol/aztec-packages#5395)
([0bc18c4](0bc18c4))
* Change backend width to 4
(AztecProtocol/aztec-packages#5374)
([0f9ae0a](0f9ae0a))
* Constant inputs for blackbox
(AztecProtocol/aztec-packages#7222)
([fb97bb9](fb97bb9))
* Contract interfaces and better function calls
(AztecProtocol/aztec-packages#5687)
([0f9ae0a](0f9ae0a))
* Contract_abi-exports
(AztecProtocol/aztec-packages#5386)
([2bd006a](2bd006a))
* Dynamic assertion payloads v2
(AztecProtocol/aztec-packages#5949)
([73a635e](73a635e))
* Handle `BrilligCall` opcodes in the debugger
([#4897](#4897))
([b380dc4](b380dc4))
* Impl of missing functionality in new key store
(AztecProtocol/aztec-packages#5750)
([0f9ae0a](0f9ae0a))
* Increase default expression width to 4
([#4995](#4995))
([f01d309](f01d309))
* Integrate new proving systems in e2e
(AztecProtocol/aztec-packages#6971)
([daad75c](daad75c))
* Make ACVM generic across fields
([#5114](#5114))
([70f374c](70f374c))
* Make Brillig do integer arithmetic operations using u128 instead of
Bigint (AztecProtocol/aztec-packages#7518)
([daad75c](daad75c))
* Move abi demonomorphizer to noir_codegen and use noir_codegen in
protocol types
(AztecProtocol/aztec-packages#6302)
([436bbda](436bbda))
* Move to_radix to a blackbox
(AztecProtocol/aztec-packages#6294)
([436bbda](436bbda))
* **nargo:** Handle call stacks for multiple Acir calls
([#4711](#4711))
([5b23171](5b23171))
* **nargo:** Hidden option to show contract artifact paths written by
`nargo compile`
(AztecProtocol/aztec-packages#6131)
([ff67e14](ff67e14))
* Parsing non-string assertion payloads in noir js
(AztecProtocol/aztec-packages#6079)
([73a635e](73a635e))
* Private Kernel Recursion
(AztecProtocol/aztec-packages#6278)
([436bbda](436bbda))
* Proper padding in ts AES and constrained AES in body and header
computations (AztecProtocol/aztec-packages#6269)
([436bbda](436bbda))
* Remove conditional compilation of `bn254_blackbox_solver`
([#5058](#5058))
([9420d7c](9420d7c))
* Remove external blackbox solver from acir simulator
(AztecProtocol/aztec-packages#6586)
([a40a9a5](a40a9a5))
* Restore hashing args via slice for performance
(AztecProtocol/aztec-packages#5539)
([2bd006a](2bd006a))
* Restrict noir word size to u32
([#5180](#5180))
([bdb2bc6](bdb2bc6))
* Separate runtimes of SSA functions before inlining
([#5121](#5121))
([69eca9b](69eca9b))
* Set aztec private functions to be recursive
(AztecProtocol/aztec-packages#6192)
([73a635e](73a635e))
* **simulator:** Fetch return values at circuit execution
(AztecProtocol/aztec-packages#5642)
([305bcdc](305bcdc))
* Specify databus arrays for BB
(AztecProtocol/aztec-packages#6239)
([436bbda](436bbda))
* Storage_layout and `#[aztec(storage)]`
(AztecProtocol/aztec-packages#5387)
([2bd006a](2bd006a))
* Switch `bb` over to read ACIR from nargo artifacts
(AztecProtocol/aztec-packages#6283)
([436bbda](436bbda))
* Sync from noir
(AztecProtocol/aztec-packages#5572)
([2bd006a](2bd006a))
* Sync from noir
(AztecProtocol/aztec-packages#5619)
([2bd006a](2bd006a))
* Sync from noir
(AztecProtocol/aztec-packages#5697)
([305bcdc](305bcdc))
* Sync from noir
(AztecProtocol/aztec-packages#5794)
([0f9ae0a](0f9ae0a))
* Sync from noir
(AztecProtocol/aztec-packages#5814)
([0f9ae0a](0f9ae0a))
* Sync from noir
(AztecProtocol/aztec-packages#5935)
([1b867b1](1b867b1))
* Sync from noir
(AztecProtocol/aztec-packages#5955)
([1b867b1](1b867b1))
* Sync from noir
(AztecProtocol/aztec-packages#5999)
([1b867b1](1b867b1))
* Sync from noir
(AztecProtocol/aztec-packages#6280)
([436bbda](436bbda))
* Sync from noir
(AztecProtocol/aztec-packages#6332)
([436bbda](436bbda))
* Sync from noir
(AztecProtocol/aztec-packages#6573)
([436bbda](436bbda))
* Sync from noir
(AztecProtocol/aztec-packages#7392)
([fb97bb9](fb97bb9))
* Sync from noir
(AztecProtocol/aztec-packages#7400)
([fb97bb9](fb97bb9))
* Sync from noir
(AztecProtocol/aztec-packages#7432)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7444)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7454)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7512)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7577)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7583)
([daad75c](daad75c))
* ToRadix BB + avm transpiler support
(AztecProtocol/aztec-packages#6330)
([436bbda](436bbda))
* Trap with revert data
(AztecProtocol/aztec-packages#5732)
([0f9ae0a](0f9ae0a))
* Typing return values of embedded_curve_ops
(AztecProtocol/aztec-packages#7413)
([daad75c](daad75c))
* Use fixed size arrays in black box functions where sizes are known
(AztecProtocol/aztec-packages#5620)
([0f9ae0a](0f9ae0a))
* Variable length returns
(AztecProtocol/aztec-packages#5633)
([305bcdc](305bcdc))


### Bug Fixes

* **acvm:** Mark outputs of Opcode::Call solvable
([#4708](#4708))
([8fea405](8fea405))
* Add support for nested arrays returned by oracles
([#5132](#5132))
([f846879](f846879))
* Add trailing extra arguments for backend in gates_flamegraph
(AztecProtocol/aztec-packages#7472)
([daad75c](daad75c))
* Avoid huge unrolling in hash_args
(AztecProtocol/aztec-packages#5703)
([305bcdc](305bcdc))
* Avoid unnecessarily splitting expressions with multiplication terms
with a shared term
([#5291](#5291))
([19884f1](19884f1))
* Catch panics from EC point creation (e.g. the point is at infinity)
([#4790](#4790))
([645dba1](645dba1))
* Check for public args in aztec functions
(AztecProtocol/aztec-packages#6355)
([436bbda](436bbda))
* Don't reuse brillig with slice arguments
(AztecProtocol/aztec-packages#5800)
([0f9ae0a](0f9ae0a))
* Handle struct with nested arrays in oracle return values
([#5244](#5244))
([a30814f](a30814f))
* Issue 4682 and add solver for unconstrained bigintegers
([#4729](#4729))
([e4d33c1](e4d33c1))
* Move BigInt modulus checks to runtime in brillig
([#5374](#5374))
([741d339](741d339))
* Proper field inversion for bigints
([#4802](#4802))
([b46d0e3](b46d0e3))
* Revert "feat: Sync from noir
(AztecProtocol/aztec-packages#7512)"
(AztecProtocol/aztec-packages#7558)
([daad75c](daad75c))
* Runtime brillig bigint id assignment
([#5369](#5369))
([a8928dd](a8928dd))
* Temporarily revert to_radix blackbox
(AztecProtocol/aztec-packages#6304)
([436bbda](436bbda))


### Miscellaneous Chores

* Remove `Opcode::Brillig` from ACIR
(AztecProtocol/aztec-packages#5995)
([73a635e](73a635e))
* Remove fixed-length keccak256
(AztecProtocol/aztec-packages#5617)
([305bcdc](305bcdc))
</details>

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

---------

Co-authored-by: kevaundray <[email protected]>
rahul-kothari pushed a commit to AztecProtocol/aztec-packages that referenced this pull request Aug 12, 2024
:robot: I have created a release *beep* *boop*
---


<details><summary>aztec-package: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-package-v0.47.1...aztec-package-v0.48.0)
(2024-08-12)


### ⚠ BREAKING CHANGES

* rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))

### Features

* Cheat rollup contract into assuming first blocks as proven
([#7892](https://github.com/AztecProtocol/aztec-packages/issues/7892))
([2c5d807](https://github.com/AztecProtocol/aztec-packages/commit/2c5d8071277a48d55c1a933960c16d23e28b9298))
* CLI wallet initial version
([#7651](https://github.com/AztecProtocol/aztec-packages/issues/7651))
([83f8d9c](https://github.com/AztecProtocol/aztec-packages/commit/83f8d9c5e4f53b3691d5a1168c69a160ab657139))
* Merge devnet chagnes to master
([#7822](https://github.com/AztecProtocol/aztec-packages/issues/7822))
([8021eda](https://github.com/AztecProtocol/aztec-packages/commit/8021eda6b5c6e6c518ff38bacdc828fcfab09465))
* Updated bot machine specs
([#7903](https://github.com/AztecProtocol/aztec-packages/issues/7903))
([7f0e57b](https://github.com/AztecProtocol/aztec-packages/commit/7f0e57b71badfb85fc0fd3d4f1e23c4d3456a770))


### Bug Fixes

* Add boolean config helper
([#7884](https://github.com/AztecProtocol/aztec-packages/issues/7884))
([2f11584](https://github.com/AztecProtocol/aztec-packages/commit/2f115849d93a7a2180defc342de6c7fe02f80047))
* Create proving job queue when prover node started with no agents
([#7828](https://github.com/AztecProtocol/aztec-packages/issues/7828))
([e2feaf8](https://github.com/AztecProtocol/aztec-packages/commit/e2feaf8c0613b2b5adfd496a94e1bd58296768f4))
* Default config
([#7848](https://github.com/AztecProtocol/aztec-packages/issues/7848))
([78ae6b4](https://github.com/AztecProtocol/aztec-packages/commit/78ae6b4f50cd0431c5dbd938c0cd791db5e2de4d))
* DEPLOY_AZTEC_CONTRACTS parsing
([#7877](https://github.com/AztecProtocol/aztec-packages/issues/7877))
([e437dba](https://github.com/AztecProtocol/aztec-packages/commit/e437dbaf258adc9f49399ed8ed16bb424b234bf5))
* Load l1 addresses in prover node
([#7858](https://github.com/AztecProtocol/aztec-packages/issues/7858))
([0c3de7e](https://github.com/AztecProtocol/aztec-packages/commit/0c3de7e2b5c9ae6782aa94bffb6b69c6efa42892))
* More fixes for networks
([#7870](https://github.com/AztecProtocol/aztec-packages/issues/7870))
([55c33bd](https://github.com/AztecProtocol/aztec-packages/commit/55c33bd906a26f10a79e13b2542b1281ffbdb99d))


### Miscellaneous

* Add optional artifical delay for test prover
([#7832](https://github.com/AztecProtocol/aztec-packages/issues/7832))
([4d0c027](https://github.com/AztecProtocol/aztec-packages/commit/4d0c027c980e47b9cabc919c81562d5e0ce586ca))
* Handle exceptions in bot runner
([#7679](https://github.com/AztecProtocol/aztec-packages/issues/7679))
([dd6176b](https://github.com/AztecProtocol/aztec-packages/commit/dd6176b444ae1b9f8313af98f7ebd5eeb2f31ed7)),
closes
[#7658](https://github.com/AztecProtocol/aztec-packages/issues/7658)
* Merge back to master
([#7785](https://github.com/AztecProtocol/aztec-packages/issues/7785))
([2ad6e6f](https://github.com/AztecProtocol/aztec-packages/commit/2ad6e6fd60c98cc5888f6f64bcd774d87ff881e8))
* Minor logging tweaks
([#7879](https://github.com/AztecProtocol/aztec-packages/issues/7879))
([00c35c0](https://github.com/AztecProtocol/aztec-packages/commit/00c35c0f7c96c5eebecf66088d2fcd9aa3da7693))
* Native to fee juice
([#7911](https://github.com/AztecProtocol/aztec-packages/issues/7911))
([32b4c6e](https://github.com/AztecProtocol/aztec-packages/commit/32b4c6ed75387759b3d84df723a52679894feb2d))
* Rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))
([24b3e05](https://github.com/AztecProtocol/aztec-packages/commit/24b3e05a9bfca29f7741de49fe12f73cc219953b)),
closes
[#7570](https://github.com/AztecProtocol/aztec-packages/issues/7570)
</details>

<details><summary>barretenberg.js: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg.js-v0.47.1...barretenberg.js-v0.48.0)
(2024-08-12)


### Features

* Ts pedersen commit with offset
([#7699](https://github.com/AztecProtocol/aztec-packages/issues/7699))
([b2224b4](https://github.com/AztecProtocol/aztec-packages/commit/b2224b48190d33af5e78efa3a470503331b0371f))


### Bug Fixes

* Commonly occurring typo
([#7807](https://github.com/AztecProtocol/aztec-packages/issues/7807))
([e3cc7d0](https://github.com/AztecProtocol/aztec-packages/commit/e3cc7d0fa0d842edcd24f1981b687cbdf057ce1a))
</details>

<details><summary>aztec-packages: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-packages-v0.47.1...aztec-packages-v0.48.0)
(2024-08-12)


### ⚠ BREAKING CHANGES

* cli wallet with fee opts + private transfer flow
([#7856](https://github.com/AztecProtocol/aztec-packages/issues/7856))
* rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))
* parse block and if statements independently of expressions in
statements (https://github.com/noir-lang/noir/pull/5634)

### Features

* `PrivateSet::pop_notes(...)`
([#7834](https://github.com/AztecProtocol/aztec-packages/issues/7834))
([4348654](https://github.com/AztecProtocol/aztec-packages/commit/43486543917a249bc8186df6f03de53e03e2f001))
* **acir_gen:** Width aware ACIR gen addition
(https://github.com/noir-lang/noir/pull/5493)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add `onlyOwner` to `Registry::upgrade`
([#7899](https://github.com/AztecProtocol/aztec-packages/issues/7899))
([7dc19db](https://github.com/AztecProtocol/aztec-packages/commit/7dc19db45fb0142f24ff0512c438f7f74aa9538a))
* Add `std::meta::type_of` and `impl Eq for Type`
(https://github.com/noir-lang/noir/pull/5669)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add log of blocks proposed and split pending/proven
([#7635](https://github.com/AztecProtocol/aztec-packages/issues/7635))
([5478747](https://github.com/AztecProtocol/aztec-packages/commit/547874714ecf2693f147921afa8d72a3d2bd5e36))
* Add parameter to call_data attribute
(https://github.com/noir-lang/noir/pull/5599)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add proverId to root rollup public inputs
([#7639](https://github.com/AztecProtocol/aztec-packages/issues/7639))
([0120462](https://github.com/AztecProtocol/aztec-packages/commit/01204628154cf2e41b1f095ec285995f3de22ade)),
closes
[#7670](https://github.com/AztecProtocol/aztec-packages/issues/7670)
* Adding option for retrieving siloed notes in oracles
([#7711](https://github.com/AztecProtocol/aztec-packages/issues/7711))
([07ee990](https://github.com/AztecProtocol/aztec-packages/commit/07ee990d2bd5dbe6a98c1fe022843de676511498))
* Adding support for siloing notes in pxe database
([#7710](https://github.com/AztecProtocol/aztec-packages/issues/7710))
([695f784](https://github.com/AztecProtocol/aztec-packages/commit/695f7847ea4d8779c62a393d68d846aafffea778))
* Allow inserting LSP inlay type hints
(https://github.com/noir-lang/noir/pull/5620)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **avm:** Poseidon2 constraints
([#7269](https://github.com/AztecProtocol/aztec-packages/issues/7269))
([bd5a26e](https://github.com/AztecProtocol/aztec-packages/commit/bd5a26eed42a8e23e2c9ea158419836a2b0b3333))
* **avm:** Support aliases in bb-pilcom
([#7904](https://github.com/AztecProtocol/aztec-packages/issues/7904))
([09e317d](https://github.com/AztecProtocol/aztec-packages/commit/09e317dee9625f61ef9eb7cc488bdb5ff1d62612))
* **avm:** Support skippable relations
([#7750](https://github.com/AztecProtocol/aztec-packages/issues/7750))
([89d7b37](https://github.com/AztecProtocol/aztec-packages/commit/89d7b3707dcbe4cc684be7dcfdd8c356519067b0))
* **avm:** Update flavor codegen
([#7917](https://github.com/AztecProtocol/aztec-packages/issues/7917))
([7f1fa2c](https://github.com/AztecProtocol/aztec-packages/commit/7f1fa2cbb52637c1f7471ca1d20bd62b16b51c7a))
* AztecIvc benchmark suite
([#7864](https://github.com/AztecProtocol/aztec-packages/issues/7864))
([b7276ab](https://github.com/AztecProtocol/aztec-packages/commit/b7276ab7fc1f7abe26cc082eaac901c371217b2a))
* **bb:** Integrate tracy memory/cpu profiler
([#7718](https://github.com/AztecProtocol/aztec-packages/issues/7718))
([67efb8b](https://github.com/AztecProtocol/aztec-packages/commit/67efb8b13f8009b55d540b85b849a2172c28edd8))
* **bb:** Optimize tuple creation
([#7770](https://github.com/AztecProtocol/aztec-packages/issues/7770))
([a09636c](https://github.com/AztecProtocol/aztec-packages/commit/a09636c88dc1db8038e3c9fa68cc7c7d2ddf8894))
* Build and publish cli wallet
([#7915](https://github.com/AztecProtocol/aztec-packages/issues/7915))
([ac8c2f7](https://github.com/AztecProtocol/aztec-packages/commit/ac8c2f7a047acee2b71ea7d562de9ab4e6a3f502))
* Changing note processor / synchronizer to add siloed notes
([#7748](https://github.com/AztecProtocol/aztec-packages/issues/7748))
([1ce6f31](https://github.com/AztecProtocol/aztec-packages/commit/1ce6f31601221949b4dd73d420fea61acad0e5fe))
* Cheat rollup contract into assuming first blocks as proven
([#7892](https://github.com/AztecProtocol/aztec-packages/issues/7892))
([2c5d807](https://github.com/AztecProtocol/aztec-packages/commit/2c5d8071277a48d55c1a933960c16d23e28b9298))
* CLI wallet initial version
([#7651](https://github.com/AztecProtocol/aztec-packages/issues/7651))
([83f8d9c](https://github.com/AztecProtocol/aztec-packages/commit/83f8d9c5e4f53b3691d5a1168c69a160ab657139))
* Cli wallet on CircleCI
([#7745](https://github.com/AztecProtocol/aztec-packages/issues/7745))
([e851b97](https://github.com/AztecProtocol/aztec-packages/commit/e851b979bd7d0b5a285c4f84e3534f8c1e121294))
* Cli wallet with fee opts + private transfer flow
([#7856](https://github.com/AztecProtocol/aztec-packages/issues/7856))
([1459360](https://github.com/AztecProtocol/aztec-packages/commit/1459360837edaffad30bb70088ed81b85a842964))
* Consistent handling of point at infinity in transcript
([#7709](https://github.com/AztecProtocol/aztec-packages/issues/7709))
([7a763c0](https://github.com/AztecProtocol/aztec-packages/commit/7a763c07a29229ba1b1c4f8667e797c2a160022f))
* Constraining slots
([#7758](https://github.com/AztecProtocol/aztec-packages/issues/7758))
([f8b0de6](https://github.com/AztecProtocol/aztec-packages/commit/f8b0de695b78ac273da87f952aec6d2d5994eda0)),
closes
[#7849](https://github.com/AztecProtocol/aztec-packages/issues/7849)
[#7821](https://github.com/AztecProtocol/aztec-packages/issues/7821)
[#7837](https://github.com/AztecProtocol/aztec-packages/issues/7837)
* Delay encrypted log hashing to base rollup
([#7808](https://github.com/AztecProtocol/aztec-packages/issues/7808))
([ffffa12](https://github.com/AztecProtocol/aztec-packages/commit/ffffa12c7bd6fbb6bff0878e791f1690a45fb39b))
* Delay l2l1 message hashing to the base rollup
([#7773](https://github.com/AztecProtocol/aztec-packages/issues/7773))
([c263c4e](https://github.com/AztecProtocol/aztec-packages/commit/c263c4e8c24a51c44184eafacc960e4d29aa4919))
* **docs:** Aztecnr notes docs
([#7168](https://github.com/AztecProtocol/aztec-packages/issues/7168))
([7572baf](https://github.com/AztecProtocol/aztec-packages/commit/7572baf45bbc48258eff9f08689af3b45f23ec29))
* **docs:** Fixes from audit
([#7640](https://github.com/AztecProtocol/aztec-packages/issues/7640))
([ef78eb5](https://github.com/AztecProtocol/aztec-packages/commit/ef78eb59210bda8aa4f6ee7872c6fe2eb123465c))
* **docs:** Restructure, recolour, elev8
([#7815](https://github.com/AztecProtocol/aztec-packages/issues/7815))
([f5e874e](https://github.com/AztecProtocol/aztec-packages/commit/f5e874e5f47c8c5e82f2bd8f7661ba79a5487aa1))
* Don't eagerly error on cast expressions
(https://github.com/noir-lang/noir/pull/5635)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Extend SMT Utils
([#7126](https://github.com/AztecProtocol/aztec-packages/issues/7126))
([cfb4aa8](https://github.com/AztecProtocol/aztec-packages/commit/cfb4aa8602c316003d018bf3192e2a13e36cacad))
* Flamegraph artifact cleanup
([#7869](https://github.com/AztecProtocol/aztec-packages/issues/7869))
([6f70bba](https://github.com/AztecProtocol/aztec-packages/commit/6f70bbae7bfbb1af99a0dea39fd865dc6d341ede))
* Flamegraphs for e2e
([#7836](https://github.com/AztecProtocol/aztec-packages/issues/7836))
([e5c6ced](https://github.com/AztecProtocol/aztec-packages/commit/e5c6ced2f6672655734c95b7543db4da573a023d))
* Force build images for deploy
([#7851](https://github.com/AztecProtocol/aztec-packages/issues/7851))
([0152c9a](https://github.com/AztecProtocol/aztec-packages/commit/0152c9a74123cbe2f1df9d819a7f3ae3b125f0d4))
* Hook up secondary calldata column in dsl
([#7759](https://github.com/AztecProtocol/aztec-packages/issues/7759))
([f0f28fc](https://github.com/AztecProtocol/aztec-packages/commit/f0f28fc24cfeba18f5c16c77a4505d16dc1e02df))
* Implement `Value::Type` in comptime interpreter
(https://github.com/noir-lang/noir/pull/5593)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Implement format strings in the comptime interpreter
(https://github.com/noir-lang/noir/pull/5596)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Let filenames in errors be relative to the current dir if possible
(https://github.com/noir-lang/noir/pull/5642)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Let LSP work will with code generated by macros
(https://github.com/noir-lang/noir/pull/5665)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Linking circuits with the databus
([#7707](https://github.com/AztecProtocol/aztec-packages/issues/7707))
([1c596ed](https://github.com/AztecProtocol/aztec-packages/commit/1c596eda3f09bea03467662fd98c6c222c97f182))
* LSP inlay type hints on lambda parameters
(https://github.com/noir-lang/noir/pull/5639)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Make token transfer be recursive
([#7730](https://github.com/AztecProtocol/aztec-packages/issues/7730))
([eb5a90a](https://github.com/AztecProtocol/aztec-packages/commit/eb5a90a955f5992898dec42e9c3c5122525b7ad8))
* Merge devnet chagnes to master
([#7822](https://github.com/AztecProtocol/aztec-packages/issues/7822))
([8021eda](https://github.com/AztecProtocol/aztec-packages/commit/8021eda6b5c6e6c518ff38bacdc828fcfab09465))
* Net updates
([#7843](https://github.com/AztecProtocol/aztec-packages/issues/7843))
([a614abd](https://github.com/AztecProtocol/aztec-packages/commit/a614abd6bef02b0a180f39e987ea3b7d4c6a63fd))
* New IVC class that better reflects the aztec architecture
([#7695](https://github.com/AztecProtocol/aztec-packages/issues/7695))
([f8a76c1](https://github.com/AztecProtocol/aztec-packages/commit/f8a76c1a65c7c25f49bf2d7b4ef5302a0d0fbd58))
* Non-hardcoded constants
([#7736](https://github.com/AztecProtocol/aztec-packages/issues/7736))
([51d73ce](https://github.com/AztecProtocol/aztec-packages/commit/51d73cee66b6558e1d720a27e9593ba25118d9c1))
* Note hashes as points
([#7618](https://github.com/AztecProtocol/aztec-packages/issues/7618))
([8ed8f92](https://github.com/AztecProtocol/aztec-packages/commit/8ed8f925a83c7f9e2a73c6377e8e2154a3b6ef36))
* Note preprocessor
([#7857](https://github.com/AztecProtocol/aztec-packages/issues/7857))
([215297c](https://github.com/AztecProtocol/aztec-packages/commit/215297c97e1aa450ee8d2afd9dbe916f1da8412a))
* Optimize constant array handling in brillig_gen
([#7661](https://github.com/AztecProtocol/aztec-packages/issues/7661))
([dff2ffb](https://github.com/AztecProtocol/aztec-packages/commit/dff2ffb81c8dab33567c1263cf412aacce89af66))
* Pass calldata ids to the backend
([#7875](https://github.com/AztecProtocol/aztec-packages/issues/7875))
([274858f](https://github.com/AztecProtocol/aztec-packages/commit/274858f6385b26ea935dcdcf7b2295562caae0f8))
* Plumbing for slot numbers
([#7663](https://github.com/AztecProtocol/aztec-packages/issues/7663))
([e7c1dc3](https://github.com/AztecProtocol/aztec-packages/commit/e7c1dc343eaaa9d126d18b7456c207ac50c43d39))
* Profile app circuits with megahonk
([#7737](https://github.com/AztecProtocol/aztec-packages/issues/7737))
([ef4217f](https://github.com/AztecProtocol/aztec-packages/commit/ef4217fb03f70ae8be433421d488d0a8f4d958fb))
* **profiler:** Add support for brillig functions in opcodes-flamegraph
([#7698](https://github.com/AztecProtocol/aztec-packages/issues/7698))
([55999ff](https://github.com/AztecProtocol/aztec-packages/commit/55999ffb796390997a55745da51e4c8b91f091e5))
* Remove 'comptime or separate crate' restriction on comptime code
(https://github.com/noir-lang/noir/pull/5609)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Removing nullifier from private FPC
([#7765](https://github.com/AztecProtocol/aztec-packages/issues/7765))
([5bcc136](https://github.com/AztecProtocol/aztec-packages/commit/5bcc1365830cb862e9d0be90fef9298083058c4a))
* Removing superfluous call to MSM
([#7708](https://github.com/AztecProtocol/aztec-packages/issues/7708))
([deaada0](https://github.com/AztecProtocol/aztec-packages/commit/deaada08f1d637b63ccde1b326f862348dbb1e02))
* Report gates and VKs of private protocol circuits with megahonk
([#7722](https://github.com/AztecProtocol/aztec-packages/issues/7722))
([2c03259](https://github.com/AztecProtocol/aztec-packages/commit/2c03259653c45d7f17086320a9ea76225d1595ed))
* Run block-proving jobs in parallel by forking world-state
([#7655](https://github.com/AztecProtocol/aztec-packages/issues/7655))
([d3c8237](https://github.com/AztecProtocol/aztec-packages/commit/d3c823705fb167d3e15f2c67bd92efd36716a9a3))
* Set the block size to 4 for prover net
([#7901](https://github.com/AztecProtocol/aztec-packages/issues/7901))
([3a6021c](https://github.com/AztecProtocol/aztec-packages/commit/3a6021c54515205d74908b708cb43102a2b8a6f7))
* Simulate, aliases, ECDSA R account contract + touchid wallet
([#7725](https://github.com/AztecProtocol/aztec-packages/issues/7725))
([811d62f](https://github.com/AztecProtocol/aztec-packages/commit/811d62faabd34fd1a0887372ef3f4e2d4ac4e0c1))
* Sort proving jobs by epoch number
([#7844](https://github.com/AztecProtocol/aztec-packages/issues/7844))
([95c14a9](https://github.com/AztecProtocol/aztec-packages/commit/95c14a91b312755550bba20eb5262ea70f9ce451))
* Split merge into recursive verification and proving
([#7801](https://github.com/AztecProtocol/aztec-packages/issues/7801))
([25c49bc](https://github.com/AztecProtocol/aztec-packages/commit/25c49bce2ad880d1ad9a3678f68431b0cce01dbe))
* Swap-or-not shuffle
([#7646](https://github.com/AztecProtocol/aztec-packages/issues/7646))
([f981290](https://github.com/AztecProtocol/aztec-packages/commit/f9812908e49747bd3ca0ee2f448f88d901a71cab))
* Sync from aztec-packages (https://github.com/noir-lang/noir/pull/5598)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Trigger deploys manually
([#7795](https://github.com/AztecProtocol/aztec-packages/issues/7795))
([cbb843e](https://github.com/AztecProtocol/aztec-packages/commit/cbb843e43769d549618792eff5223370fe40f4d5))
* Ts pedersen commit with offset
([#7699](https://github.com/AztecProtocol/aztec-packages/issues/7699))
([b2224b4](https://github.com/AztecProtocol/aztec-packages/commit/b2224b48190d33af5e78efa3a470503331b0371f))
* Turbofish in struct pattern
(https://github.com/noir-lang/noir/pull/5616)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Turbofish operator in struct constructor
(https://github.com/noir-lang/noir/pull/5607)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Turbofish operator on path segments
(https://github.com/noir-lang/noir/pull/5603)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Typing unfinalized partial notes
([#7742](https://github.com/AztecProtocol/aztec-packages/issues/7742))
([795b832](https://github.com/AztecProtocol/aztec-packages/commit/795b832d502107b9a35daca8c1ec44818cff49a2))
* Updated bot machine specs
([#7903](https://github.com/AztecProtocol/aztec-packages/issues/7903))
([7f0e57b](https://github.com/AztecProtocol/aztec-packages/commit/7f0e57b71badfb85fc0fd3d4f1e23c4d3456a770))
* Updated workflow
([#7919](https://github.com/AztecProtocol/aztec-packages/issues/7919))
([0cb7dcf](https://github.com/AztecProtocol/aztec-packages/commit/0cb7dcffddd9c3b080cf6813d8f0c166ac717c0f))
* Use poseidon for merkle tree hashing
([#7356](https://github.com/AztecProtocol/aztec-packages/issues/7356))
([2daf2ab](https://github.com/AztecProtocol/aztec-packages/commit/2daf2ab2ad6815588c2a62d8b7d540e0dcbff892))
* Use poseidon for structs hashing
([#7383](https://github.com/AztecProtocol/aztec-packages/issues/7383))
([71acc4e](https://github.com/AztecProtocol/aztec-packages/commit/71acc4e0e4462d4972d5910490f76a10e8f536af))
* Use poseidon for var args hash
([#7363](https://github.com/AztecProtocol/aztec-packages/issues/7363))
([832b86e](https://github.com/AztecProtocol/aztec-packages/commit/832b86e65f84e00c3ea9892df4b7c3eeb7eaf5ea))
* Use scopes in wallet calls
([#7749](https://github.com/AztecProtocol/aztec-packages/issues/7749))
([d04183c](https://github.com/AztecProtocol/aztec-packages/commit/d04183cd611caf4ea31aef64c95e2ae8e5b36d9a))


### Bug Fixes

* `NoMatchingImplFound` in comptime code only
(https://github.com/noir-lang/noir/pull/5617)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add boolean config helper
([#7884](https://github.com/AztecProtocol/aztec-packages/issues/7884))
([2f11584](https://github.com/AztecProtocol/aztec-packages/commit/2f115849d93a7a2180defc342de6c7fe02f80047))
* Added missing oracles, fix block production
([#7768](https://github.com/AztecProtocol/aztec-packages/issues/7768))
([7dca2aa](https://github.com/AztecProtocol/aztec-packages/commit/7dca2aa2b91c86b79e8f9eb2810fc980651256a4))
* Allow trailing comma when parsing where clauses
(https://github.com/noir-lang/noir/pull/5594)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Allow using Self for function calls
(https://github.com/noir-lang/noir/pull/5629)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Anvil block timestamp
([#7686](https://github.com/AztecProtocol/aztec-packages/issues/7686))
([dc8ad6e](https://github.com/AztecProtocol/aztec-packages/commit/dc8ad6ee552c98d14eb68484c0ad3cf42d2995cd))
* **avm:** Correctly build spike vm
([#7726](https://github.com/AztecProtocol/aztec-packages/issues/7726))
([0c1d98f](https://github.com/AztecProtocol/aztec-packages/commit/0c1d98ff53ff0d39956d9837ce7b32cd75e860c3))
* Avoid initializing wires and selectors redundantly in trace
([#7895](https://github.com/AztecProtocol/aztec-packages/issues/7895))
([4be1833](https://github.com/AztecProtocol/aztec-packages/commit/4be18337082aa076d0cc88d5e11a5ebb2cb83631))
* **bb.js:** Account for extra gates in the c bind circuit size estimate
([#7800](https://github.com/AztecProtocol/aztec-packages/issues/7800))
([7b90699](https://github.com/AztecProtocol/aztec-packages/commit/7b90699fdbebcb00a06f396e8263a9ffe156fbc2))
* **bb:** Univariate-ff subtraction
([#7905](https://github.com/AztecProtocol/aztec-packages/issues/7905))
([e29f042](https://github.com/AztecProtocol/aztec-packages/commit/e29f042ccfb02f22ef63b3b82f43be2e4388902d))
* Call cmd secret key
([#7907](https://github.com/AztecProtocol/aztec-packages/issues/7907))
([3afe9f8](https://github.com/AztecProtocol/aztec-packages/commit/3afe9f81ffc0e2061b4efde0c4ffa9f40c15d614))
* Capture devnet cli errors
([#7685](https://github.com/AztecProtocol/aztec-packages/issues/7685))
([19cdf01](https://github.com/AztecProtocol/aztec-packages/commit/19cdf01b44857d5e087c3ca7f804bd471e23d8e0))
* Checking funded amount is enough
([#7648](https://github.com/AztecProtocol/aztec-packages/issues/7648))
([55a39ac](https://github.com/AztecProtocol/aztec-packages/commit/55a39ac84367df240d4bb848fb3b15a5add11691))
* **ci:** Build-images rebuild detection
([#7788](https://github.com/AztecProtocol/aztec-packages/issues/7788))
([f2d6856](https://github.com/AztecProtocol/aztec-packages/commit/f2d6856dfbf3ce54cc06a709a530e7aa3ca044a6))
* **ci:** Fix circle-ci issue
([#7734](https://github.com/AztecProtocol/aztec-packages/issues/7734))
([76acff9](https://github.com/AztecProtocol/aztec-packages/commit/76acff9a51190fd2faddd3913d625509d545702a))
* Commonly occurring typo
([#7807](https://github.com/AztecProtocol/aztec-packages/issues/7807))
([e3cc7d0](https://github.com/AztecProtocol/aztec-packages/commit/e3cc7d0fa0d842edcd24f1981b687cbdf057ce1a))
* Correct span for prefix operator
(https://github.com/noir-lang/noir/pull/5624)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Create proving job queue when prover node started with no agents
([#7828](https://github.com/AztecProtocol/aztec-packages/issues/7828))
([e2feaf8](https://github.com/AztecProtocol/aztec-packages/commit/e2feaf8c0613b2b5adfd496a94e1bd58296768f4))
* Default config
([#7848](https://github.com/AztecProtocol/aztec-packages/issues/7848))
([78ae6b4](https://github.com/AztecProtocol/aztec-packages/commit/78ae6b4f50cd0431c5dbd938c0cd791db5e2de4d))
* Deflatten databus visibilities
([#7761](https://github.com/AztecProtocol/aztec-packages/issues/7761))
([36eb4c8](https://github.com/AztecProtocol/aztec-packages/commit/36eb4c87bf44592385341115162520863530d9a4))
* DEPLOY_AZTEC_CONTRACTS parsing
([#7877](https://github.com/AztecProtocol/aztec-packages/issues/7877))
([e437dba](https://github.com/AztecProtocol/aztec-packages/commit/e437dbaf258adc9f49399ed8ed16bb424b234bf5))
* Devnet CI issues
([#7673](https://github.com/AztecProtocol/aztec-packages/issues/7673))
([729b36f](https://github.com/AztecProtocol/aztec-packages/commit/729b36f2c1432d3b62d2cb782f82b8b18411c92b))
* Ensure dummy values are on the curve for MSM
([#7653](https://github.com/AztecProtocol/aztec-packages/issues/7653))
([11f3885](https://github.com/AztecProtocol/aztec-packages/commit/11f3885d11237dbd3e203d07bf4cdb7df316e07a))
* Error on duplicate struct field
(https://github.com/noir-lang/noir/pull/5585)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Error on incorrect generic count for impl and type alias
(https://github.com/noir-lang/noir/pull/5623)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Error on unbound generics in structs
(https://github.com/noir-lang/noir/pull/5619)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Filter comptime globals (https://github.com/noir-lang/noir/pull/5538)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Fix ssh auth sock
([#7885](https://github.com/AztecProtocol/aztec-packages/issues/7885))
([c3292d7](https://github.com/AztecProtocol/aztec-packages/commit/c3292d7a4a42f5ff97f8f871f869f37e6c842ff1))
* Fixed ssh_auth_sock when it's not set
([#7865](https://github.com/AztecProtocol/aztec-packages/issues/7865))
([0b2ae4c](https://github.com/AztecProtocol/aztec-packages/commit/0b2ae4c20a25aaf01fc306d79b44ba0aa593458b))
* Flamegraph script issue
([#7886](https://github.com/AztecProtocol/aztec-packages/issues/7886))
([43fff40](https://github.com/AztecProtocol/aztec-packages/commit/43fff405ba3d60d5a498ed731b52a6942ffeb3df))
* Handle properly invalid witness assignment in ec add
([#7690](https://github.com/AztecProtocol/aztec-packages/issues/7690))
([6c19c7e](https://github.com/AztecProtocol/aztec-packages/commit/6c19c7eb91acc47106549fa7943f59d2dca3e0ce))
* Hash nonce to note hashes created in public
([#7715](https://github.com/AztecProtocol/aztec-packages/issues/7715))
([6e8eecd](https://github.com/AztecProtocol/aztec-packages/commit/6e8eecdbe01c23c33e9cecf865fbe943b478c361))
* Increase srs
([#7754](https://github.com/AztecProtocol/aztec-packages/issues/7754))
([79613a7](https://github.com/AztecProtocol/aztec-packages/commit/79613a7dfa4d2fbd07e9738d35082dc7b097a396))
* Key-rotation related issues in `TokenWithRefunds`
([#7631](https://github.com/AztecProtocol/aztec-packages/issues/7631))
([790ea5a](https://github.com/AztecProtocol/aztec-packages/commit/790ea5aadb212408ff609763898b54db4e45a784)),
closes
[#7323](https://github.com/AztecProtocol/aztec-packages/issues/7323)
[#7324](https://github.com/AztecProtocol/aztec-packages/issues/7324)
[#7326](https://github.com/AztecProtocol/aztec-packages/issues/7326)
* Let std::unsafe::zeroed() work for slices
(https://github.com/noir-lang/noir/pull/5592)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Let trait calls work in globals
(https://github.com/noir-lang/noir/pull/5602)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Load l1 addresses in prover node
([#7858](https://github.com/AztecProtocol/aztec-packages/issues/7858))
([0c3de7e](https://github.com/AztecProtocol/aztec-packages/commit/0c3de7e2b5c9ae6782aa94bffb6b69c6efa42892))
* Lookup trait constraints methods in composite types
(https://github.com/noir-lang/noir/pull/5595)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* More fixes for networks
([#7870](https://github.com/AztecProtocol/aztec-packages/issues/7870))
([55c33bd](https://github.com/AztecProtocol/aztec-packages/commit/55c33bd906a26f10a79e13b2542b1281ffbdb99d))
* Parse block and if statements independently of expressions in
statements (https://github.com/noir-lang/noir/pull/5634)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Parse booleans
([#7922](https://github.com/AztecProtocol/aztec-packages/issues/7922))
([65583e3](https://github.com/AztecProtocol/aztec-packages/commit/65583e3a841336cfdd1866e0ba6c44b0a14d3398))
* Properly schedule the tube proof and don't prove it twice
([#7913](https://github.com/AztecProtocol/aztec-packages/issues/7913))
([8582ef2](https://github.com/AztecProtocol/aztec-packages/commit/8582ef2c3903352d8793a5bc6dc6c3e3a3275d90))
* Show pending tx status
([#7887](https://github.com/AztecProtocol/aztec-packages/issues/7887))
([088aae5](https://github.com/AztecProtocol/aztec-packages/commit/088aae58dc1484739c2812315096b8de4fd720be))
* Skip squashing of revertible nullifier and non-revertible note hash
([#7624](https://github.com/AztecProtocol/aztec-packages/issues/7624))
([76ef298](https://github.com/AztecProtocol/aztec-packages/commit/76ef29825e9e3ef470b8801e5627c26d952644eb))
* Speed up LSP (https://github.com/noir-lang/noir/pull/5650)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Use correct PG degree adjustment in log deriv lookup relation
([#7863](https://github.com/AztecProtocol/aztec-packages/issues/7863))
([87c940d](https://github.com/AztecProtocol/aztec-packages/commit/87c940d4b92f2ed658ba96fc7c9d603e8e37c67c))
* Use curl instead of cast in mainnet fork script
([#7792](https://github.com/AztecProtocol/aztec-packages/issues/7792))
([1964870](https://github.com/AztecProtocol/aztec-packages/commit/196487040226087ece0d4c410eceea840d5a3739))


### Miscellaneous

* `TokenWithRefunds` optimizations
([#7628](https://github.com/AztecProtocol/aztec-packages/issues/7628))
([1dd4523](https://github.com/AztecProtocol/aztec-packages/commit/1dd4523bce2e005bd53c1d42d5c334f8d4322e95)),
closes
[#7606](https://github.com/AztecProtocol/aztec-packages/issues/7606)
* Add array and slice control flow tests
(https://github.com/noir-lang/noir/pull/5558)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add compose template for provernet-like env
([#7880](https://github.com/AztecProtocol/aztec-packages/issues/7880))
([27f15ae](https://github.com/AztecProtocol/aztec-packages/commit/27f15aeb09b1e6551a429ec0ff90d2b17b593e58))
* Add optional artifical delay for test prover
([#7832](https://github.com/AztecProtocol/aztec-packages/issues/7832))
([4d0c027](https://github.com/AztecProtocol/aztec-packages/commit/4d0c027c980e47b9cabc919c81562d5e0ce586ca))
* Adjusted flavors and relation types to zk sumcheck
([#7500](https://github.com/AztecProtocol/aztec-packages/issues/7500))
([b7efd07](https://github.com/AztecProtocol/aztec-packages/commit/b7efd079a679c492596bb455136661aca4cf582d))
* **avm:** Bump the timeout of the AVM full tests to 50 minutes
([#7776](https://github.com/AztecProtocol/aztec-packages/issues/7776))
([760af5d](https://github.com/AztecProtocol/aztec-packages/commit/760af5d8367438ec106d7162abcdce236cbf4310))
* **avm:** Bump timeout for AVM full tests github action to 60 minutes
([#7782](https://github.com/AztecProtocol/aztec-packages/issues/7782))
([cabbd5f](https://github.com/AztecProtocol/aztec-packages/commit/cabbd5ffd26a4f392a21ea458631213d24e418f5))
* **avm:** Codegen improvements
([#7703](https://github.com/AztecProtocol/aztec-packages/issues/7703))
([f26bb32](https://github.com/AztecProtocol/aztec-packages/commit/f26bb32abcdcea4450f4867d2d88efbbcd468c01))
* **avm:** Delete generated dir
([#7741](https://github.com/AztecProtocol/aztec-packages/issues/7741))
([f875e1e](https://github.com/AztecProtocol/aztec-packages/commit/f875e1e656950e6048446a52fcac45313966a822))
* **avm:** Do not generate subtrace row
([#7894](https://github.com/AztecProtocol/aztec-packages/issues/7894))
([0d95d9e](https://github.com/AztecProtocol/aztec-packages/commit/0d95d9eee85cdc0cd0a7cdf60cb8a349b8af27da))
* **avm:** Make fixed tables use constant polys
([#7744](https://github.com/AztecProtocol/aztec-packages/issues/7744))
([4b793b0](https://github.com/AztecProtocol/aztec-packages/commit/4b793b014b31382c10ea0ff7c35bd324b834410a))
* **avm:** No fake rows in main trace
([#7823](https://github.com/AztecProtocol/aztec-packages/issues/7823))
([5ff3554](https://github.com/AztecProtocol/aztec-packages/commit/5ff3554ace81831d0a561b6a4e186b48edb12e5e))
* **avm:** Rearrange files
([#7723](https://github.com/AztecProtocol/aztec-packages/issues/7723))
([3270662](https://github.com/AztecProtocol/aztec-packages/commit/3270662882bf98d81cf4a897957fb65cbbaa2464))
* **avm:** Tweak check-circuit settings
([#7872](https://github.com/AztecProtocol/aztec-packages/issues/7872))
([ff4bb4f](https://github.com/AztecProtocol/aztec-packages/commit/ff4bb4f7ba2b63f8e460b1bacbdf0410f161f7c6))
* **avm:** Update stats
([#7701](https://github.com/AztecProtocol/aztec-packages/issues/7701))
([1b7d27e](https://github.com/AztecProtocol/aztec-packages/commit/1b7d27e310c70a211f30816b42a879118378a049))
* **avm:** Vm compilation metrics
([#7704](https://github.com/AztecProtocol/aztec-packages/issues/7704))
([0d83cde](https://github.com/AztecProtocol/aztec-packages/commit/0d83cde126789016cc15087b7ff0cfb26eb31818))
* **bb:** Define missing univ-fr operators
([#7859](https://github.com/AztecProtocol/aztec-packages/issues/7859))
([30d226e](https://github.com/AztecProtocol/aztec-packages/commit/30d226e9db291b6daaa30462d184aece445a7d9f))
* Card contract cleanup
([#7874](https://github.com/AztecProtocol/aztec-packages/issues/7874))
([7d26fc6](https://github.com/AztecProtocol/aztec-packages/commit/7d26fc6a61c4bcae3e283a2a8178082cc68e7007))
* **ci:** Report memory and cpu usage in e2e bench
([#7735](https://github.com/AztecProtocol/aztec-packages/issues/7735))
([36aa6fc](https://github.com/AztecProtocol/aztec-packages/commit/36aa6fc28504e5f838eb21e6fa99afc849e218e9))
* **ci:** Report memory usage in bb-native-tests
([#7713](https://github.com/AztecProtocol/aztec-packages/issues/7713))
([2631fb5](https://github.com/AztecProtocol/aztec-packages/commit/2631fb5ce0d99dcba40a44b61d4feb61cd4d0922))
* Display comptime assertion errors, not Debug
(https://github.com/noir-lang/noir/pull/5605)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Add Writing Noir doc
(https://github.com/noir-lang/noir/pull/5456)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Minor update to TXE docs page
([#7757](https://github.com/AztecProtocol/aztec-packages/issues/7757))
([a65f79b](https://github.com/AztecProtocol/aztec-packages/commit/a65f79bff890947052016b6756c3296a5a1f96ce))
* **docs:** Nasty linky (https://github.com/noir-lang/noir/pull/5600)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Update proving backend related docs
(https://github.com/noir-lang/noir/pull/5601)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Update web app page to use nargo v 0.31
(https://github.com/noir-lang/noir/pull/5652)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **github:** Switch to organization-wide Issue templates
(https://github.com/noir-lang/noir/pull/5622)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Handle exceptions in bot runner
([#7679](https://github.com/AztecProtocol/aztec-packages/issues/7679))
([dd6176b](https://github.com/AztecProtocol/aztec-packages/commit/dd6176b444ae1b9f8313af98f7ebd5eeb2f31ed7)),
closes
[#7658](https://github.com/AztecProtocol/aztec-packages/issues/7658)
* Improve error reporting in profiler
([#7712](https://github.com/AztecProtocol/aztec-packages/issues/7712))
([628782a](https://github.com/AztecProtocol/aztec-packages/commit/628782ab6e259bd80ac2b72296b858ccb0a15154))
* Initializer nullifier read in the kernel
([#7876](https://github.com/AztecProtocol/aztec-packages/issues/7876))
([fda7c3e](https://github.com/AztecProtocol/aztec-packages/commit/fda7c3e2b5b01dc4a55b7e79ca75f057e2907d20))
* Lldb bb debugging helper script
([#7627](https://github.com/AztecProtocol/aztec-packages/issues/7627))
([f35786a](https://github.com/AztecProtocol/aztec-packages/commit/f35786a34659a2691d9810517fa4e4e89b99111a))
* Log name of current e2e test
([#7637](https://github.com/AztecProtocol/aztec-packages/issues/7637))
([20c555a](https://github.com/AztecProtocol/aztec-packages/commit/20c555a85142ed54b691296740ba6b22d81750c0))
* Make registry ownable
([#7853](https://github.com/AztecProtocol/aztec-packages/issues/7853))
([043e219](https://github.com/AztecProtocol/aztec-packages/commit/043e2191ee302720eb6c9f400eb7cbd4f7a8f735)),
closes
[#7837](https://github.com/AztecProtocol/aztec-packages/issues/7837)
* Merge back to master
([#7785](https://github.com/AztecProtocol/aztec-packages/issues/7785))
([2ad6e6f](https://github.com/AztecProtocol/aztec-packages/commit/2ad6e6fd60c98cc5888f6f64bcd774d87ff881e8))
* Minor logging tweaks
([#7879](https://github.com/AztecProtocol/aztec-packages/issues/7879))
([00c35c0](https://github.com/AztecProtocol/aztec-packages/commit/00c35c0f7c96c5eebecf66088d2fcd9aa3da7693))
* Native to fee juice
([#7911](https://github.com/AztecProtocol/aztec-packages/issues/7911))
([32b4c6e](https://github.com/AztecProtocol/aztec-packages/commit/32b4c6ed75387759b3d84df723a52679894feb2d))
* Nicer way to fetch slots in `TokenWithRefunds`
([#7797](https://github.com/AztecProtocol/aztec-packages/issues/7797))
([9fc38b9](https://github.com/AztecProtocol/aztec-packages/commit/9fc38b9147a51b8e5b84ba475ef8b2a3492727d3))
* Rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))
([24b3e05](https://github.com/AztecProtocol/aztec-packages/commit/24b3e05a9bfca29f7741de49fe12f73cc219953b)),
closes
[#7570](https://github.com/AztecProtocol/aztec-packages/issues/7570)
* Renaming private token as token with refunds
([#7626](https://github.com/AztecProtocol/aztec-packages/issues/7626))
([43a83ae](https://github.com/AztecProtocol/aztec-packages/commit/43a83aec4572f17444ba9d6d1e4c141dbbc07a76))
* Replace relative paths to noir-protocol-circuits
([a801da9](https://github.com/AztecProtocol/aztec-packages/commit/a801da98d1b6ca90d3f2ced5135992db30cd13f0))
* Replace relative paths to noir-protocol-circuits
([4ac261d](https://github.com/AztecProtocol/aztec-packages/commit/4ac261da0f30c3d202d33b3c2e657a14c2f84bc8))
* Replace relative paths to noir-protocol-circuits
([6b1e5c8](https://github.com/AztecProtocol/aztec-packages/commit/6b1e5c8db30dd526448d22ec9e4eeba6a89e309e))
* Replace relative paths to noir-protocol-circuits
([5477450](https://github.com/AztecProtocol/aztec-packages/commit/54774504fbd8cb1de53de5064c5d59495f8fc7c0))
* Replace relative paths to noir-protocol-circuits
([e6de663](https://github.com/AztecProtocol/aztec-packages/commit/e6de6635baec63f3c563c332ccb71e2f5803d8be))
* Replace relative paths to noir-protocol-circuits
([bf2ad45](https://github.com/AztecProtocol/aztec-packages/commit/bf2ad4552ce561c8cb7038c40c6560b6da86bd43))
* Replace relative paths to noir-protocol-circuits
([7c42b89](https://github.com/AztecProtocol/aztec-packages/commit/7c42b8987edcb09447bc8feeb99e74bc8a8f05c6))
* Replace relative paths to noir-protocol-circuits
([bcf8b18](https://github.com/AztecProtocol/aztec-packages/commit/bcf8b1805c4d9c315eba9bfb07f5302649c5bad9))
* Replace relative paths to noir-protocol-circuits
([aeaed12](https://github.com/AztecProtocol/aztec-packages/commit/aeaed12376bbbb21ad25fa2301376b3740767649))
* Replace relative paths to noir-protocol-circuits
([3d9696d](https://github.com/AztecProtocol/aztec-packages/commit/3d9696d89ae9e1822cf685fd94570c6ba11916ce))
* Replace relative paths to noir-protocol-circuits
([7e36deb](https://github.com/AztecProtocol/aztec-packages/commit/7e36deb4d15a83b402c1d9a4efe29049e5597f36))
* Slot part of note hiding point preimage
([#7767](https://github.com/AztecProtocol/aztec-packages/issues/7767))
([109f685](https://github.com/AztecProtocol/aztec-packages/commit/109f6850ae98aaf67fe021b36a4fee6c9c0b9b93))
* Switch `Value::TraitConstraint` to a resolved trait constraint
(https://github.com/noir-lang/noir/pull/5618)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Test blackbox binary op instructions
(https://github.com/noir-lang/noir/pull/5484)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Trim client IVC block sizes to fit e2e test
([#7783](https://github.com/AztecProtocol/aztec-packages/issues/7783))
([641229e](https://github.com/AztecProtocol/aztec-packages/commit/641229ec6b87ed7db47ef54a810accc4e9b66615))
* Updated tx per block config
([#7794](https://github.com/AztecProtocol/aztec-packages/issues/7794))
([e74108d](https://github.com/AztecProtocol/aztec-packages/commit/e74108d4672cd003851fea3c9423247e7c9f941b))
* Validate outputs in kernel circuits
([#7706](https://github.com/AztecProtocol/aztec-packages/issues/7706))
([9a98289](https://github.com/AztecProtocol/aztec-packages/commit/9a98289bb031f5c3435ec9d7e5c086ed6f26bfc9))
* **vc:** P2p message cleanup + attestaion + proposal types
([#7733](https://github.com/AztecProtocol/aztec-packages/issues/7733))
([392cdb1](https://github.com/AztecProtocol/aztec-packages/commit/392cdb1cc3d228bd0b6586565bc0374db4962411))
</details>

<details><summary>barretenberg: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg-v0.47.1...barretenberg-v0.48.0)
(2024-08-12)


### Features

* **avm:** Poseidon2 constraints
([#7269](https://github.com/AztecProtocol/aztec-packages/issues/7269))
([bd5a26e](https://github.com/AztecProtocol/aztec-packages/commit/bd5a26eed42a8e23e2c9ea158419836a2b0b3333))
* **avm:** Support aliases in bb-pilcom
([#7904](https://github.com/AztecProtocol/aztec-packages/issues/7904))
([09e317d](https://github.com/AztecProtocol/aztec-packages/commit/09e317dee9625f61ef9eb7cc488bdb5ff1d62612))
* **avm:** Support skippable relations
([#7750](https://github.com/AztecProtocol/aztec-packages/issues/7750))
([89d7b37](https://github.com/AztecProtocol/aztec-packages/commit/89d7b3707dcbe4cc684be7dcfdd8c356519067b0))
* **avm:** Update flavor codegen
([#7917](https://github.com/AztecProtocol/aztec-packages/issues/7917))
([7f1fa2c](https://github.com/AztecProtocol/aztec-packages/commit/7f1fa2cbb52637c1f7471ca1d20bd62b16b51c7a))
* AztecIvc benchmark suite
([#7864](https://github.com/AztecProtocol/aztec-packages/issues/7864))
([b7276ab](https://github.com/AztecProtocol/aztec-packages/commit/b7276ab7fc1f7abe26cc082eaac901c371217b2a))
* **bb:** Integrate tracy memory/cpu profiler
([#7718](https://github.com/AztecProtocol/aztec-packages/issues/7718))
([67efb8b](https://github.com/AztecProtocol/aztec-packages/commit/67efb8b13f8009b55d540b85b849a2172c28edd8))
* **bb:** Optimize tuple creation
([#7770](https://github.com/AztecProtocol/aztec-packages/issues/7770))
([a09636c](https://github.com/AztecProtocol/aztec-packages/commit/a09636c88dc1db8038e3c9fa68cc7c7d2ddf8894))
* CLI wallet initial version
([#7651](https://github.com/AztecProtocol/aztec-packages/issues/7651))
([83f8d9c](https://github.com/AztecProtocol/aztec-packages/commit/83f8d9c5e4f53b3691d5a1168c69a160ab657139))
* Consistent handling of point at infinity in transcript
([#7709](https://github.com/AztecProtocol/aztec-packages/issues/7709))
([7a763c0](https://github.com/AztecProtocol/aztec-packages/commit/7a763c07a29229ba1b1c4f8667e797c2a160022f))
* Extend SMT Utils
([#7126](https://github.com/AztecProtocol/aztec-packages/issues/7126))
([cfb4aa8](https://github.com/AztecProtocol/aztec-packages/commit/cfb4aa8602c316003d018bf3192e2a13e36cacad))
* Hook up secondary calldata column in dsl
([#7759](https://github.com/AztecProtocol/aztec-packages/issues/7759))
([f0f28fc](https://github.com/AztecProtocol/aztec-packages/commit/f0f28fc24cfeba18f5c16c77a4505d16dc1e02df))
* Linking circuits with the databus
([#7707](https://github.com/AztecProtocol/aztec-packages/issues/7707))
([1c596ed](https://github.com/AztecProtocol/aztec-packages/commit/1c596eda3f09bea03467662fd98c6c222c97f182))
* New IVC class that better reflects the aztec architecture
([#7695](https://github.com/AztecProtocol/aztec-packages/issues/7695))
([f8a76c1](https://github.com/AztecProtocol/aztec-packages/commit/f8a76c1a65c7c25f49bf2d7b4ef5302a0d0fbd58))
* Pass calldata ids to the backend
([#7875](https://github.com/AztecProtocol/aztec-packages/issues/7875))
([274858f](https://github.com/AztecProtocol/aztec-packages/commit/274858f6385b26ea935dcdcf7b2295562caae0f8))
* Plumbing for slot numbers
([#7663](https://github.com/AztecProtocol/aztec-packages/issues/7663))
([e7c1dc3](https://github.com/AztecProtocol/aztec-packages/commit/e7c1dc343eaaa9d126d18b7456c207ac50c43d39))
* Report gates and VKs of private protocol circuits with megahonk
([#7722](https://github.com/AztecProtocol/aztec-packages/issues/7722))
([2c03259](https://github.com/AztecProtocol/aztec-packages/commit/2c03259653c45d7f17086320a9ea76225d1595ed))
* Split merge into recursive verification and proving
([#7801](https://github.com/AztecProtocol/aztec-packages/issues/7801))
([25c49bc](https://github.com/AztecProtocol/aztec-packages/commit/25c49bce2ad880d1ad9a3678f68431b0cce01dbe))
* Ts pedersen commit with offset
([#7699](https://github.com/AztecProtocol/aztec-packages/issues/7699))
([b2224b4](https://github.com/AztecProtocol/aztec-packages/commit/b2224b48190d33af5e78efa3a470503331b0371f))
* Use poseidon for merkle tree hashing
([#7356](https://github.com/AztecProtocol/aztec-packages/issues/7356))
([2daf2ab](https://github.com/AztecProtocol/aztec-packages/commit/2daf2ab2ad6815588c2a62d8b7d540e0dcbff892))


### Bug Fixes

* **avm:** Correctly build spike vm
([#7726](https://github.com/AztecProtocol/aztec-packages/issues/7726))
([0c1d98f](https://github.com/AztecProtocol/aztec-packages/commit/0c1d98ff53ff0d39956d9837ce7b32cd75e860c3))
* Avoid initializing wires and selectors redundantly in trace
([#7895](https://github.com/AztecProtocol/aztec-packages/issues/7895))
([4be1833](https://github.com/AztecProtocol/aztec-packages/commit/4be18337082aa076d0cc88d5e11a5ebb2cb83631))
* **bb.js:** Account for extra gates in the c bind circuit size estimate
([#7800](https://github.com/AztecProtocol/aztec-packages/issues/7800))
([7b90699](https://github.com/AztecProtocol/aztec-packages/commit/7b90699fdbebcb00a06f396e8263a9ffe156fbc2))
* **bb:** Univariate-ff subtraction
([#7905](https://github.com/AztecProtocol/aztec-packages/issues/7905))
([e29f042](https://github.com/AztecProtocol/aztec-packages/commit/e29f042ccfb02f22ef63b3b82f43be2e4388902d))
* **ci:** Fix circle-ci issue
([#7734](https://github.com/AztecProtocol/aztec-packages/issues/7734))
([76acff9](https://github.com/AztecProtocol/aztec-packages/commit/76acff9a51190fd2faddd3913d625509d545702a))
* Commonly occurring typo
([#7807](https://github.com/AztecProtocol/aztec-packages/issues/7807))
([e3cc7d0](https://github.com/AztecProtocol/aztec-packages/commit/e3cc7d0fa0d842edcd24f1981b687cbdf057ce1a))
* Ensure dummy values are on the curve for MSM
([#7653](https://github.com/AztecProtocol/aztec-packages/issues/7653))
([11f3885](https://github.com/AztecProtocol/aztec-packages/commit/11f3885d11237dbd3e203d07bf4cdb7df316e07a))
* Handle properly invalid witness assignment in ec add
([#7690](https://github.com/AztecProtocol/aztec-packages/issues/7690))
([6c19c7e](https://github.com/AztecProtocol/aztec-packages/commit/6c19c7eb91acc47106549fa7943f59d2dca3e0ce))
* Increase srs
([#7754](https://github.com/AztecProtocol/aztec-packages/issues/7754))
([79613a7](https://github.com/AztecProtocol/aztec-packages/commit/79613a7dfa4d2fbd07e9738d35082dc7b097a396))
* Use correct PG degree adjustment in log deriv lookup relation
([#7863](https://github.com/AztecProtocol/aztec-packages/issues/7863))
([87c940d](https://github.com/AztecProtocol/aztec-packages/commit/87c940d4b92f2ed658ba96fc7c9d603e8e37c67c))


### Miscellaneous

* Adjusted flavors and relation types to zk sumcheck
([#7500](https://github.com/AztecProtocol/aztec-packages/issues/7500))
([b7efd07](https://github.com/AztecProtocol/aztec-packages/commit/b7efd079a679c492596bb455136661aca4cf582d))
* **avm:** Codegen improvements
([#7703](https://github.com/AztecProtocol/aztec-packages/issues/7703))
([f26bb32](https://github.com/AztecProtocol/aztec-packages/commit/f26bb32abcdcea4450f4867d2d88efbbcd468c01))
* **avm:** Do not generate subtrace row
([#7894](https://github.com/AztecProtocol/aztec-packages/issues/7894))
([0d95d9e](https://github.com/AztecProtocol/aztec-packages/commit/0d95d9eee85cdc0cd0a7cdf60cb8a349b8af27da))
* **avm:** Make fixed tables use constant polys
([#7744](https://github.com/AztecProtocol/aztec-packages/issues/7744))
([4b793b0](https://github.com/AztecProtocol/aztec-packages/commit/4b793b014b31382c10ea0ff7c35bd324b834410a))
* **avm:** No fake rows in main trace
([#7823](https://github.com/AztecProtocol/aztec-packages/issues/7823))
([5ff3554](https://github.com/AztecProtocol/aztec-packages/commit/5ff3554ace81831d0a561b6a4e186b48edb12e5e))
* **avm:** Rearrange files
([#7723](https://github.com/AztecProtocol/aztec-packages/issues/7723))
([3270662](https://github.com/AztecProtocol/aztec-packages/commit/3270662882bf98d81cf4a897957fb65cbbaa2464))
* **avm:** Tweak check-circuit settings
([#7872](https://github.com/AztecProtocol/aztec-packages/issues/7872))
([ff4bb4f](https://github.com/AztecProtocol/aztec-packages/commit/ff4bb4f7ba2b63f8e460b1bacbdf0410f161f7c6))
* **avm:** Update stats
([#7701](https://github.com/AztecProtocol/aztec-packages/issues/7701))
([1b7d27e](https://github.com/AztecProtocol/aztec-packages/commit/1b7d27e310c70a211f30816b42a879118378a049))
* **avm:** Vm compilation metrics
([#7704](https://github.com/AztecProtocol/aztec-packages/issues/7704))
([0d83cde](https://github.com/AztecProtocol/aztec-packages/commit/0d83cde126789016cc15087b7ff0cfb26eb31818))
* **bb:** Define missing univ-fr operators
([#7859](https://github.com/AztecProtocol/aztec-packages/issues/7859))
([30d226e](https://github.com/AztecProtocol/aztec-packages/commit/30d226e9db291b6daaa30462d184aece445a7d9f))
* Lldb bb debugging helper script
([#7627](https://github.com/AztecProtocol/aztec-packages/issues/7627))
([f35786a](https://github.com/AztecProtocol/aztec-packages/commit/f35786a34659a2691d9810517fa4e4e89b99111a))
* Trim client IVC block sizes to fit e2e test
([#7783](https://github.com/AztecProtocol/aztec-packages/issues/7783))
([641229e](https://github.com/AztecProtocol/aztec-packages/commit/641229ec6b87ed7db47ef54a810accc4e9b66615))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
AztecBot added a commit to AztecProtocol/barretenberg that referenced this pull request Aug 13, 2024
:robot: I have created a release *beep* *boop*
---


<details><summary>aztec-package: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-package-v0.47.1...aztec-package-v0.48.0)
(2024-08-12)


### ⚠ BREAKING CHANGES

* rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))

### Features

* Cheat rollup contract into assuming first blocks as proven
([#7892](https://github.com/AztecProtocol/aztec-packages/issues/7892))
([2c5d807](https://github.com/AztecProtocol/aztec-packages/commit/2c5d8071277a48d55c1a933960c16d23e28b9298))
* CLI wallet initial version
([#7651](https://github.com/AztecProtocol/aztec-packages/issues/7651))
([83f8d9c](https://github.com/AztecProtocol/aztec-packages/commit/83f8d9c5e4f53b3691d5a1168c69a160ab657139))
* Merge devnet chagnes to master
([#7822](https://github.com/AztecProtocol/aztec-packages/issues/7822))
([8021eda](https://github.com/AztecProtocol/aztec-packages/commit/8021eda6b5c6e6c518ff38bacdc828fcfab09465))
* Updated bot machine specs
([#7903](https://github.com/AztecProtocol/aztec-packages/issues/7903))
([7f0e57b](https://github.com/AztecProtocol/aztec-packages/commit/7f0e57b71badfb85fc0fd3d4f1e23c4d3456a770))


### Bug Fixes

* Add boolean config helper
([#7884](https://github.com/AztecProtocol/aztec-packages/issues/7884))
([2f11584](https://github.com/AztecProtocol/aztec-packages/commit/2f115849d93a7a2180defc342de6c7fe02f80047))
* Create proving job queue when prover node started with no agents
([#7828](https://github.com/AztecProtocol/aztec-packages/issues/7828))
([e2feaf8](https://github.com/AztecProtocol/aztec-packages/commit/e2feaf8c0613b2b5adfd496a94e1bd58296768f4))
* Default config
([#7848](https://github.com/AztecProtocol/aztec-packages/issues/7848))
([78ae6b4](https://github.com/AztecProtocol/aztec-packages/commit/78ae6b4f50cd0431c5dbd938c0cd791db5e2de4d))
* DEPLOY_AZTEC_CONTRACTS parsing
([#7877](https://github.com/AztecProtocol/aztec-packages/issues/7877))
([e437dba](https://github.com/AztecProtocol/aztec-packages/commit/e437dbaf258adc9f49399ed8ed16bb424b234bf5))
* Load l1 addresses in prover node
([#7858](https://github.com/AztecProtocol/aztec-packages/issues/7858))
([0c3de7e](https://github.com/AztecProtocol/aztec-packages/commit/0c3de7e2b5c9ae6782aa94bffb6b69c6efa42892))
* More fixes for networks
([#7870](https://github.com/AztecProtocol/aztec-packages/issues/7870))
([55c33bd](https://github.com/AztecProtocol/aztec-packages/commit/55c33bd906a26f10a79e13b2542b1281ffbdb99d))


### Miscellaneous

* Add optional artifical delay for test prover
([#7832](https://github.com/AztecProtocol/aztec-packages/issues/7832))
([4d0c027](https://github.com/AztecProtocol/aztec-packages/commit/4d0c027c980e47b9cabc919c81562d5e0ce586ca))
* Handle exceptions in bot runner
([#7679](https://github.com/AztecProtocol/aztec-packages/issues/7679))
([dd6176b](https://github.com/AztecProtocol/aztec-packages/commit/dd6176b444ae1b9f8313af98f7ebd5eeb2f31ed7)),
closes
[#7658](https://github.com/AztecProtocol/aztec-packages/issues/7658)
* Merge back to master
([#7785](https://github.com/AztecProtocol/aztec-packages/issues/7785))
([2ad6e6f](https://github.com/AztecProtocol/aztec-packages/commit/2ad6e6fd60c98cc5888f6f64bcd774d87ff881e8))
* Minor logging tweaks
([#7879](https://github.com/AztecProtocol/aztec-packages/issues/7879))
([00c35c0](https://github.com/AztecProtocol/aztec-packages/commit/00c35c0f7c96c5eebecf66088d2fcd9aa3da7693))
* Native to fee juice
([#7911](https://github.com/AztecProtocol/aztec-packages/issues/7911))
([32b4c6e](https://github.com/AztecProtocol/aztec-packages/commit/32b4c6ed75387759b3d84df723a52679894feb2d))
* Rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))
([24b3e05](https://github.com/AztecProtocol/aztec-packages/commit/24b3e05a9bfca29f7741de49fe12f73cc219953b)),
closes
[#7570](https://github.com/AztecProtocol/aztec-packages/issues/7570)
</details>

<details><summary>barretenberg.js: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg.js-v0.47.1...barretenberg.js-v0.48.0)
(2024-08-12)


### Features

* Ts pedersen commit with offset
([#7699](https://github.com/AztecProtocol/aztec-packages/issues/7699))
([b2224b4](https://github.com/AztecProtocol/aztec-packages/commit/b2224b48190d33af5e78efa3a470503331b0371f))


### Bug Fixes

* Commonly occurring typo
([#7807](https://github.com/AztecProtocol/aztec-packages/issues/7807))
([e3cc7d0](https://github.com/AztecProtocol/aztec-packages/commit/e3cc7d0fa0d842edcd24f1981b687cbdf057ce1a))
</details>

<details><summary>aztec-packages: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-packages-v0.47.1...aztec-packages-v0.48.0)
(2024-08-12)


### ⚠ BREAKING CHANGES

* cli wallet with fee opts + private transfer flow
([#7856](https://github.com/AztecProtocol/aztec-packages/issues/7856))
* rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))
* parse block and if statements independently of expressions in
statements (https://github.com/noir-lang/noir/pull/5634)

### Features

* `PrivateSet::pop_notes(...)`
([#7834](https://github.com/AztecProtocol/aztec-packages/issues/7834))
([4348654](https://github.com/AztecProtocol/aztec-packages/commit/43486543917a249bc8186df6f03de53e03e2f001))
* **acir_gen:** Width aware ACIR gen addition
(https://github.com/noir-lang/noir/pull/5493)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add `onlyOwner` to `Registry::upgrade`
([#7899](https://github.com/AztecProtocol/aztec-packages/issues/7899))
([7dc19db](https://github.com/AztecProtocol/aztec-packages/commit/7dc19db45fb0142f24ff0512c438f7f74aa9538a))
* Add `std::meta::type_of` and `impl Eq for Type`
(https://github.com/noir-lang/noir/pull/5669)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add log of blocks proposed and split pending/proven
([#7635](https://github.com/AztecProtocol/aztec-packages/issues/7635))
([5478747](https://github.com/AztecProtocol/aztec-packages/commit/547874714ecf2693f147921afa8d72a3d2bd5e36))
* Add parameter to call_data attribute
(https://github.com/noir-lang/noir/pull/5599)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add proverId to root rollup public inputs
([#7639](https://github.com/AztecProtocol/aztec-packages/issues/7639))
([0120462](https://github.com/AztecProtocol/aztec-packages/commit/01204628154cf2e41b1f095ec285995f3de22ade)),
closes
[#7670](https://github.com/AztecProtocol/aztec-packages/issues/7670)
* Adding option for retrieving siloed notes in oracles
([#7711](https://github.com/AztecProtocol/aztec-packages/issues/7711))
([07ee990](https://github.com/AztecProtocol/aztec-packages/commit/07ee990d2bd5dbe6a98c1fe022843de676511498))
* Adding support for siloing notes in pxe database
([#7710](https://github.com/AztecProtocol/aztec-packages/issues/7710))
([695f784](https://github.com/AztecProtocol/aztec-packages/commit/695f7847ea4d8779c62a393d68d846aafffea778))
* Allow inserting LSP inlay type hints
(https://github.com/noir-lang/noir/pull/5620)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **avm:** Poseidon2 constraints
([#7269](https://github.com/AztecProtocol/aztec-packages/issues/7269))
([bd5a26e](https://github.com/AztecProtocol/aztec-packages/commit/bd5a26eed42a8e23e2c9ea158419836a2b0b3333))
* **avm:** Support aliases in bb-pilcom
([#7904](https://github.com/AztecProtocol/aztec-packages/issues/7904))
([09e317d](https://github.com/AztecProtocol/aztec-packages/commit/09e317dee9625f61ef9eb7cc488bdb5ff1d62612))
* **avm:** Support skippable relations
([#7750](https://github.com/AztecProtocol/aztec-packages/issues/7750))
([89d7b37](https://github.com/AztecProtocol/aztec-packages/commit/89d7b3707dcbe4cc684be7dcfdd8c356519067b0))
* **avm:** Update flavor codegen
([#7917](https://github.com/AztecProtocol/aztec-packages/issues/7917))
([7f1fa2c](https://github.com/AztecProtocol/aztec-packages/commit/7f1fa2cbb52637c1f7471ca1d20bd62b16b51c7a))
* AztecIvc benchmark suite
([#7864](https://github.com/AztecProtocol/aztec-packages/issues/7864))
([b7276ab](https://github.com/AztecProtocol/aztec-packages/commit/b7276ab7fc1f7abe26cc082eaac901c371217b2a))
* **bb:** Integrate tracy memory/cpu profiler
([#7718](https://github.com/AztecProtocol/aztec-packages/issues/7718))
([67efb8b](https://github.com/AztecProtocol/aztec-packages/commit/67efb8b13f8009b55d540b85b849a2172c28edd8))
* **bb:** Optimize tuple creation
([#7770](https://github.com/AztecProtocol/aztec-packages/issues/7770))
([a09636c](https://github.com/AztecProtocol/aztec-packages/commit/a09636c88dc1db8038e3c9fa68cc7c7d2ddf8894))
* Build and publish cli wallet
([#7915](https://github.com/AztecProtocol/aztec-packages/issues/7915))
([ac8c2f7](https://github.com/AztecProtocol/aztec-packages/commit/ac8c2f7a047acee2b71ea7d562de9ab4e6a3f502))
* Changing note processor / synchronizer to add siloed notes
([#7748](https://github.com/AztecProtocol/aztec-packages/issues/7748))
([1ce6f31](https://github.com/AztecProtocol/aztec-packages/commit/1ce6f31601221949b4dd73d420fea61acad0e5fe))
* Cheat rollup contract into assuming first blocks as proven
([#7892](https://github.com/AztecProtocol/aztec-packages/issues/7892))
([2c5d807](https://github.com/AztecProtocol/aztec-packages/commit/2c5d8071277a48d55c1a933960c16d23e28b9298))
* CLI wallet initial version
([#7651](https://github.com/AztecProtocol/aztec-packages/issues/7651))
([83f8d9c](https://github.com/AztecProtocol/aztec-packages/commit/83f8d9c5e4f53b3691d5a1168c69a160ab657139))
* Cli wallet on CircleCI
([#7745](https://github.com/AztecProtocol/aztec-packages/issues/7745))
([e851b97](https://github.com/AztecProtocol/aztec-packages/commit/e851b979bd7d0b5a285c4f84e3534f8c1e121294))
* Cli wallet with fee opts + private transfer flow
([#7856](https://github.com/AztecProtocol/aztec-packages/issues/7856))
([1459360](https://github.com/AztecProtocol/aztec-packages/commit/1459360837edaffad30bb70088ed81b85a842964))
* Consistent handling of point at infinity in transcript
([#7709](https://github.com/AztecProtocol/aztec-packages/issues/7709))
([7a763c0](https://github.com/AztecProtocol/aztec-packages/commit/7a763c07a29229ba1b1c4f8667e797c2a160022f))
* Constraining slots
([#7758](https://github.com/AztecProtocol/aztec-packages/issues/7758))
([f8b0de6](https://github.com/AztecProtocol/aztec-packages/commit/f8b0de695b78ac273da87f952aec6d2d5994eda0)),
closes
[#7849](https://github.com/AztecProtocol/aztec-packages/issues/7849)
[#7821](https://github.com/AztecProtocol/aztec-packages/issues/7821)
[#7837](https://github.com/AztecProtocol/aztec-packages/issues/7837)
* Delay encrypted log hashing to base rollup
([#7808](https://github.com/AztecProtocol/aztec-packages/issues/7808))
([ffffa12](https://github.com/AztecProtocol/aztec-packages/commit/ffffa12c7bd6fbb6bff0878e791f1690a45fb39b))
* Delay l2l1 message hashing to the base rollup
([#7773](https://github.com/AztecProtocol/aztec-packages/issues/7773))
([c263c4e](https://github.com/AztecProtocol/aztec-packages/commit/c263c4e8c24a51c44184eafacc960e4d29aa4919))
* **docs:** Aztecnr notes docs
([#7168](https://github.com/AztecProtocol/aztec-packages/issues/7168))
([7572baf](https://github.com/AztecProtocol/aztec-packages/commit/7572baf45bbc48258eff9f08689af3b45f23ec29))
* **docs:** Fixes from audit
([#7640](https://github.com/AztecProtocol/aztec-packages/issues/7640))
([ef78eb5](https://github.com/AztecProtocol/aztec-packages/commit/ef78eb59210bda8aa4f6ee7872c6fe2eb123465c))
* **docs:** Restructure, recolour, elev8
([#7815](https://github.com/AztecProtocol/aztec-packages/issues/7815))
([f5e874e](https://github.com/AztecProtocol/aztec-packages/commit/f5e874e5f47c8c5e82f2bd8f7661ba79a5487aa1))
* Don't eagerly error on cast expressions
(https://github.com/noir-lang/noir/pull/5635)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Extend SMT Utils
([#7126](https://github.com/AztecProtocol/aztec-packages/issues/7126))
([cfb4aa8](https://github.com/AztecProtocol/aztec-packages/commit/cfb4aa8602c316003d018bf3192e2a13e36cacad))
* Flamegraph artifact cleanup
([#7869](https://github.com/AztecProtocol/aztec-packages/issues/7869))
([6f70bba](https://github.com/AztecProtocol/aztec-packages/commit/6f70bbae7bfbb1af99a0dea39fd865dc6d341ede))
* Flamegraphs for e2e
([#7836](https://github.com/AztecProtocol/aztec-packages/issues/7836))
([e5c6ced](https://github.com/AztecProtocol/aztec-packages/commit/e5c6ced2f6672655734c95b7543db4da573a023d))
* Force build images for deploy
([#7851](https://github.com/AztecProtocol/aztec-packages/issues/7851))
([0152c9a](https://github.com/AztecProtocol/aztec-packages/commit/0152c9a74123cbe2f1df9d819a7f3ae3b125f0d4))
* Hook up secondary calldata column in dsl
([#7759](https://github.com/AztecProtocol/aztec-packages/issues/7759))
([f0f28fc](https://github.com/AztecProtocol/aztec-packages/commit/f0f28fc24cfeba18f5c16c77a4505d16dc1e02df))
* Implement `Value::Type` in comptime interpreter
(https://github.com/noir-lang/noir/pull/5593)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Implement format strings in the comptime interpreter
(https://github.com/noir-lang/noir/pull/5596)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Let filenames in errors be relative to the current dir if possible
(https://github.com/noir-lang/noir/pull/5642)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Let LSP work will with code generated by macros
(https://github.com/noir-lang/noir/pull/5665)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Linking circuits with the databus
([#7707](https://github.com/AztecProtocol/aztec-packages/issues/7707))
([1c596ed](https://github.com/AztecProtocol/aztec-packages/commit/1c596eda3f09bea03467662fd98c6c222c97f182))
* LSP inlay type hints on lambda parameters
(https://github.com/noir-lang/noir/pull/5639)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Make token transfer be recursive
([#7730](https://github.com/AztecProtocol/aztec-packages/issues/7730))
([eb5a90a](https://github.com/AztecProtocol/aztec-packages/commit/eb5a90a955f5992898dec42e9c3c5122525b7ad8))
* Merge devnet chagnes to master
([#7822](https://github.com/AztecProtocol/aztec-packages/issues/7822))
([8021eda](https://github.com/AztecProtocol/aztec-packages/commit/8021eda6b5c6e6c518ff38bacdc828fcfab09465))
* Net updates
([#7843](https://github.com/AztecProtocol/aztec-packages/issues/7843))
([a614abd](https://github.com/AztecProtocol/aztec-packages/commit/a614abd6bef02b0a180f39e987ea3b7d4c6a63fd))
* New IVC class that better reflects the aztec architecture
([#7695](https://github.com/AztecProtocol/aztec-packages/issues/7695))
([f8a76c1](https://github.com/AztecProtocol/aztec-packages/commit/f8a76c1a65c7c25f49bf2d7b4ef5302a0d0fbd58))
* Non-hardcoded constants
([#7736](https://github.com/AztecProtocol/aztec-packages/issues/7736))
([51d73ce](https://github.com/AztecProtocol/aztec-packages/commit/51d73cee66b6558e1d720a27e9593ba25118d9c1))
* Note hashes as points
([#7618](https://github.com/AztecProtocol/aztec-packages/issues/7618))
([8ed8f92](https://github.com/AztecProtocol/aztec-packages/commit/8ed8f925a83c7f9e2a73c6377e8e2154a3b6ef36))
* Note preprocessor
([#7857](https://github.com/AztecProtocol/aztec-packages/issues/7857))
([215297c](https://github.com/AztecProtocol/aztec-packages/commit/215297c97e1aa450ee8d2afd9dbe916f1da8412a))
* Optimize constant array handling in brillig_gen
([#7661](https://github.com/AztecProtocol/aztec-packages/issues/7661))
([dff2ffb](https://github.com/AztecProtocol/aztec-packages/commit/dff2ffb81c8dab33567c1263cf412aacce89af66))
* Pass calldata ids to the backend
([#7875](https://github.com/AztecProtocol/aztec-packages/issues/7875))
([274858f](https://github.com/AztecProtocol/aztec-packages/commit/274858f6385b26ea935dcdcf7b2295562caae0f8))
* Plumbing for slot numbers
([#7663](https://github.com/AztecProtocol/aztec-packages/issues/7663))
([e7c1dc3](https://github.com/AztecProtocol/aztec-packages/commit/e7c1dc343eaaa9d126d18b7456c207ac50c43d39))
* Profile app circuits with megahonk
([#7737](https://github.com/AztecProtocol/aztec-packages/issues/7737))
([ef4217f](https://github.com/AztecProtocol/aztec-packages/commit/ef4217fb03f70ae8be433421d488d0a8f4d958fb))
* **profiler:** Add support for brillig functions in opcodes-flamegraph
([#7698](https://github.com/AztecProtocol/aztec-packages/issues/7698))
([55999ff](https://github.com/AztecProtocol/aztec-packages/commit/55999ffb796390997a55745da51e4c8b91f091e5))
* Remove 'comptime or separate crate' restriction on comptime code
(https://github.com/noir-lang/noir/pull/5609)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Removing nullifier from private FPC
([#7765](https://github.com/AztecProtocol/aztec-packages/issues/7765))
([5bcc136](https://github.com/AztecProtocol/aztec-packages/commit/5bcc1365830cb862e9d0be90fef9298083058c4a))
* Removing superfluous call to MSM
([#7708](https://github.com/AztecProtocol/aztec-packages/issues/7708))
([deaada0](https://github.com/AztecProtocol/aztec-packages/commit/deaada08f1d637b63ccde1b326f862348dbb1e02))
* Report gates and VKs of private protocol circuits with megahonk
([#7722](https://github.com/AztecProtocol/aztec-packages/issues/7722))
([2c03259](https://github.com/AztecProtocol/aztec-packages/commit/2c03259653c45d7f17086320a9ea76225d1595ed))
* Run block-proving jobs in parallel by forking world-state
([#7655](https://github.com/AztecProtocol/aztec-packages/issues/7655))
([d3c8237](https://github.com/AztecProtocol/aztec-packages/commit/d3c823705fb167d3e15f2c67bd92efd36716a9a3))
* Set the block size to 4 for prover net
([#7901](https://github.com/AztecProtocol/aztec-packages/issues/7901))
([3a6021c](https://github.com/AztecProtocol/aztec-packages/commit/3a6021c54515205d74908b708cb43102a2b8a6f7))
* Simulate, aliases, ECDSA R account contract + touchid wallet
([#7725](https://github.com/AztecProtocol/aztec-packages/issues/7725))
([811d62f](https://github.com/AztecProtocol/aztec-packages/commit/811d62faabd34fd1a0887372ef3f4e2d4ac4e0c1))
* Sort proving jobs by epoch number
([#7844](https://github.com/AztecProtocol/aztec-packages/issues/7844))
([95c14a9](https://github.com/AztecProtocol/aztec-packages/commit/95c14a91b312755550bba20eb5262ea70f9ce451))
* Split merge into recursive verification and proving
([#7801](https://github.com/AztecProtocol/aztec-packages/issues/7801))
([25c49bc](https://github.com/AztecProtocol/aztec-packages/commit/25c49bce2ad880d1ad9a3678f68431b0cce01dbe))
* Swap-or-not shuffle
([#7646](https://github.com/AztecProtocol/aztec-packages/issues/7646))
([f981290](https://github.com/AztecProtocol/aztec-packages/commit/f9812908e49747bd3ca0ee2f448f88d901a71cab))
* Sync from aztec-packages (https://github.com/noir-lang/noir/pull/5598)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Trigger deploys manually
([#7795](https://github.com/AztecProtocol/aztec-packages/issues/7795))
([cbb843e](https://github.com/AztecProtocol/aztec-packages/commit/cbb843e43769d549618792eff5223370fe40f4d5))
* Ts pedersen commit with offset
([#7699](https://github.com/AztecProtocol/aztec-packages/issues/7699))
([b2224b4](https://github.com/AztecProtocol/aztec-packages/commit/b2224b48190d33af5e78efa3a470503331b0371f))
* Turbofish in struct pattern
(https://github.com/noir-lang/noir/pull/5616)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Turbofish operator in struct constructor
(https://github.com/noir-lang/noir/pull/5607)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Turbofish operator on path segments
(https://github.com/noir-lang/noir/pull/5603)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Typing unfinalized partial notes
([#7742](https://github.com/AztecProtocol/aztec-packages/issues/7742))
([795b832](https://github.com/AztecProtocol/aztec-packages/commit/795b832d502107b9a35daca8c1ec44818cff49a2))
* Updated bot machine specs
([#7903](https://github.com/AztecProtocol/aztec-packages/issues/7903))
([7f0e57b](https://github.com/AztecProtocol/aztec-packages/commit/7f0e57b71badfb85fc0fd3d4f1e23c4d3456a770))
* Updated workflow
([#7919](https://github.com/AztecProtocol/aztec-packages/issues/7919))
([0cb7dcf](https://github.com/AztecProtocol/aztec-packages/commit/0cb7dcffddd9c3b080cf6813d8f0c166ac717c0f))
* Use poseidon for merkle tree hashing
([#7356](https://github.com/AztecProtocol/aztec-packages/issues/7356))
([2daf2ab](https://github.com/AztecProtocol/aztec-packages/commit/2daf2ab2ad6815588c2a62d8b7d540e0dcbff892))
* Use poseidon for structs hashing
([#7383](https://github.com/AztecProtocol/aztec-packages/issues/7383))
([71acc4e](https://github.com/AztecProtocol/aztec-packages/commit/71acc4e0e4462d4972d5910490f76a10e8f536af))
* Use poseidon for var args hash
([#7363](https://github.com/AztecProtocol/aztec-packages/issues/7363))
([832b86e](https://github.com/AztecProtocol/aztec-packages/commit/832b86e65f84e00c3ea9892df4b7c3eeb7eaf5ea))
* Use scopes in wallet calls
([#7749](https://github.com/AztecProtocol/aztec-packages/issues/7749))
([d04183c](https://github.com/AztecProtocol/aztec-packages/commit/d04183cd611caf4ea31aef64c95e2ae8e5b36d9a))


### Bug Fixes

* `NoMatchingImplFound` in comptime code only
(https://github.com/noir-lang/noir/pull/5617)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add boolean config helper
([#7884](https://github.com/AztecProtocol/aztec-packages/issues/7884))
([2f11584](https://github.com/AztecProtocol/aztec-packages/commit/2f115849d93a7a2180defc342de6c7fe02f80047))
* Added missing oracles, fix block production
([#7768](https://github.com/AztecProtocol/aztec-packages/issues/7768))
([7dca2aa](https://github.com/AztecProtocol/aztec-packages/commit/7dca2aa2b91c86b79e8f9eb2810fc980651256a4))
* Allow trailing comma when parsing where clauses
(https://github.com/noir-lang/noir/pull/5594)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Allow using Self for function calls
(https://github.com/noir-lang/noir/pull/5629)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Anvil block timestamp
([#7686](https://github.com/AztecProtocol/aztec-packages/issues/7686))
([dc8ad6e](https://github.com/AztecProtocol/aztec-packages/commit/dc8ad6ee552c98d14eb68484c0ad3cf42d2995cd))
* **avm:** Correctly build spike vm
([#7726](https://github.com/AztecProtocol/aztec-packages/issues/7726))
([0c1d98f](https://github.com/AztecProtocol/aztec-packages/commit/0c1d98ff53ff0d39956d9837ce7b32cd75e860c3))
* Avoid initializing wires and selectors redundantly in trace
([#7895](https://github.com/AztecProtocol/aztec-packages/issues/7895))
([4be1833](https://github.com/AztecProtocol/aztec-packages/commit/4be18337082aa076d0cc88d5e11a5ebb2cb83631))
* **bb.js:** Account for extra gates in the c bind circuit size estimate
([#7800](https://github.com/AztecProtocol/aztec-packages/issues/7800))
([7b90699](https://github.com/AztecProtocol/aztec-packages/commit/7b90699fdbebcb00a06f396e8263a9ffe156fbc2))
* **bb:** Univariate-ff subtraction
([#7905](https://github.com/AztecProtocol/aztec-packages/issues/7905))
([e29f042](https://github.com/AztecProtocol/aztec-packages/commit/e29f042ccfb02f22ef63b3b82f43be2e4388902d))
* Call cmd secret key
([#7907](https://github.com/AztecProtocol/aztec-packages/issues/7907))
([3afe9f8](https://github.com/AztecProtocol/aztec-packages/commit/3afe9f81ffc0e2061b4efde0c4ffa9f40c15d614))
* Capture devnet cli errors
([#7685](https://github.com/AztecProtocol/aztec-packages/issues/7685))
([19cdf01](https://github.com/AztecProtocol/aztec-packages/commit/19cdf01b44857d5e087c3ca7f804bd471e23d8e0))
* Checking funded amount is enough
([#7648](https://github.com/AztecProtocol/aztec-packages/issues/7648))
([55a39ac](https://github.com/AztecProtocol/aztec-packages/commit/55a39ac84367df240d4bb848fb3b15a5add11691))
* **ci:** Build-images rebuild detection
([#7788](https://github.com/AztecProtocol/aztec-packages/issues/7788))
([f2d6856](https://github.com/AztecProtocol/aztec-packages/commit/f2d6856dfbf3ce54cc06a709a530e7aa3ca044a6))
* **ci:** Fix circle-ci issue
([#7734](https://github.com/AztecProtocol/aztec-packages/issues/7734))
([76acff9](https://github.com/AztecProtocol/aztec-packages/commit/76acff9a51190fd2faddd3913d625509d545702a))
* Commonly occurring typo
([#7807](https://github.com/AztecProtocol/aztec-packages/issues/7807))
([e3cc7d0](https://github.com/AztecProtocol/aztec-packages/commit/e3cc7d0fa0d842edcd24f1981b687cbdf057ce1a))
* Correct span for prefix operator
(https://github.com/noir-lang/noir/pull/5624)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Create proving job queue when prover node started with no agents
([#7828](https://github.com/AztecProtocol/aztec-packages/issues/7828))
([e2feaf8](https://github.com/AztecProtocol/aztec-packages/commit/e2feaf8c0613b2b5adfd496a94e1bd58296768f4))
* Default config
([#7848](https://github.com/AztecProtocol/aztec-packages/issues/7848))
([78ae6b4](https://github.com/AztecProtocol/aztec-packages/commit/78ae6b4f50cd0431c5dbd938c0cd791db5e2de4d))
* Deflatten databus visibilities
([#7761](https://github.com/AztecProtocol/aztec-packages/issues/7761))
([36eb4c8](https://github.com/AztecProtocol/aztec-packages/commit/36eb4c87bf44592385341115162520863530d9a4))
* DEPLOY_AZTEC_CONTRACTS parsing
([#7877](https://github.com/AztecProtocol/aztec-packages/issues/7877))
([e437dba](https://github.com/AztecProtocol/aztec-packages/commit/e437dbaf258adc9f49399ed8ed16bb424b234bf5))
* Devnet CI issues
([#7673](https://github.com/AztecProtocol/aztec-packages/issues/7673))
([729b36f](https://github.com/AztecProtocol/aztec-packages/commit/729b36f2c1432d3b62d2cb782f82b8b18411c92b))
* Ensure dummy values are on the curve for MSM
([#7653](https://github.com/AztecProtocol/aztec-packages/issues/7653))
([11f3885](https://github.com/AztecProtocol/aztec-packages/commit/11f3885d11237dbd3e203d07bf4cdb7df316e07a))
* Error on duplicate struct field
(https://github.com/noir-lang/noir/pull/5585)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Error on incorrect generic count for impl and type alias
(https://github.com/noir-lang/noir/pull/5623)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Error on unbound generics in structs
(https://github.com/noir-lang/noir/pull/5619)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Filter comptime globals (https://github.com/noir-lang/noir/pull/5538)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Fix ssh auth sock
([#7885](https://github.com/AztecProtocol/aztec-packages/issues/7885))
([c3292d7](https://github.com/AztecProtocol/aztec-packages/commit/c3292d7a4a42f5ff97f8f871f869f37e6c842ff1))
* Fixed ssh_auth_sock when it's not set
([#7865](https://github.com/AztecProtocol/aztec-packages/issues/7865))
([0b2ae4c](https://github.com/AztecProtocol/aztec-packages/commit/0b2ae4c20a25aaf01fc306d79b44ba0aa593458b))
* Flamegraph script issue
([#7886](https://github.com/AztecProtocol/aztec-packages/issues/7886))
([43fff40](https://github.com/AztecProtocol/aztec-packages/commit/43fff405ba3d60d5a498ed731b52a6942ffeb3df))
* Handle properly invalid witness assignment in ec add
([#7690](https://github.com/AztecProtocol/aztec-packages/issues/7690))
([6c19c7e](https://github.com/AztecProtocol/aztec-packages/commit/6c19c7eb91acc47106549fa7943f59d2dca3e0ce))
* Hash nonce to note hashes created in public
([#7715](https://github.com/AztecProtocol/aztec-packages/issues/7715))
([6e8eecd](https://github.com/AztecProtocol/aztec-packages/commit/6e8eecdbe01c23c33e9cecf865fbe943b478c361))
* Increase srs
([#7754](https://github.com/AztecProtocol/aztec-packages/issues/7754))
([79613a7](https://github.com/AztecProtocol/aztec-packages/commit/79613a7dfa4d2fbd07e9738d35082dc7b097a396))
* Key-rotation related issues in `TokenWithRefunds`
([#7631](https://github.com/AztecProtocol/aztec-packages/issues/7631))
([790ea5a](https://github.com/AztecProtocol/aztec-packages/commit/790ea5aadb212408ff609763898b54db4e45a784)),
closes
[#7323](https://github.com/AztecProtocol/aztec-packages/issues/7323)
[#7324](https://github.com/AztecProtocol/aztec-packages/issues/7324)
[#7326](https://github.com/AztecProtocol/aztec-packages/issues/7326)
* Let std::unsafe::zeroed() work for slices
(https://github.com/noir-lang/noir/pull/5592)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Let trait calls work in globals
(https://github.com/noir-lang/noir/pull/5602)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Load l1 addresses in prover node
([#7858](https://github.com/AztecProtocol/aztec-packages/issues/7858))
([0c3de7e](https://github.com/AztecProtocol/aztec-packages/commit/0c3de7e2b5c9ae6782aa94bffb6b69c6efa42892))
* Lookup trait constraints methods in composite types
(https://github.com/noir-lang/noir/pull/5595)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* More fixes for networks
([#7870](https://github.com/AztecProtocol/aztec-packages/issues/7870))
([55c33bd](https://github.com/AztecProtocol/aztec-packages/commit/55c33bd906a26f10a79e13b2542b1281ffbdb99d))
* Parse block and if statements independently of expressions in
statements (https://github.com/noir-lang/noir/pull/5634)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Parse booleans
([#7922](https://github.com/AztecProtocol/aztec-packages/issues/7922))
([65583e3](https://github.com/AztecProtocol/aztec-packages/commit/65583e3a841336cfdd1866e0ba6c44b0a14d3398))
* Properly schedule the tube proof and don't prove it twice
([#7913](https://github.com/AztecProtocol/aztec-packages/issues/7913))
([8582ef2](https://github.com/AztecProtocol/aztec-packages/commit/8582ef2c3903352d8793a5bc6dc6c3e3a3275d90))
* Show pending tx status
([#7887](https://github.com/AztecProtocol/aztec-packages/issues/7887))
([088aae5](https://github.com/AztecProtocol/aztec-packages/commit/088aae58dc1484739c2812315096b8de4fd720be))
* Skip squashing of revertible nullifier and non-revertible note hash
([#7624](https://github.com/AztecProtocol/aztec-packages/issues/7624))
([76ef298](https://github.com/AztecProtocol/aztec-packages/commit/76ef29825e9e3ef470b8801e5627c26d952644eb))
* Speed up LSP (https://github.com/noir-lang/noir/pull/5650)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Use correct PG degree adjustment in log deriv lookup relation
([#7863](https://github.com/AztecProtocol/aztec-packages/issues/7863))
([87c940d](https://github.com/AztecProtocol/aztec-packages/commit/87c940d4b92f2ed658ba96fc7c9d603e8e37c67c))
* Use curl instead of cast in mainnet fork script
([#7792](https://github.com/AztecProtocol/aztec-packages/issues/7792))
([1964870](https://github.com/AztecProtocol/aztec-packages/commit/196487040226087ece0d4c410eceea840d5a3739))


### Miscellaneous

* `TokenWithRefunds` optimizations
([#7628](https://github.com/AztecProtocol/aztec-packages/issues/7628))
([1dd4523](https://github.com/AztecProtocol/aztec-packages/commit/1dd4523bce2e005bd53c1d42d5c334f8d4322e95)),
closes
[#7606](https://github.com/AztecProtocol/aztec-packages/issues/7606)
* Add array and slice control flow tests
(https://github.com/noir-lang/noir/pull/5558)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Add compose template for provernet-like env
([#7880](https://github.com/AztecProtocol/aztec-packages/issues/7880))
([27f15ae](https://github.com/AztecProtocol/aztec-packages/commit/27f15aeb09b1e6551a429ec0ff90d2b17b593e58))
* Add optional artifical delay for test prover
([#7832](https://github.com/AztecProtocol/aztec-packages/issues/7832))
([4d0c027](https://github.com/AztecProtocol/aztec-packages/commit/4d0c027c980e47b9cabc919c81562d5e0ce586ca))
* Adjusted flavors and relation types to zk sumcheck
([#7500](https://github.com/AztecProtocol/aztec-packages/issues/7500))
([b7efd07](https://github.com/AztecProtocol/aztec-packages/commit/b7efd079a679c492596bb455136661aca4cf582d))
* **avm:** Bump the timeout of the AVM full tests to 50 minutes
([#7776](https://github.com/AztecProtocol/aztec-packages/issues/7776))
([760af5d](https://github.com/AztecProtocol/aztec-packages/commit/760af5d8367438ec106d7162abcdce236cbf4310))
* **avm:** Bump timeout for AVM full tests github action to 60 minutes
([#7782](https://github.com/AztecProtocol/aztec-packages/issues/7782))
([cabbd5f](https://github.com/AztecProtocol/aztec-packages/commit/cabbd5ffd26a4f392a21ea458631213d24e418f5))
* **avm:** Codegen improvements
([#7703](https://github.com/AztecProtocol/aztec-packages/issues/7703))
([f26bb32](https://github.com/AztecProtocol/aztec-packages/commit/f26bb32abcdcea4450f4867d2d88efbbcd468c01))
* **avm:** Delete generated dir
([#7741](https://github.com/AztecProtocol/aztec-packages/issues/7741))
([f875e1e](https://github.com/AztecProtocol/aztec-packages/commit/f875e1e656950e6048446a52fcac45313966a822))
* **avm:** Do not generate subtrace row
([#7894](https://github.com/AztecProtocol/aztec-packages/issues/7894))
([0d95d9e](https://github.com/AztecProtocol/aztec-packages/commit/0d95d9eee85cdc0cd0a7cdf60cb8a349b8af27da))
* **avm:** Make fixed tables use constant polys
([#7744](https://github.com/AztecProtocol/aztec-packages/issues/7744))
([4b793b0](https://github.com/AztecProtocol/aztec-packages/commit/4b793b014b31382c10ea0ff7c35bd324b834410a))
* **avm:** No fake rows in main trace
([#7823](https://github.com/AztecProtocol/aztec-packages/issues/7823))
([5ff3554](https://github.com/AztecProtocol/aztec-packages/commit/5ff3554ace81831d0a561b6a4e186b48edb12e5e))
* **avm:** Rearrange files
([#7723](https://github.com/AztecProtocol/aztec-packages/issues/7723))
([3270662](https://github.com/AztecProtocol/aztec-packages/commit/3270662882bf98d81cf4a897957fb65cbbaa2464))
* **avm:** Tweak check-circuit settings
([#7872](https://github.com/AztecProtocol/aztec-packages/issues/7872))
([ff4bb4f](https://github.com/AztecProtocol/aztec-packages/commit/ff4bb4f7ba2b63f8e460b1bacbdf0410f161f7c6))
* **avm:** Update stats
([#7701](https://github.com/AztecProtocol/aztec-packages/issues/7701))
([1b7d27e](https://github.com/AztecProtocol/aztec-packages/commit/1b7d27e310c70a211f30816b42a879118378a049))
* **avm:** Vm compilation metrics
([#7704](https://github.com/AztecProtocol/aztec-packages/issues/7704))
([0d83cde](https://github.com/AztecProtocol/aztec-packages/commit/0d83cde126789016cc15087b7ff0cfb26eb31818))
* **bb:** Define missing univ-fr operators
([#7859](https://github.com/AztecProtocol/aztec-packages/issues/7859))
([30d226e](https://github.com/AztecProtocol/aztec-packages/commit/30d226e9db291b6daaa30462d184aece445a7d9f))
* Card contract cleanup
([#7874](https://github.com/AztecProtocol/aztec-packages/issues/7874))
([7d26fc6](https://github.com/AztecProtocol/aztec-packages/commit/7d26fc6a61c4bcae3e283a2a8178082cc68e7007))
* **ci:** Report memory and cpu usage in e2e bench
([#7735](https://github.com/AztecProtocol/aztec-packages/issues/7735))
([36aa6fc](https://github.com/AztecProtocol/aztec-packages/commit/36aa6fc28504e5f838eb21e6fa99afc849e218e9))
* **ci:** Report memory usage in bb-native-tests
([#7713](https://github.com/AztecProtocol/aztec-packages/issues/7713))
([2631fb5](https://github.com/AztecProtocol/aztec-packages/commit/2631fb5ce0d99dcba40a44b61d4feb61cd4d0922))
* Display comptime assertion errors, not Debug
(https://github.com/noir-lang/noir/pull/5605)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Add Writing Noir doc
(https://github.com/noir-lang/noir/pull/5456)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Minor update to TXE docs page
([#7757](https://github.com/AztecProtocol/aztec-packages/issues/7757))
([a65f79b](https://github.com/AztecProtocol/aztec-packages/commit/a65f79bff890947052016b6756c3296a5a1f96ce))
* **docs:** Nasty linky (https://github.com/noir-lang/noir/pull/5600)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Update proving backend related docs
(https://github.com/noir-lang/noir/pull/5601)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **docs:** Update web app page to use nargo v 0.31
(https://github.com/noir-lang/noir/pull/5652)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* **github:** Switch to organization-wide Issue templates
(https://github.com/noir-lang/noir/pull/5622)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Handle exceptions in bot runner
([#7679](https://github.com/AztecProtocol/aztec-packages/issues/7679))
([dd6176b](https://github.com/AztecProtocol/aztec-packages/commit/dd6176b444ae1b9f8313af98f7ebd5eeb2f31ed7)),
closes
[#7658](https://github.com/AztecProtocol/aztec-packages/issues/7658)
* Improve error reporting in profiler
([#7712](https://github.com/AztecProtocol/aztec-packages/issues/7712))
([628782a](https://github.com/AztecProtocol/aztec-packages/commit/628782ab6e259bd80ac2b72296b858ccb0a15154))
* Initializer nullifier read in the kernel
([#7876](https://github.com/AztecProtocol/aztec-packages/issues/7876))
([fda7c3e](https://github.com/AztecProtocol/aztec-packages/commit/fda7c3e2b5b01dc4a55b7e79ca75f057e2907d20))
* Lldb bb debugging helper script
([#7627](https://github.com/AztecProtocol/aztec-packages/issues/7627))
([f35786a](https://github.com/AztecProtocol/aztec-packages/commit/f35786a34659a2691d9810517fa4e4e89b99111a))
* Log name of current e2e test
([#7637](https://github.com/AztecProtocol/aztec-packages/issues/7637))
([20c555a](https://github.com/AztecProtocol/aztec-packages/commit/20c555a85142ed54b691296740ba6b22d81750c0))
* Make registry ownable
([#7853](https://github.com/AztecProtocol/aztec-packages/issues/7853))
([043e219](https://github.com/AztecProtocol/aztec-packages/commit/043e2191ee302720eb6c9f400eb7cbd4f7a8f735)),
closes
[#7837](https://github.com/AztecProtocol/aztec-packages/issues/7837)
* Merge back to master
([#7785](https://github.com/AztecProtocol/aztec-packages/issues/7785))
([2ad6e6f](https://github.com/AztecProtocol/aztec-packages/commit/2ad6e6fd60c98cc5888f6f64bcd774d87ff881e8))
* Minor logging tweaks
([#7879](https://github.com/AztecProtocol/aztec-packages/issues/7879))
([00c35c0](https://github.com/AztecProtocol/aztec-packages/commit/00c35c0f7c96c5eebecf66088d2fcd9aa3da7693))
* Native to fee juice
([#7911](https://github.com/AztecProtocol/aztec-packages/issues/7911))
([32b4c6e](https://github.com/AztecProtocol/aztec-packages/commit/32b4c6ed75387759b3d84df723a52679894feb2d))
* Nicer way to fetch slots in `TokenWithRefunds`
([#7797](https://github.com/AztecProtocol/aztec-packages/issues/7797))
([9fc38b9](https://github.com/AztecProtocol/aztec-packages/commit/9fc38b9147a51b8e5b84ba475ef8b2a3492727d3))
* Rename fee juice
([#7793](https://github.com/AztecProtocol/aztec-packages/issues/7793))
([24b3e05](https://github.com/AztecProtocol/aztec-packages/commit/24b3e05a9bfca29f7741de49fe12f73cc219953b)),
closes
[#7570](https://github.com/AztecProtocol/aztec-packages/issues/7570)
* Renaming private token as token with refunds
([#7626](https://github.com/AztecProtocol/aztec-packages/issues/7626))
([43a83ae](https://github.com/AztecProtocol/aztec-packages/commit/43a83aec4572f17444ba9d6d1e4c141dbbc07a76))
* Replace relative paths to noir-protocol-circuits
([a801da9](https://github.com/AztecProtocol/aztec-packages/commit/a801da98d1b6ca90d3f2ced5135992db30cd13f0))
* Replace relative paths to noir-protocol-circuits
([4ac261d](https://github.com/AztecProtocol/aztec-packages/commit/4ac261da0f30c3d202d33b3c2e657a14c2f84bc8))
* Replace relative paths to noir-protocol-circuits
([6b1e5c8](https://github.com/AztecProtocol/aztec-packages/commit/6b1e5c8db30dd526448d22ec9e4eeba6a89e309e))
* Replace relative paths to noir-protocol-circuits
([5477450](https://github.com/AztecProtocol/aztec-packages/commit/54774504fbd8cb1de53de5064c5d59495f8fc7c0))
* Replace relative paths to noir-protocol-circuits
([e6de663](https://github.com/AztecProtocol/aztec-packages/commit/e6de6635baec63f3c563c332ccb71e2f5803d8be))
* Replace relative paths to noir-protocol-circuits
([bf2ad45](https://github.com/AztecProtocol/aztec-packages/commit/bf2ad4552ce561c8cb7038c40c6560b6da86bd43))
* Replace relative paths to noir-protocol-circuits
([7c42b89](https://github.com/AztecProtocol/aztec-packages/commit/7c42b8987edcb09447bc8feeb99e74bc8a8f05c6))
* Replace relative paths to noir-protocol-circuits
([bcf8b18](https://github.com/AztecProtocol/aztec-packages/commit/bcf8b1805c4d9c315eba9bfb07f5302649c5bad9))
* Replace relative paths to noir-protocol-circuits
([aeaed12](https://github.com/AztecProtocol/aztec-packages/commit/aeaed12376bbbb21ad25fa2301376b3740767649))
* Replace relative paths to noir-protocol-circuits
([3d9696d](https://github.com/AztecProtocol/aztec-packages/commit/3d9696d89ae9e1822cf685fd94570c6ba11916ce))
* Replace relative paths to noir-protocol-circuits
([7e36deb](https://github.com/AztecProtocol/aztec-packages/commit/7e36deb4d15a83b402c1d9a4efe29049e5597f36))
* Slot part of note hiding point preimage
([#7767](https://github.com/AztecProtocol/aztec-packages/issues/7767))
([109f685](https://github.com/AztecProtocol/aztec-packages/commit/109f6850ae98aaf67fe021b36a4fee6c9c0b9b93))
* Switch `Value::TraitConstraint` to a resolved trait constraint
(https://github.com/noir-lang/noir/pull/5618)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Test blackbox binary op instructions
(https://github.com/noir-lang/noir/pull/5484)
([22845ac](https://github.com/AztecProtocol/aztec-packages/commit/22845acc6a6b36cc8add40950b8e003754db3cf9))
* Trim client IVC block sizes to fit e2e test
([#7783](https://github.com/AztecProtocol/aztec-packages/issues/7783))
([641229e](https://github.com/AztecProtocol/aztec-packages/commit/641229ec6b87ed7db47ef54a810accc4e9b66615))
* Updated tx per block config
([#7794](https://github.com/AztecProtocol/aztec-packages/issues/7794))
([e74108d](https://github.com/AztecProtocol/aztec-packages/commit/e74108d4672cd003851fea3c9423247e7c9f941b))
* Validate outputs in kernel circuits
([#7706](https://github.com/AztecProtocol/aztec-packages/issues/7706))
([9a98289](https://github.com/AztecProtocol/aztec-packages/commit/9a98289bb031f5c3435ec9d7e5c086ed6f26bfc9))
* **vc:** P2p message cleanup + attestaion + proposal types
([#7733](https://github.com/AztecProtocol/aztec-packages/issues/7733))
([392cdb1](https://github.com/AztecProtocol/aztec-packages/commit/392cdb1cc3d228bd0b6586565bc0374db4962411))
</details>

<details><summary>barretenberg: 0.48.0</summary>

##
[0.48.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg-v0.47.1...barretenberg-v0.48.0)
(2024-08-12)


### Features

* **avm:** Poseidon2 constraints
([#7269](https://github.com/AztecProtocol/aztec-packages/issues/7269))
([bd5a26e](https://github.com/AztecProtocol/aztec-packages/commit/bd5a26eed42a8e23e2c9ea158419836a2b0b3333))
* **avm:** Support aliases in bb-pilcom
([#7904](https://github.com/AztecProtocol/aztec-packages/issues/7904))
([09e317d](https://github.com/AztecProtocol/aztec-packages/commit/09e317dee9625f61ef9eb7cc488bdb5ff1d62612))
* **avm:** Support skippable relations
([#7750](https://github.com/AztecProtocol/aztec-packages/issues/7750))
([89d7b37](https://github.com/AztecProtocol/aztec-packages/commit/89d7b3707dcbe4cc684be7dcfdd8c356519067b0))
* **avm:** Update flavor codegen
([#7917](https://github.com/AztecProtocol/aztec-packages/issues/7917))
([7f1fa2c](https://github.com/AztecProtocol/aztec-packages/commit/7f1fa2cbb52637c1f7471ca1d20bd62b16b51c7a))
* AztecIvc benchmark suite
([#7864](https://github.com/AztecProtocol/aztec-packages/issues/7864))
([b7276ab](https://github.com/AztecProtocol/aztec-packages/commit/b7276ab7fc1f7abe26cc082eaac901c371217b2a))
* **bb:** Integrate tracy memory/cpu profiler
([#7718](https://github.com/AztecProtocol/aztec-packages/issues/7718))
([67efb8b](https://github.com/AztecProtocol/aztec-packages/commit/67efb8b13f8009b55d540b85b849a2172c28edd8))
* **bb:** Optimize tuple creation
([#7770](https://github.com/AztecProtocol/aztec-packages/issues/7770))
([a09636c](https://github.com/AztecProtocol/aztec-packages/commit/a09636c88dc1db8038e3c9fa68cc7c7d2ddf8894))
* CLI wallet initial version
([#7651](https://github.com/AztecProtocol/aztec-packages/issues/7651))
([83f8d9c](https://github.com/AztecProtocol/aztec-packages/commit/83f8d9c5e4f53b3691d5a1168c69a160ab657139))
* Consistent handling of point at infinity in transcript
([#7709](https://github.com/AztecProtocol/aztec-packages/issues/7709))
([7a763c0](https://github.com/AztecProtocol/aztec-packages/commit/7a763c07a29229ba1b1c4f8667e797c2a160022f))
* Extend SMT Utils
([#7126](https://github.com/AztecProtocol/aztec-packages/issues/7126))
([cfb4aa8](https://github.com/AztecProtocol/aztec-packages/commit/cfb4aa8602c316003d018bf3192e2a13e36cacad))
* Hook up secondary calldata column in dsl
([#7759](https://github.com/AztecProtocol/aztec-packages/issues/7759))
([f0f28fc](https://github.com/AztecProtocol/aztec-packages/commit/f0f28fc24cfeba18f5c16c77a4505d16dc1e02df))
* Linking circuits with the databus
([#7707](https://github.com/AztecProtocol/aztec-packages/issues/7707))
([1c596ed](https://github.com/AztecProtocol/aztec-packages/commit/1c596eda3f09bea03467662fd98c6c222c97f182))
* New IVC class that better reflects the aztec architecture
([#7695](https://github.com/AztecProtocol/aztec-packages/issues/7695))
([f8a76c1](https://github.com/AztecProtocol/aztec-packages/commit/f8a76c1a65c7c25f49bf2d7b4ef5302a0d0fbd58))
* Pass calldata ids to the backend
([#7875](https://github.com/AztecProtocol/aztec-packages/issues/7875))
([274858f](https://github.com/AztecProtocol/aztec-packages/commit/274858f6385b26ea935dcdcf7b2295562caae0f8))
* Plumbing for slot numbers
([#7663](https://github.com/AztecProtocol/aztec-packages/issues/7663))
([e7c1dc3](https://github.com/AztecProtocol/aztec-packages/commit/e7c1dc343eaaa9d126d18b7456c207ac50c43d39))
* Report gates and VKs of private protocol circuits with megahonk
([#7722](https://github.com/AztecProtocol/aztec-packages/issues/7722))
([2c03259](https://github.com/AztecProtocol/aztec-packages/commit/2c03259653c45d7f17086320a9ea76225d1595ed))
* Split merge into recursive verification and proving
([#7801](https://github.com/AztecProtocol/aztec-packages/issues/7801))
([25c49bc](https://github.com/AztecProtocol/aztec-packages/commit/25c49bce2ad880d1ad9a3678f68431b0cce01dbe))
* Ts pedersen commit with offset
([#7699](https://github.com/AztecProtocol/aztec-packages/issues/7699))
([b2224b4](https://github.com/AztecProtocol/aztec-packages/commit/b2224b48190d33af5e78efa3a470503331b0371f))
* Use poseidon for merkle tree hashing
([#7356](https://github.com/AztecProtocol/aztec-packages/issues/7356))
([2daf2ab](https://github.com/AztecProtocol/aztec-packages/commit/2daf2ab2ad6815588c2a62d8b7d540e0dcbff892))


### Bug Fixes

* **avm:** Correctly build spike vm
([#7726](https://github.com/AztecProtocol/aztec-packages/issues/7726))
([0c1d98f](https://github.com/AztecProtocol/aztec-packages/commit/0c1d98ff53ff0d39956d9837ce7b32cd75e860c3))
* Avoid initializing wires and selectors redundantly in trace
([#7895](https://github.com/AztecProtocol/aztec-packages/issues/7895))
([4be1833](https://github.com/AztecProtocol/aztec-packages/commit/4be18337082aa076d0cc88d5e11a5ebb2cb83631))
* **bb.js:** Account for extra gates in the c bind circuit size estimate
([#7800](https://github.com/AztecProtocol/aztec-packages/issues/7800))
([7b90699](https://github.com/AztecProtocol/aztec-packages/commit/7b90699fdbebcb00a06f396e8263a9ffe156fbc2))
* **bb:** Univariate-ff subtraction
([#7905](https://github.com/AztecProtocol/aztec-packages/issues/7905))
([e29f042](https://github.com/AztecProtocol/aztec-packages/commit/e29f042ccfb02f22ef63b3b82f43be2e4388902d))
* **ci:** Fix circle-ci issue
([#7734](https://github.com/AztecProtocol/aztec-packages/issues/7734))
([76acff9](https://github.com/AztecProtocol/aztec-packages/commit/76acff9a51190fd2faddd3913d625509d545702a))
* Commonly occurring typo
([#7807](https://github.com/AztecProtocol/aztec-packages/issues/7807))
([e3cc7d0](https://github.com/AztecProtocol/aztec-packages/commit/e3cc7d0fa0d842edcd24f1981b687cbdf057ce1a))
* Ensure dummy values are on the curve for MSM
([#7653](https://github.com/AztecProtocol/aztec-packages/issues/7653))
([11f3885](https://github.com/AztecProtocol/aztec-packages/commit/11f3885d11237dbd3e203d07bf4cdb7df316e07a))
* Handle properly invalid witness assignment in ec add
([#7690](https://github.com/AztecProtocol/aztec-packages/issues/7690))
([6c19c7e](https://github.com/AztecProtocol/aztec-packages/commit/6c19c7eb91acc47106549fa7943f59d2dca3e0ce))
* Increase srs
([#7754](https://github.com/AztecProtocol/aztec-packages/issues/7754))
([79613a7](https://github.com/AztecProtocol/aztec-packages/commit/79613a7dfa4d2fbd07e9738d35082dc7b097a396))
* Use correct PG degree adjustment in log deriv lookup relation
([#7863](https://github.com/AztecProtocol/aztec-packages/issues/7863))
([87c940d](https://github.com/AztecProtocol/aztec-packages/commit/87c940d4b92f2ed658ba96fc7c9d603e8e37c67c))


### Miscellaneous

* Adjusted flavors and relation types to zk sumcheck
([#7500](https://github.com/AztecProtocol/aztec-packages/issues/7500))
([b7efd07](https://github.com/AztecProtocol/aztec-packages/commit/b7efd079a679c492596bb455136661aca4cf582d))
* **avm:** Codegen improvements
([#7703](https://github.com/AztecProtocol/aztec-packages/issues/7703))
([f26bb32](https://github.com/AztecProtocol/aztec-packages/commit/f26bb32abcdcea4450f4867d2d88efbbcd468c01))
* **avm:** Do not generate subtrace row
([#7894](https://github.com/AztecProtocol/aztec-packages/issues/7894))
([0d95d9e](https://github.com/AztecProtocol/aztec-packages/commit/0d95d9eee85cdc0cd0a7cdf60cb8a349b8af27da))
* **avm:** Make fixed tables use constant polys
([#7744](https://github.com/AztecProtocol/aztec-packages/issues/7744))
([4b793b0](https://github.com/AztecProtocol/aztec-packages/commit/4b793b014b31382c10ea0ff7c35bd324b834410a))
* **avm:** No fake rows in main trace
([#7823](https://github.com/AztecProtocol/aztec-packages/issues/7823))
([5ff3554](https://github.com/AztecProtocol/aztec-packages/commit/5ff3554ace81831d0a561b6a4e186b48edb12e5e))
* **avm:** Rearrange files
([#7723](https://github.com/AztecProtocol/aztec-packages/issues/7723))
([3270662](https://github.com/AztecProtocol/aztec-packages/commit/3270662882bf98d81cf4a897957fb65cbbaa2464))
* **avm:** Tweak check-circuit settings
([#7872](https://github.com/AztecProtocol/aztec-packages/issues/7872))
([ff4bb4f](https://github.com/AztecProtocol/aztec-packages/commit/ff4bb4f7ba2b63f8e460b1bacbdf0410f161f7c6))
* **avm:** Update stats
([#7701](https://github.com/AztecProtocol/aztec-packages/issues/7701))
([1b7d27e](https://github.com/AztecProtocol/aztec-packages/commit/1b7d27e310c70a211f30816b42a879118378a049))
* **avm:** Vm compilation metrics
([#7704](https://github.com/AztecProtocol/aztec-packages/issues/7704))
([0d83cde](https://github.com/AztecProtocol/aztec-packages/commit/0d83cde126789016cc15087b7ff0cfb26eb31818))
* **bb:** Define missing univ-fr operators
([#7859](https://github.com/AztecProtocol/aztec-packages/issues/7859))
([30d226e](https://github.com/AztecProtocol/aztec-packages/commit/30d226e9db291b6daaa30462d184aece445a7d9f))
* Lldb bb debugging helper script
([#7627](https://github.com/AztecProtocol/aztec-packages/issues/7627))
([f35786a](https://github.com/AztecProtocol/aztec-packages/commit/f35786a34659a2691d9810517fa4e4e89b99111a))
* Trim client IVC block sizes to fit e2e test
([#7783](https://github.com/AztecProtocol/aztec-packages/issues/7783))
([641229e](https://github.com/AztecProtocol/aztec-packages/commit/641229ec6b87ed7db47ef54a810accc4e9b66615))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
github-merge-queue bot pushed a commit that referenced this pull request Sep 13, 2024
:robot: I have created a release *beep* *boop*
---


<details><summary>0.34.0</summary>

## [0.34.0](https://github.com/noir-lang/noir/compare/v0.33.0...v0.34.0)
(2024-09-13)


### ⚠ BREAKING CHANGES

* Add Not instruction in brillig
(https://github.com/AztecProtocol/aztec-packages/pull/8488)
* **avm:** variants for SET opcode
(https://github.com/AztecProtocol/aztec-packages/pull/8441)
* **avm/brillig:** take addresses in calldatacopy
(https://github.com/AztecProtocol/aztec-packages/pull/8388)
* Do not encode assertion strings in the programs
(https://github.com/AztecProtocol/aztec-packages/pull/8315)
* return arrays instead of slices from `to_be_radix` functions
([#5851](https://github.com/noir-lang/noir/issues/5851))
* Check unused generics are bound
([#5840](https://github.com/noir-lang/noir/issues/5840))

### Features

* (bb) 128-bit challenges
(https://github.com/AztecProtocol/aztec-packages/pull/8406)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* (LSP) suggest names that match any part of the current prefix
([#5752](https://github.com/noir-lang/noir/issues/5752))
([cb0d490](https://github.com/noir-lang/noir/commit/cb0d49017a3b592afc2002e592a61d33bf3ac3a4))
* `Module::add_item`
([#5947](https://github.com/noir-lang/noir/issues/5947))
([af50a7b](https://github.com/noir-lang/noir/commit/af50a7b3ad511de68c584e65ec4eec8b703bbc14))
* Add `Expr::as_any_integer` and `Expr::as_member_access`
([#5742](https://github.com/noir-lang/noir/issues/5742))
([6266755](https://github.com/noir-lang/noir/commit/626675567bb0bfff3c7984ed7f75c488e441ef98))
* Add `Expr::as_array`, `Expr::as_repeated_element_array` and same for
slice ([#5750](https://github.com/noir-lang/noir/issues/5750))
([f44e0b3](https://github.com/noir-lang/noir/commit/f44e0b3ebfb30e9323ebf2d537830ea64d59488c))
* Add `Expr::as_assert_eq`
([#5880](https://github.com/noir-lang/noir/issues/5880))
([88f7858](https://github.com/noir-lang/noir/commit/88f785803ddb1a7d395a899b65e500e46bba1a5d))
* Add `Expr::as_assert`
([#5857](https://github.com/noir-lang/noir/issues/5857))
([4e4ad26](https://github.com/noir-lang/noir/commit/4e4ad26d56e6a487ca446ea4e1732c6af04e1410))
* Add `Expr::as_binary_op`
([#5734](https://github.com/noir-lang/noir/issues/5734))
([73a9f51](https://github.com/noir-lang/noir/commit/73a9f51e1fd1ba513ef721e07990abf510e8bf01))
* Add `Expr::as_block` and `Expr::has_semicolon`
([#5784](https://github.com/noir-lang/noir/issues/5784))
([19ffa20](https://github.com/noir-lang/noir/commit/19ffa2008fc9cbb5972b50d66d14908d5c82ed75))
* Add `Expr::as_bool`
([#5729](https://github.com/noir-lang/noir/issues/5729))
([ca75cc2](https://github.com/noir-lang/noir/commit/ca75cc2e35530c82cef3b86edf99a232f88b11e8))
* Add `Expr::as_cast` and `UnresolvedType::is_field`
([#5801](https://github.com/noir-lang/noir/issues/5801))
([c9aa50d](https://github.com/noir-lang/noir/commit/c9aa50dd25887a7e8b903515a0fd290335d1e572))
* Add `Expr::as_let`
([#5964](https://github.com/noir-lang/noir/issues/5964))
([65da598](https://github.com/noir-lang/noir/commit/65da5983ece16249fa939a493f197d13fbb1f9a4))
* Add `Expr::as_unary`
([#5731](https://github.com/noir-lang/noir/issues/5731))
([ae33811](https://github.com/noir-lang/noir/commit/ae33811f7ca770b54880d0095c1d5be0ee85c6e4))
* Add `Expr::resolve` and `TypedExpr::as_function_definition`
([#5859](https://github.com/noir-lang/noir/issues/5859))
([bceee55](https://github.com/noir-lang/noir/commit/bceee55cc3833978d120e194820cfae9132c8006))
* Add `Expr` methods: `as_tuple`, `as_parenthesized`, `as_index`,
`as_if` ([#5726](https://github.com/noir-lang/noir/issues/5726))
([f57a7b2](https://github.com/noir-lang/noir/commit/f57a7b2bd4457cbbfd650c7467d1f96d65ea6c8b))
* Add `Expr` methods: as_comptime, as_unsafe, is_break, is_continue
([#5799](https://github.com/noir-lang/noir/issues/5799))
([619fa5c](https://github.com/noir-lang/noir/commit/619fa5c0ad115ac910abfc9995a4362271847d59))
* Add `fmtstr::contents`
([#5928](https://github.com/noir-lang/noir/issues/5928))
([f18e9ca](https://github.com/noir-lang/noir/commit/f18e9ca86c025f736af6e515f812e36fbb622930))
* Add `FunctionDef::body`
([#5825](https://github.com/noir-lang/noir/issues/5825))
([39b30ba](https://github.com/noir-lang/noir/commit/39b30ba2e9f13d8d99bfb1833e14e294f80773e5))
* Add `FunctionDef::has_named_attribute`
([#5870](https://github.com/noir-lang/noir/issues/5870))
([a950195](https://github.com/noir-lang/noir/commit/a950195baa9e6ed3880ad1d2f619e442b4c49473))
* Add `FunctionDef::set_return_visibility`
([#5941](https://github.com/noir-lang/noir/issues/5941))
([8beda6b](https://github.com/noir-lang/noir/commit/8beda6beb10a2e42da788bcc9bf2b375055675c6))
* Add `FunctionDefinition::add_attribute`
([#5944](https://github.com/noir-lang/noir/issues/5944))
([c7479c4](https://github.com/noir-lang/noir/commit/c7479c4e55f47f7c652f0e202636b9e590d11f5d))
* Add `FunctionDefinition::module` and `StructDefinition::module`
([#5956](https://github.com/noir-lang/noir/issues/5956))
([f19344c](https://github.com/noir-lang/noir/commit/f19344ca1a6d9ae78cd433864f71705f3381320f))
* Add `FunctionDefinition` methods `is_unconstrained` and
`set_unconstrained`
([#5962](https://github.com/noir-lang/noir/issues/5962))
([b9a072d](https://github.com/noir-lang/noir/commit/b9a072d29c0f4abc4c6c683b9b2a872728d971fa))
* Add `Module::structs`
([#6017](https://github.com/noir-lang/noir/issues/6017))
([fc5bb02](https://github.com/noir-lang/noir/commit/fc5bb025d7df901050af1d8ad6ebb9283faf641f))
* Add `Quoted::as_expr` and `Expr::as_function_call`
([#5708](https://github.com/noir-lang/noir/issues/5708))
([3f79607](https://github.com/noir-lang/noir/commit/3f79607002a75880b6e21aadd15dd7e55f15dbfa))
* Add `Quoted::tokens`
([#5942](https://github.com/noir-lang/noir/issues/5942))
([a297ec6](https://github.com/noir-lang/noir/commit/a297ec643eb3b6c0e8bcf62abdc005414283c7c2))
* Add `std::meta::typ::fresh_type_variable`
([#5948](https://github.com/noir-lang/noir/issues/5948))
([3dab4dd](https://github.com/noir-lang/noir/commit/3dab4dd771b7d8b9242ce3a9aeff5770f4d85cf6))
* Add `StructDefinition::add_attribute` and `has_named_attribute`
([#5945](https://github.com/noir-lang/noir/issues/5945))
([344dd5e](https://github.com/noir-lang/noir/commit/344dd5ea7ed551dcc3fd414d1c5f49f44721c28c))
* Add `StructDefinition::add_generic`
([#5961](https://github.com/noir-lang/noir/issues/5961))
([6004067](https://github.com/noir-lang/noir/commit/6004067e42572c34dd6465e66d36410826e2fd90))
* Add `StructDefinition::name`
([#5960](https://github.com/noir-lang/noir/issues/5960))
([102ebe3](https://github.com/noir-lang/noir/commit/102ebe33694d65e1024fcba8260ada6f30c49578))
* Add `StructDefinition::set_fields`
([#5931](https://github.com/noir-lang/noir/issues/5931))
([9d2629d](https://github.com/noir-lang/noir/commit/9d2629dd1bb28a8c2ecb4c33d26119da75d626c2))
* Add `TraitImpl::trait_generic_args` and `TraitImpl::methods`
([#5722](https://github.com/noir-lang/noir/issues/5722))
([8c7e493](https://github.com/noir-lang/noir/commit/8c7e4937b24e6d782543dd42ac9fc293af550f7c))
* Add `Type::as_string`
([#5871](https://github.com/noir-lang/noir/issues/5871))
([e29d4b3](https://github.com/noir-lang/noir/commit/e29d4b3646f0527fc01bc4584ee33616db922c72))
* Add `Type::get_trait_impl`
([#5716](https://github.com/noir-lang/noir/issues/5716))
([eb33d1c](https://github.com/noir-lang/noir/commit/eb33d1cae626244a220e6ceea176be6f5fb1073d))
* Add `Type::implements`
([#5701](https://github.com/noir-lang/noir/issues/5701))
([2166c94](https://github.com/noir-lang/noir/commit/2166c9441c739ab6a3ee029ed051f1857bd27170))
* Add `TypedExpr::get_type`
([#5992](https://github.com/noir-lang/noir/issues/5992))
([31f50c4](https://github.com/noir-lang/noir/commit/31f50c442b59eac4de2c5c530278e345bd2f149f))
* Add `UnresolvedType::is_field` and `Expr::as_assign`
([#5804](https://github.com/noir-lang/noir/issues/5804))
([c45df4e](https://github.com/noir-lang/noir/commit/c45df4e83ab1ff5f6c35c4115aebf317110ee419))
* Add `unsafe` blocks for calling unconstrained code from constrained
functions ([#4429](https://github.com/noir-lang/noir/issues/4429))
([79593b4](https://github.com/noir-lang/noir/commit/79593b4235efc031ed9b95c0b301cef66b4ab88c))
* Add a `panic` method to the stdlib
([#5966](https://github.com/noir-lang/noir/issues/5966))
([b86c2bc](https://github.com/noir-lang/noir/commit/b86c2bc0ec2712e9c24309a6f5e92afc3ef0a2dc))
* Add array_to_str_lossy
([#5613](https://github.com/noir-lang/noir/issues/5613))
([af5acf4](https://github.com/noir-lang/noir/commit/af5acf4eb4af38fd346b6365a45d8e7e83899542))
* Add assertions for ACVM `FunctionInput` `bit_size`
([#5864](https://github.com/noir-lang/noir/issues/5864))
([8712f4c](https://github.com/noir-lang/noir/commit/8712f4c20d23f3809bcfb03f2e3ba0e5ace20a1d))
* Add Expr::as_method_call
([#5822](https://github.com/noir-lang/noir/issues/5822))
([806af24](https://github.com/noir-lang/noir/commit/806af24e44b3abcc50e552fff0883f2497ba152f))
* Add mutating FunctionDefinition functions
([#5685](https://github.com/noir-lang/noir/issues/5685))
([2882eae](https://github.com/noir-lang/noir/commit/2882eaeb176988bb3d216d091c0e239f5b80f276))
* Add Not instruction in brillig
(https://github.com/AztecProtocol/aztec-packages/pull/8488)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* Add recursive aggregation object to proving/verification keys
(https://github.com/AztecProtocol/aztec-packages/pull/6770)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Add reusable procedures to brillig generation
(https://github.com/AztecProtocol/aztec-packages/pull/7981)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Add some `Module` comptime functions
([#5684](https://github.com/noir-lang/noir/issues/5684))
([eefd69b](https://github.com/noir-lang/noir/commit/eefd69b1d72a9f5cb2e7bbd3e554925a7670a2f3))
* Added indirect const instruction
(https://github.com/AztecProtocol/aztec-packages/pull/8065)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Adding aggregation to honk and rollup
(https://github.com/AztecProtocol/aztec-packages/pull/7466)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Allow inserting new structs and into programs from attributes
([#5927](https://github.com/noir-lang/noir/issues/5927))
([94e661e](https://github.com/noir-lang/noir/commit/94e661e7520d80496bdc9da39b9736bafacb96dc))
* Arithmetic Generics
([#5950](https://github.com/noir-lang/noir/issues/5950))
([00a79ce](https://github.com/noir-lang/noir/commit/00a79ce6374bb09616ffb6f431cb6c011d786877))
* Automate verify_honk_proof input generation
(https://github.com/AztecProtocol/aztec-packages/pull/8092)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* **avm/brillig:** Take addresses in calldatacopy
(https://github.com/AztecProtocol/aztec-packages/pull/8388)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* **avm:** Variants for SET opcode
(https://github.com/AztecProtocol/aztec-packages/pull/8441)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Better error message for misplaced doc comments
([#5990](https://github.com/noir-lang/noir/issues/5990))
([28415ef](https://github.com/noir-lang/noir/commit/28415efd2fd8c7b836516b154ab54d65f15fbc23))
* Better println for Quoted
([#5896](https://github.com/noir-lang/noir/issues/5896))
([6f30e42](https://github.com/noir-lang/noir/commit/6f30e42f8a895c7813e770d6ee9ffbc9977c335b))
* Calculate `FunctionSelector`s and `EventSelector`s during comptime
(https://github.com/AztecProtocol/aztec-packages/pull/8354)
([33bd102](https://github.com/noir-lang/noir/commit/33bd102d6021912b56fe880efab65346c3ea9228))
* Change the layout of arrays and vectors to be a single pointer
(https://github.com/AztecProtocol/aztec-packages/pull/8448)
([d4832ec](https://github.com/noir-lang/noir/commit/d4832ece9d3ad16544afea49cc7caf40501a2cc3))
* Check argument count and types on attribute function callback
([#5921](https://github.com/noir-lang/noir/issues/5921))
([91f693d](https://github.com/noir-lang/noir/commit/91f693d81edb1913bf56d2c1038441cec5844646))
* Do not encode assertion strings in the programs
(https://github.com/AztecProtocol/aztec-packages/pull/8315)
([4144152](https://github.com/noir-lang/noir/commit/41441527700d7c0fe59769803048a3b285badd77))
* Explicit Associated Types & Constants
([#5739](https://github.com/noir-lang/noir/issues/5739))
([e050e93](https://github.com/noir-lang/noir/commit/e050e93a963b407dabedf7c236f59c387f787514))
* Extract brillig slice ops to reusable procedures
([#6002](https://github.com/noir-lang/noir/issues/6002))
([339c17b](https://github.com/noir-lang/noir/commit/339c17bb5253f0d290fa56644a49b2881c9de889))
* Fault-tolerant parsing of `fn` and `impl`
([#5753](https://github.com/noir-lang/noir/issues/5753))
([d4e2f0a](https://github.com/noir-lang/noir/commit/d4e2f0a30b07a98772fbc321a760641466cc01d1))
* Format trait impl functions
([#6016](https://github.com/noir-lang/noir/issues/6016))
([da32bd8](https://github.com/noir-lang/noir/commit/da32bd82d749a9c388e970883cc1ea756ce2db6b))
* Hook up secondary calldata column in dsl
(https://github.com/AztecProtocol/aztec-packages/pull/7759)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Impl Hash and Eq on more comptime types
([#6022](https://github.com/noir-lang/noir/issues/6022))
([114903d](https://github.com/noir-lang/noir/commit/114903d6fbcb035b46478db36d696efa99e919d6))
* Implement `str_as_bytes` in the `comptime` interpreter
([#5887](https://github.com/noir-lang/noir/issues/5887))
([45344bf](https://github.com/noir-lang/noir/commit/45344bfe1148a2f592c2e432744d3fb3d46340cc))
* Implement LSP code action "Implement missing members"
([#6020](https://github.com/noir-lang/noir/issues/6020))
([9bf2dcb](https://github.com/noir-lang/noir/commit/9bf2dcbf166f9ffd97c369c0de3d95329c850d47))
* Improve "type annotations needed" errors
([#5830](https://github.com/noir-lang/noir/issues/5830))
([90f9ea0](https://github.com/noir-lang/noir/commit/90f9ea0df7055aa5881a77981c8be7862478c848))
* Let `has_named_attribute` work for built-in attributes
([#6024](https://github.com/noir-lang/noir/issues/6024))
([a09646b](https://github.com/noir-lang/noir/commit/a09646bde7ae27c1aa423ef56757d2fb8753658a))
* Let `nargo` and LSP work well in the stdlib
([#5969](https://github.com/noir-lang/noir/issues/5969))
([8e8e97c](https://github.com/noir-lang/noir/commit/8e8e97c68e48245a6c7de9b3a0fe9960a889c47a))
* Liveness analysis for constants
(https://github.com/AztecProtocol/aztec-packages/pull/8294)
([71e1556](https://github.com/noir-lang/noir/commit/71e1556717695e1ef80c53d273f7acbdf0d5b4e7))
* LSP auto-import completion
([#5741](https://github.com/noir-lang/noir/issues/5741))
([cdbb940](https://github.com/noir-lang/noir/commit/cdbb940a883ae32dd84c667ec06b0d155f2d7520))
* LSP autocomplete constructor fields
([#5732](https://github.com/noir-lang/noir/issues/5732))
([e71c75a](https://github.com/noir-lang/noir/commit/e71c75a0862dda26e5b08318bcec71d5b41ba9e9))
* LSP autocompletion for attributes
([#5963](https://github.com/noir-lang/noir/issues/5963))
([b7b9e3f](https://github.com/noir-lang/noir/commit/b7b9e3f2212db2b9c3412ddcfd1c40c6200a1740))
* LSP autocompletion for use statement
([#5704](https://github.com/noir-lang/noir/issues/5704))
([226aeb1](https://github.com/noir-lang/noir/commit/226aeb1400adc6d9028e9ad9f496783606fd9e11))
* LSP code action "Fill struct fields"
([#5885](https://github.com/noir-lang/noir/issues/5885))
([1e6e4f4](https://github.com/noir-lang/noir/commit/1e6e4f4f53c7d331c054dd84f3fe6064d2e844e3))
* LSP code actions to import or qualify unresolved paths
([#5876](https://github.com/noir-lang/noir/issues/5876))
([410c1f6](https://github.com/noir-lang/noir/commit/410c1f67ee93634bcfb22b236035d97eee33b0cf))
* LSP completion function detail
([#5993](https://github.com/noir-lang/noir/issues/5993))
([e84f7d2](https://github.com/noir-lang/noir/commit/e84f7d2e81c1f59e9af015f38c2d477607a9c558))
* LSP completion now works better in the middle of idents
([#5795](https://github.com/noir-lang/noir/issues/5795))
([1c84038](https://github.com/noir-lang/noir/commit/1c84038e4a1b2515f4f91aca4c833dd3b6c05d91))
* LSP diagnostics for all package files
([#5895](https://github.com/noir-lang/noir/issues/5895))
([4e616b3](https://github.com/noir-lang/noir/commit/4e616b340d144a615795e37ab87ced1d175188b3))
* LSP diagnostics now have "unnecessary" and "deprecated" tags
([#5878](https://github.com/noir-lang/noir/issues/5878))
([2f0d4e0](https://github.com/noir-lang/noir/commit/2f0d4e017b701b46b5c675e3b34af15ad6f28823))
* LSP fields, functions and methods completion after "." and "::"
([#5714](https://github.com/noir-lang/noir/issues/5714))
([13c1fe6](https://github.com/noir-lang/noir/commit/13c1fe686c51b762df71a138b1af474d67da7560))
* LSP hover and go-to-definition for crates
([#5786](https://github.com/noir-lang/noir/issues/5786))
([86d8840](https://github.com/noir-lang/noir/commit/86d884044ee5bac72af820d623e00e1375271845))
* LSP now suggests self fields and methods
([#5955](https://github.com/noir-lang/noir/issues/5955))
([f57ce85](https://github.com/noir-lang/noir/commit/f57ce850fdb42a33177638f2f4af1335023c5e62))
* LSP path completion
([#5712](https://github.com/noir-lang/noir/issues/5712))
([3c6b998](https://github.com/noir-lang/noir/commit/3c6b9982048e168fc86cb834b5e8e72b51d2498d))
* LSP signature help
([#5725](https://github.com/noir-lang/noir/issues/5725))
([5a3d241](https://github.com/noir-lang/noir/commit/5a3d24192d440c5bfe3749d4bcd8ebbc9cf4902b))
* LSP signature help for assert and assert_eq
([#5862](https://github.com/noir-lang/noir/issues/5862))
([663e00c](https://github.com/noir-lang/noir/commit/663e00cffcb2cd66ddc2b33c0453afca0e15f703))
* LSP will now suggest private items if they are visible
([#5923](https://github.com/noir-lang/noir/issues/5923))
([d2caa5b](https://github.com/noir-lang/noir/commit/d2caa5bb86f944d6d09182482bef6e35ca2213d6))
* Make token transfer be recursive
(https://github.com/AztecProtocol/aztec-packages/pull/7730)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* **meta:** Comptime keccak
([#5854](https://github.com/noir-lang/noir/issues/5854))
([0e8becc](https://github.com/noir-lang/noir/commit/0e8becc7bccee2ae4e4e3ef373df08c3e9ef88c9))
* Module attributes
([#5888](https://github.com/noir-lang/noir/issues/5888))
([2ca2e5c](https://github.com/noir-lang/noir/commit/2ca2e5cf207a2a1f41ca86d877f0288bcbbfd212))
* New test programs for wasm benchmarking
(https://github.com/AztecProtocol/aztec-packages/pull/8389)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* Note hashes as points
(https://github.com/AztecProtocol/aztec-packages/pull/7618)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Only check array bounds in brillig if index is unsafe
([#5938](https://github.com/noir-lang/noir/issues/5938))
([8b60bbc](https://github.com/noir-lang/noir/commit/8b60bbc8082513e29f6573e5235e0a33fdd1517b))
* **optimization:** Avoid merging identical (by ID) arrays
([#5853](https://github.com/noir-lang/noir/issues/5853))
([062103e](https://github.com/noir-lang/noir/commit/062103ea039042e8e999b29dbb1fafc3cebd513c))
* **optimization:** Follow past `array_set`s when optimizing
`array_get`s ([#5772](https://github.com/noir-lang/noir/issues/5772))
([090501d](https://github.com/noir-lang/noir/commit/090501dfaf7c569b1aa944856bf68ad663572ae4))
* Optimize constant array handling in brillig_gen
(https://github.com/AztecProtocol/aztec-packages/pull/7661)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Optimize to_radix
(https://github.com/AztecProtocol/aztec-packages/pull/8073)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Pass calldata ids to the backend
(https://github.com/AztecProtocol/aztec-packages/pull/7875)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* **perf:** Mem2reg function state for value loads to optimize across
blocks ([#5757](https://github.com/noir-lang/noir/issues/5757))
([0b297b3](https://github.com/noir-lang/noir/commit/0b297b3830ac26551bfb39fad01d74cd8ab341c3))
* **perf:** Remove known store values that equal the store address in
mem2reg ([#5935](https://github.com/noir-lang/noir/issues/5935))
([b84009c](https://github.com/noir-lang/noir/commit/b84009ca428a5790acf53a6c027146b706170574))
* **perf:** Remove last store in return block if last load is before
that store ([#5910](https://github.com/noir-lang/noir/issues/5910))
([1737b65](https://github.com/noir-lang/noir/commit/1737b656c861706c38b59bd5ef6cd095687a2898))
* **perf:** Simplify poseidon2 cache zero-pad
([#5869](https://github.com/noir-lang/noir/issues/5869))
([31e9be6](https://github.com/noir-lang/noir/commit/31e9be6b83b448eb6834645dc124589dc724a7b2))
* Poseidon2 gates for Ultra arithmetisation
(https://github.com/AztecProtocol/aztec-packages/pull/7494)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* **profiler:** Add support for brillig functions in opcodes-flamegraph
(https://github.com/AztecProtocol/aztec-packages/pull/7698)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Remove blocks which consist of only a jump to another block
([#5889](https://github.com/noir-lang/noir/issues/5889))
([f391af2](https://github.com/noir-lang/noir/commit/f391af2d61f4a38e02cb92c76fa4c2c148af3833))
* Remove unnecessary copying of vector size during reversal
([#5852](https://github.com/noir-lang/noir/issues/5852))
([5739904](https://github.com/noir-lang/noir/commit/5739904f8d9e6c00d9e140cd4926b4d149412476))
* Removing superfluous call to MSM
(https://github.com/AztecProtocol/aztec-packages/pull/7708)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Report gates and VKs of private protocol circuits with megahonk
(https://github.com/AztecProtocol/aztec-packages/pull/7722)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Return arrays instead of slices from `to_be_radix` functions
([#5851](https://github.com/noir-lang/noir/issues/5851))
([d59c708](https://github.com/noir-lang/noir/commit/d59c7087495f8af0dfb387dc587ecc422888096b))
* Show backtrace on comptime assertion failures
([#5842](https://github.com/noir-lang/noir/issues/5842))
([cfd68d4](https://github.com/noir-lang/noir/commit/cfd68d4c1bd1a2319698fca99d200a5d86ffa771))
* Show doc comments in LSP
([#5968](https://github.com/noir-lang/noir/issues/5968))
([45f4ae0](https://github.com/noir-lang/noir/commit/45f4ae09ca5fa5516e13c34c2ae9379077461cc9))
* Simplify constant calls to `poseidon2_permutation`, `schnorr_verify`
and `embedded_curve_add`
([#5140](https://github.com/noir-lang/noir/issues/5140))
([2823ba7](https://github.com/noir-lang/noir/commit/2823ba7242db788ca1d7f6e7a48be2f1de62f278))
* Small optimization in toradix
(https://github.com/AztecProtocol/aztec-packages/pull/8040)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Suggest trait methods in LSP completion
([#5735](https://github.com/noir-lang/noir/issues/5735))
([e2f7e95](https://github.com/noir-lang/noir/commit/e2f7e950c44883228d5e1230b04c83e479de7ed0))
* Suggest tuple fields in LSP completion
([#5730](https://github.com/noir-lang/noir/issues/5730))
([64d7d78](https://github.com/noir-lang/noir/commit/64d7d786ad2ddf0942690912cf05ca3b438c43be))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7743)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7862)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7945)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7958)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8008)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8093)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8125)
([f0c2686](https://github.com/noir-lang/noir/commit/f0c268606a71381ab4504396695a0adb9b3258b6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8237)
([f0c2686](https://github.com/noir-lang/noir/commit/f0c268606a71381ab4504396695a0adb9b3258b6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8314)
([4144152](https://github.com/noir-lang/noir/commit/41441527700d7c0fe59769803048a3b285badd77))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8333)
([33bd102](https://github.com/noir-lang/noir/commit/33bd102d6021912b56fe880efab65346c3ea9228))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8423)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8435)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8466)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8482)
([d4832ec](https://github.com/noir-lang/noir/commit/d4832ece9d3ad16544afea49cc7caf40501a2cc3))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8512)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8526)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* TXE nr deployments, dependency cleanup for CLI
(https://github.com/AztecProtocol/aztec-packages/pull/7548)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Unify all acir recursion constraints based on RecursionConstraint and
proof_type (https://github.com/AztecProtocol/aztec-packages/pull/7993)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Unquote some value as tokens, not as unquote markers
([#5924](https://github.com/noir-lang/noir/issues/5924))
([70ebb90](https://github.com/noir-lang/noir/commit/70ebb905da23a0541915a8f6883d6f530934be4e))
* Use visibility
([#5856](https://github.com/noir-lang/noir/issues/5856))
([e349f30](https://github.com/noir-lang/noir/commit/e349f30b60a473e2068afafb6fae4a4ea50d185b))
* Use Zac's quicksort algorithm in stdlib sorting
([#5940](https://github.com/noir-lang/noir/issues/5940))
([19f5757](https://github.com/noir-lang/noir/commit/19f5757a64c15a6b5a9478eceedb17c02d2351d7))
* User `super::` in LSP autocompletion if possible
([#5751](https://github.com/noir-lang/noir/issues/5751))
([5192e53](https://github.com/noir-lang/noir/commit/5192e537708fc9ec51f53bb6a6629c9d682532d5))
* Warn on unused functions
([#5892](https://github.com/noir-lang/noir/issues/5892))
([af3db4b](https://github.com/noir-lang/noir/commit/af3db4bf2e8f7feba6d06c3095d7cdf17c8dde75))
* Warn on unused imports
([#5847](https://github.com/noir-lang/noir/issues/5847))
([58f855e](https://github.com/noir-lang/noir/commit/58f855ec2124db39e5b2b08630d514d852d0e7df))


### Bug Fixes

* (LSP) only add cached files relevant to workspace
([#5775](https://github.com/noir-lang/noir/issues/5775))
([1958a79](https://github.com/noir-lang/noir/commit/1958a7932642e2fa556a903a3186b142a70e3e48))
* **acir_gen:** Nested dynamic array initialization
([#5810](https://github.com/noir-lang/noir/issues/5810))
([4df53ad](https://github.com/noir-lang/noir/commit/4df53adfd0c5e2da70462b29fbf8d08e32203fc4))
* **acvm:** Clear ACIR call stack after successful circuit execution
([#5783](https://github.com/noir-lang/noir/issues/5783))
([656a7d6](https://github.com/noir-lang/noir/commit/656a7d6c1e0c3597a61c3606e3155a70032c1599))
* Add locations to most SSA instructions
([#5697](https://github.com/noir-lang/noir/issues/5697))
([85d5c85](https://github.com/noir-lang/noir/commit/85d5c8532acb21c39f3db466982039d1415d9300))
* Add missing trait impls for integer types to stdlib
([#5738](https://github.com/noir-lang/noir/issues/5738))
([d3f20c6](https://github.com/noir-lang/noir/commit/d3f20c6f830a84fce9d75ce3fe28e31b391b47ab))
* Allow comptime code to use break without also being `unconstrained`
([#5744](https://github.com/noir-lang/noir/issues/5744))
([c2a1a87](https://github.com/noir-lang/noir/commit/c2a1a87a6bcfc161ef5f550a17b603b0bccbab8e))
* Always place module attribute generated items inside module
([#5943](https://github.com/noir-lang/noir/issues/5943))
([89ac6e0](https://github.com/noir-lang/noir/commit/89ac6e087debc37dcc729db0b68062418cd64d2e))
* Bit shifting type checking
([#5824](https://github.com/noir-lang/noir/issues/5824))
([fb5136e](https://github.com/noir-lang/noir/commit/fb5136edda4b5b8ac6bba998939c94f11a27a59a))
* Check unused generics are bound
([#5840](https://github.com/noir-lang/noir/issues/5840))
([82eb158](https://github.com/noir-lang/noir/commit/82eb1581251faa9716d762a673fa1b871b3e7be2))
* Collect functions generated by attributes
([#5930](https://github.com/noir-lang/noir/issues/5930))
([2c22fe5](https://github.com/noir-lang/noir/commit/2c22fe555dc41fffc623026b4b8c57d44b869cd2))
* Correctly print string tokens
([#6021](https://github.com/noir-lang/noir/issues/6021))
([b8a3a9b](https://github.com/noir-lang/noir/commit/b8a3a9b03f83bba486d2623640f97f1a080f2d73))
* **debugger:** Update the debugger to handle the new Brillig debug
metadata format ([#5706](https://github.com/noir-lang/noir/issues/5706))
([a31f82e](https://github.com/noir-lang/noir/commit/a31f82e598def60d00c65b79b8c5411f8aa832aa))
* Deflatten databus visibilities
(https://github.com/AztecProtocol/aztec-packages/pull/7761)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Do not duplicate redundant Brillig debug metadata
([#5696](https://github.com/noir-lang/noir/issues/5696))
([e4f7dbe](https://github.com/noir-lang/noir/commit/e4f7dbe63b55807b3ff0b4d6f47a8b7f847299fb))
* Do not use predicate for index in array operation, when the index is
safe ([#5779](https://github.com/noir-lang/noir/issues/5779))
([9d8f2bd](https://github.com/noir-lang/noir/commit/9d8f2bd759837d7f1f78c1b56b8e30de35c80867))
* **docs:** Fix file paths for metaprogramming docs
([#5826](https://github.com/noir-lang/noir/issues/5826))
([a764c5b](https://github.com/noir-lang/noir/commit/a764c5be9b15e499e0720f28a1a177bfecbef352))
* Error when `quote` is used in runtime code
([#5978](https://github.com/noir-lang/noir/issues/5978))
([cc30d88](https://github.com/noir-lang/noir/commit/cc30d88d85bb70248e452d9ec549d6dfe6be62ff))
* Error when comptime functions are used in runtime code
([#5976](https://github.com/noir-lang/noir/issues/5976))
([ec24917](https://github.com/noir-lang/noir/commit/ec24917bfda55746c7509dd28f8d808f97c948b8))
* Error when comptime types are used in runtime code
([#5987](https://github.com/noir-lang/noir/issues/5987))
([3d39196](https://github.com/noir-lang/noir/commit/3d39196040aa01e64c8a7fe989e2979a5de80023))
* Error when mutating comptime variables in non-comptime code
([#6003](https://github.com/noir-lang/noir/issues/6003))
([e20c44d](https://github.com/noir-lang/noir/commit/e20c44dcb21edd3ec2bbc015d85754872e86740e))
* Export brillig names in contract functions
(https://github.com/AztecProtocol/aztec-packages/pull/8212)
([f0c2686](https://github.com/noir-lang/noir/commit/f0c268606a71381ab4504396695a0adb9b3258b6))
* Fix some mistakes in arithmetic generics docs
([#5999](https://github.com/noir-lang/noir/issues/5999))
([29550d1](https://github.com/noir-lang/noir/commit/29550d1d7698a1af65b867171ff80e817f3ed2f6))
* Fix using lazily elaborated comptime globals
([#5995](https://github.com/noir-lang/noir/issues/5995))
([f6f493c](https://github.com/noir-lang/noir/commit/f6f493cb73e24337a7f11507b2b492d98cac2ada))
* **frontend:** Ban type vars bound to a reference from passing the
unconstrained boundary
([#5949](https://github.com/noir-lang/noir/issues/5949))
([ce34fbd](https://github.com/noir-lang/noir/commit/ce34fbd19702b71426563a589235a2c5a1efb265))
* **frontend:** Continue type check if we are missing an unsafe block
([#5720](https://github.com/noir-lang/noir/issues/5720))
([86de991](https://github.com/noir-lang/noir/commit/86de991051a34567077076aa09a85b26eeff2ab2))
* Handle multiple entry points for Brillig call stack resolution after
metadata deduplication
([#5788](https://github.com/noir-lang/noir/issues/5788))
([38fe9dd](https://github.com/noir-lang/noir/commit/38fe9dda111952fdb894df90a319c087382edfc9))
* Help link was outdated
([#6004](https://github.com/noir-lang/noir/issues/6004))
([d1e52f3](https://github.com/noir-lang/noir/commit/d1e52f3f3824ead1fd617fc21fcbe1051911986d))
* Honor function visibility in LSP completion
([#5809](https://github.com/noir-lang/noir/issues/5809))
([335de05](https://github.com/noir-lang/noir/commit/335de054dfcda366df50cc215900910ebdc8be63))
* Let `derive(Eq)` work for empty structs
([#5965](https://github.com/noir-lang/noir/issues/5965))
([ff8e8b5](https://github.com/noir-lang/noir/commit/ff8e8b5fae4db57bd7f819d0e23c68262057b790))
* Let LSP autocompletion work in more contexts
([#5719](https://github.com/noir-lang/noir/issues/5719))
([03ba6dd](https://github.com/noir-lang/noir/commit/03ba6dd328d56bf71c9e2b501c59eb9a6cdb95db))
* LSP document symbol didn't work for primitive impls
([#5970](https://github.com/noir-lang/noir/issues/5970))
([e1f81da](https://github.com/noir-lang/noir/commit/e1f81da1d8cfcc9cfe3d1bd2ed6f762580800ad9))
* **mem2reg:** Handle aliases better when setting a known value for a
load ([#5959](https://github.com/noir-lang/noir/issues/5959))
([1b72a17](https://github.com/noir-lang/noir/commit/1b72a17e621465ac1dfaaf8948edcebd4f1b0b15))
* **mem2reg:** Handle aliases in function last store cleanup and
additional alias unit test
([#5967](https://github.com/noir-lang/noir/issues/5967))
([36756e8](https://github.com/noir-lang/noir/commit/36756e8757ad40e2b231747ed754273f50e5dc2f))
* **nargo:** Resolve Brillig assertion payloads
([#5872](https://github.com/noir-lang/noir/issues/5872))
([f53a28b](https://github.com/noir-lang/noir/commit/f53a28bd3e70e9331e01f1fec4984e747723df74))
* Prevent comptime println from crashing LSP
([#5918](https://github.com/noir-lang/noir/issues/5918))
([44cf9a2](https://github.com/noir-lang/noir/commit/44cf9a2140bc06b550d4b46966f1637598ac11a7))
* Replace unused ArrayGet/Set with constrain if possibly out of bounds
([#5691](https://github.com/noir-lang/noir/issues/5691))
([a87d926](https://github.com/noir-lang/noir/commit/a87d92629c49c91d47685dba9a2a6dce4440756d))
* Restrict keccak256_injective test input to 8 bits
([#5977](https://github.com/noir-lang/noir/issues/5977))
([a1b1346](https://github.com/noir-lang/noir/commit/a1b1346bf7525c508fd390393c307475cc2345d7))
* **sha256:** Add extra checks against message size when constructing
msg blocks ([#5861](https://github.com/noir-lang/noir/issues/5861))
([46e266a](https://github.com/noir-lang/noir/commit/46e266a5229dada42ee397beb0d39322451b1458))
* **sha256:** Fix upper bound when building msg block and delay final
block compression under certain cases
([#5838](https://github.com/noir-lang/noir/issues/5838))
([130b7b6](https://github.com/noir-lang/noir/commit/130b7b6871ad165a75df5fa5760c94a7402521f4))
* **sha256:** Perform compression per block and utilize ROM instead of
RAM when setting up the message block
([#5760](https://github.com/noir-lang/noir/issues/5760))
([c52dc1c](https://github.com/noir-lang/noir/commit/c52dc1c77aedf5a876a858cc5a942c29e868e9e6))
* Suggest trait attributes in LSP
([#5972](https://github.com/noir-lang/noir/issues/5972))
([d6f60d7](https://github.com/noir-lang/noir/commit/d6f60d70dc41640ad84f7a968927b20818bcaf2a))
* Support debug comptime flag for attributes
([#5929](https://github.com/noir-lang/noir/issues/5929))
([34f21c0](https://github.com/noir-lang/noir/commit/34f21c0eadfc8a03f5177d72de7958903de8ac98))
* Temporary register leaks in brillig gen
(https://github.com/AztecProtocol/aztec-packages/pull/8350)
([33bd102](https://github.com/noir-lang/noir/commit/33bd102d6021912b56fe880efab65346c3ea9228))
* Try to move constant terms to one side for arithmetic generics
([#6008](https://github.com/noir-lang/noir/issues/6008))
([4d8fe28](https://github.com/noir-lang/noir/commit/4d8fe28f6d0930b6e9cfe0d39dd003466b20b8b6))
* Unconstrained fn mismatch is now a warning
([#5764](https://github.com/noir-lang/noir/issues/5764))
([37af966](https://github.com/noir-lang/noir/commit/37af966024d5eb38eae5092a7976445e4bbe8adb))
* Use element_size() instead of computing it with division
([#5939](https://github.com/noir-lang/noir/issues/5939))
([6a45007](https://github.com/noir-lang/noir/commit/6a450076be2889c05428ea1285c5c149cfaf4456))
* Use module name as line after which we'll insert auto-import
([#6025](https://github.com/noir-lang/noir/issues/6025))
([c2e4a9a](https://github.com/noir-lang/noir/commit/c2e4a9a02c0138f6a8878f51291320ba7e57c79c))
</details>

<details><summary>0.50.0</summary>

## [0.50.0](https://github.com/noir-lang/noir/compare/v0.49.0...v0.50.0)
(2024-09-13)


### ⚠ BREAKING CHANGES

* Add Not instruction in brillig
(https://github.com/AztecProtocol/aztec-packages/pull/8488)
* **avm:** variants for SET opcode
(https://github.com/AztecProtocol/aztec-packages/pull/8441)
* **avm/brillig:** take addresses in calldatacopy
(https://github.com/AztecProtocol/aztec-packages/pull/8388)
* constant inputs for blackbox
(https://github.com/AztecProtocol/aztec-packages/pull/7222)
* add session id to foreign call RPC requests
([#5205](https://github.com/noir-lang/noir/issues/5205))
* restrict noir word size to u32
([#5180](https://github.com/noir-lang/noir/issues/5180))

### Features

* (bb) 128-bit challenges
(https://github.com/AztecProtocol/aztec-packages/pull/8406)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* **acir_gen:** Width aware ACIR gen addition
([#5493](https://github.com/noir-lang/noir/issues/5493))
([85fa592](https://github.com/noir-lang/noir/commit/85fa592fdef3b8589ce03b232e1b51565837b540))
* Add assertions for ACVM `FunctionInput` `bit_size`
([#5864](https://github.com/noir-lang/noir/issues/5864))
([8712f4c](https://github.com/noir-lang/noir/commit/8712f4c20d23f3809bcfb03f2e3ba0e5ace20a1d))
* Add Not instruction in brillig
(https://github.com/AztecProtocol/aztec-packages/pull/8488)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* Add recursive aggregation object to proving/verification keys
(https://github.com/AztecProtocol/aztec-packages/pull/6770)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Add reusable procedures to brillig generation
(https://github.com/AztecProtocol/aztec-packages/pull/7981)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Add session id to foreign call RPC requests
([#5205](https://github.com/noir-lang/noir/issues/5205))
([14adafc](https://github.com/noir-lang/noir/commit/14adafc965fa9c833e096ec037e086aae67703ad))
* Added indirect const instruction
(https://github.com/AztecProtocol/aztec-packages/pull/8065)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Adding aggregation to honk and rollup
(https://github.com/AztecProtocol/aztec-packages/pull/7466)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Automate verify_honk_proof input generation
(https://github.com/AztecProtocol/aztec-packages/pull/8092)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* **avm/brillig:** Take addresses in calldatacopy
(https://github.com/AztecProtocol/aztec-packages/pull/8388)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* **avm:** Variants for SET opcode
(https://github.com/AztecProtocol/aztec-packages/pull/8441)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Avoid heap allocs when going to/from field
(https://github.com/AztecProtocol/aztec-packages/pull/7547)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Change the layout of arrays and vectors to be a single pointer
(https://github.com/AztecProtocol/aztec-packages/pull/8448)
([d4832ec](https://github.com/noir-lang/noir/commit/d4832ece9d3ad16544afea49cc7caf40501a2cc3))
* Constant inputs for blackbox
(https://github.com/AztecProtocol/aztec-packages/pull/7222)
([fb97bb9](https://github.com/noir-lang/noir/commit/fb97bb9b795c9d7af395b82fd6f0ea8111d59c11))
* Hook up secondary calldata column in dsl
(https://github.com/AztecProtocol/aztec-packages/pull/7759)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Integrate new proving systems in e2e
(https://github.com/AztecProtocol/aztec-packages/pull/6971)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Make Brillig do integer arithmetic operations using u128 instead of
Bigint (https://github.com/AztecProtocol/aztec-packages/pull/7518)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Make token transfer be recursive
(https://github.com/AztecProtocol/aztec-packages/pull/7730)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* **nargo:** Hidden option to show contract artifact paths written by
`nargo compile`
(https://github.com/AztecProtocol/aztec-packages/pull/6131)
([ff67e14](https://github.com/noir-lang/noir/commit/ff67e145d086bf6fdf58fb5e57927033e52e03d3))
* New test programs for wasm benchmarking
(https://github.com/AztecProtocol/aztec-packages/pull/8389)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* Note hashes as points
(https://github.com/AztecProtocol/aztec-packages/pull/7618)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Optimize constant array handling in brillig_gen
(https://github.com/AztecProtocol/aztec-packages/pull/7661)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Optimize to_radix
(https://github.com/AztecProtocol/aztec-packages/pull/8073)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Pass calldata ids to the backend
(https://github.com/AztecProtocol/aztec-packages/pull/7875)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Poseidon2 gates for Ultra arithmetisation
(https://github.com/AztecProtocol/aztec-packages/pull/7494)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* **profiler:** Add support for brillig functions in opcodes-flamegraph
(https://github.com/AztecProtocol/aztec-packages/pull/7698)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Removing superfluous call to MSM
(https://github.com/AztecProtocol/aztec-packages/pull/7708)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Report gates and VKs of private protocol circuits with megahonk
(https://github.com/AztecProtocol/aztec-packages/pull/7722)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Restrict noir word size to u32
([#5180](https://github.com/noir-lang/noir/issues/5180))
([bdb2bc6](https://github.com/noir-lang/noir/commit/bdb2bc608ea8fd52d46545a38b68dd2558b28110))
* Separate runtimes of SSA functions before inlining
([#5121](https://github.com/noir-lang/noir/issues/5121))
([69eca9b](https://github.com/noir-lang/noir/commit/69eca9b8671fa54192bef814dd584fdb5387a5f7))
* Simplify constant calls to `poseidon2_permutation`, `schnorr_verify`
and `embedded_curve_add`
([#5140](https://github.com/noir-lang/noir/issues/5140))
([2823ba7](https://github.com/noir-lang/noir/commit/2823ba7242db788ca1d7f6e7a48be2f1de62f278))
* Small optimization in toradix
(https://github.com/AztecProtocol/aztec-packages/pull/8040)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7392)
([fb97bb9](https://github.com/noir-lang/noir/commit/fb97bb9b795c9d7af395b82fd6f0ea8111d59c11))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7400)
([fb97bb9](https://github.com/noir-lang/noir/commit/fb97bb9b795c9d7af395b82fd6f0ea8111d59c11))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7432)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7444)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7454)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7512)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7577)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7583)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7743)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7862)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7945)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7958)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8008)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8093)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8125)
([f0c2686](https://github.com/noir-lang/noir/commit/f0c268606a71381ab4504396695a0adb9b3258b6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8237)
([f0c2686](https://github.com/noir-lang/noir/commit/f0c268606a71381ab4504396695a0adb9b3258b6))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8423)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8435)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8466)
([3c3ed1e](https://github.com/noir-lang/noir/commit/3c3ed1e3d28946a02071c524dd128afe131bc3da))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8482)
([d4832ec](https://github.com/noir-lang/noir/commit/d4832ece9d3ad16544afea49cc7caf40501a2cc3))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8512)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/8526)
([95e19ab](https://github.com/noir-lang/noir/commit/95e19ab9486ad054241b6e53e40e55bdba9dc7e5))
* TXE nr deployments, dependency cleanup for CLI
(https://github.com/AztecProtocol/aztec-packages/pull/7548)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Typing return values of embedded_curve_ops
(https://github.com/AztecProtocol/aztec-packages/pull/7413)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Unify all acir recursion constraints based on RecursionConstraint and
proof_type (https://github.com/AztecProtocol/aztec-packages/pull/7993)
([5c4f19f](https://github.com/noir-lang/noir/commit/5c4f19f097dd3704522996330c961bf0a2db8d99))


### Bug Fixes

* Add support for nested arrays returned by oracles
([#5132](https://github.com/noir-lang/noir/issues/5132))
([f846879](https://github.com/noir-lang/noir/commit/f846879dd038328bd0a1d39a72b448ef52a1002b))
* Add trailing extra arguments for backend in gates_flamegraph
(https://github.com/AztecProtocol/aztec-packages/pull/7472)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Avoid unnecessarily splitting expressions with multiplication terms
with a shared term
([#5291](https://github.com/noir-lang/noir/issues/5291))
([19884f1](https://github.com/noir-lang/noir/commit/19884f161dfc7d7ce75dd2c404b8ef39cdad2240))
* **debugger:** Update the debugger to handle the new Brillig debug
metadata format ([#5706](https://github.com/noir-lang/noir/issues/5706))
([a31f82e](https://github.com/noir-lang/noir/commit/a31f82e598def60d00c65b79b8c5411f8aa832aa))
* Deflatten databus visibilities
(https://github.com/AztecProtocol/aztec-packages/pull/7761)
([4ea25db](https://github.com/noir-lang/noir/commit/4ea25dbde87488e758139619a3ce4edf93c6ebd6))
* Do not duplicate redundant Brillig debug metadata
([#5696](https://github.com/noir-lang/noir/issues/5696))
([e4f7dbe](https://github.com/noir-lang/noir/commit/e4f7dbe63b55807b3ff0b4d6f47a8b7f847299fb))
* Export brillig names in contract functions
(https://github.com/AztecProtocol/aztec-packages/pull/8212)
([f0c2686](https://github.com/noir-lang/noir/commit/f0c268606a71381ab4504396695a0adb9b3258b6))
* Handle multiple entry points for Brillig call stack resolution after
metadata deduplication
([#5788](https://github.com/noir-lang/noir/issues/5788))
([38fe9dd](https://github.com/noir-lang/noir/commit/38fe9dda111952fdb894df90a319c087382edfc9))
* Handle struct with nested arrays in oracle return values
([#5244](https://github.com/noir-lang/noir/issues/5244))
([a30814f](https://github.com/noir-lang/noir/commit/a30814f1f767bf874cd7e2969f5061c68f16b9a7))
* Move BigInt modulus checks to runtime in brillig
([#5374](https://github.com/noir-lang/noir/issues/5374))
([741d339](https://github.com/noir-lang/noir/commit/741d33991f8e2918bf092c354ca56047e0274533))
* Restrict keccak256_injective test input to 8 bits
([#5977](https://github.com/noir-lang/noir/issues/5977))
([a1b1346](https://github.com/noir-lang/noir/commit/a1b1346bf7525c508fd390393c307475cc2345d7))
* Revert "feat: Sync from noir
(https://github.com/AztecProtocol/aztec-packages/pull/7512)"
(https://github.com/AztecProtocol/aztec-packages/pull/7558)
([daad75c](https://github.com/noir-lang/noir/commit/daad75c26d19ae707b90a7424b77dab9937e8575))
* Runtime brillig bigint id assignment
([#5369](https://github.com/noir-lang/noir/issues/5369))
([a8928dd](https://github.com/noir-lang/noir/commit/a8928ddcffcae15babf7aa5aff0e462e4549552e))
</details>

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

---------

Co-authored-by: Tom French <[email protected]>
github-merge-queue bot pushed a commit that referenced this pull request Oct 3, 2024
🤖 I have created a release *beep* *boop*
---


<details><summary>0.35.0</summary>

## [0.35.0](v0.34.0...v0.35.0)
(2024-10-03)


### ⚠ BREAKING CHANGES

* Syncing TypeVariableKind with Kind
([#6094](#6094))
* remove sha256 opcode
(AztecProtocol/aztec-packages#4571)
* add support for u1 in the avm, ToRadix's radix arg is a memory addr
(AztecProtocol/aztec-packages#8570)
* Infer globals to be u32 when used in a type
([#6083](#6083))
* removing implicit numeric generics
([#5837](#5837))

### Features

* (LSP) if in runtime code, always suggest functions that return Quoted
as macro calls ([#6098](#6098))
([4a160cb](4a160cb))
* (LSP) remove unused imports
([#6129](#6129))
([98bc460](98bc460))
* (LSP) show global value on hover
([#6097](#6097))
([3d9d072](3d9d072))
* (LSP) suggest $vars inside `quote { ... }`
([#6114](#6114))
([73245b3](73245b3))
* Add `Expr::as_constructor`
([#5980](#5980))
([76dea7b](76dea7b))
* Add `Expr::as_for` and `Expr::as_for_range`
([#6039](#6039))
([abcae75](abcae75))
* Add `Expr::as_lambda`
([#6048](#6048))
([31130dc](31130dc))
* Add a `comptime` string type for string handling at compile-time
([#6026](#6026))
([5d2984f](5d2984f))
* Add support for u1 in the avm, ToRadix's radix arg is a memory addr
(AztecProtocol/aztec-packages#8570)
([e8bbce7](e8bbce7))
* Allow silencing an unused variable defined via `let`
([#6149](#6149))
([a2bc059](a2bc059))
* Allow visibility modifiers in struct definitions
([#6054](#6054))
([199be58](199be58))
* Check unconstrained trait impl method matches
([#6057](#6057))
([aedc983](aedc983))
* Default to outputting witness with file named after package
([#6031](#6031))
([e74b4ae](e74b4ae))
* Detect unconstructed structs
([#6061](#6061))
([bcb438b](bcb438b))
* Do not double error on import with error
([#6131](#6131))
([9b26650](9b26650))
* Expose `derived_generators` and `pedersen_commitment_with_separator`
from the stdlib ([#6154](#6154))
([877b806](877b806))
* Faster LSP by caching file managers
([#6047](#6047))
([c48a4f8](c48a4f8))
* Hoist constant allocation outside of loops
([#6158](#6158))
([180bfc9](180bfc9))
* Implement `to_be_radix` in the comptime interpreter
([#6043](#6043))
([1550278](1550278))
* Implement solver for mov_registers_to_registers
([#6089](#6089))
([4170c55](4170c55))
* Implement type paths
([#6093](#6093))
([2174ffb](2174ffb))
* Let `Module::functions` and `Module::structs` return them in
definition order
([#6178](#6178))
([dec9874](dec9874))
* Let LSP suggest macro calls too
([#6090](#6090))
([26d275b](26d275b))
* Let LSP suggest trait impl methods as you are typing them
([#6029](#6029))
([dfed81b](dfed81b))
* LSP autocompletion for `TypePath`
([#6117](#6117))
([3f79d8f](3f79d8f))
* **metaprogramming:** Add `#[use_callers_scope]`
([#6050](#6050))
([8c34046](8c34046))
* Optimize allocating immediate amounts of memory
(AztecProtocol/aztec-packages#8579)
([e8bbce7](e8bbce7))
* Optimize constraints in sha256
([#6145](#6145))
([164d29e](164d29e))
* **perf:** Allow array set last uses optimization in return block of
Brillig functions
([#6119](#6119))
([5598059](5598059))
* **perf:** Handle array set optimization across blocks for Brillig
functions ([#6153](#6153))
([12cb80a](12cb80a))
* **perf:** Optimize array set from get
([#6207](#6207))
([dfeb1c5](dfeb1c5))
* **perf:** Remove inc_rc instructions for arrays which are never
mutably borrowed
([#6168](#6168))
([a195442](a195442))
* **perf:** Remove redundant inc rc without instructions between
([#6183](#6183))
([be9dcfe](be9dcfe))
* **perf:** Remove unused loads in mem2reg and last stores per function
([#5925](#5925))
([19eef30](19eef30))
* **perf:** Remove useless paired RC instructions within a block during
DIE ([#6160](#6160))
([59c4118](59c4118))
* **perf:** Simplify the cfg after DIE
([#6184](#6184))
([a1b5046](a1b5046))
* Pretty print Quoted token stream
([#6111](#6111))
([cd81f85](cd81f85))
* Refactor SSA passes to run on individual functions
([#6072](#6072))
([85c502c](85c502c))
* Remove aztec macros
([#6087](#6087))
([9d96207](9d96207))
* Remove orphaned blocks from cfg to improve `simplify_cfg` pass.
([#6198](#6198))
([b4712c5](b4712c5))
* Remove sha256 opcode
(AztecProtocol/aztec-packages#4571)
([e8bbce7](e8bbce7))
* Remove unnecessary branching in keccak impl
([#6133](#6133))
([9c69dce](9c69dce))
* Represent assertions more similarly to function calls
([#6103](#6103))
([3ecd0e2](3ecd0e2))
* Show test output when running via LSP
([#6049](#6049))
([9fb010e](9fb010e))
* Simplify sha256 implementation
([#6142](#6142))
([acdfbbc](acdfbbc))
* Skip `remove_enable_side_effects` pass on brillig functions
([#6199](#6199))
([2303615](2303615))
* **ssa:** Simplify signed casts
([#6166](#6166))
([eec3a61](eec3a61))
* Swap endianness in-place in keccak implementation
([#6128](#6128))
([e3cdebe](e3cdebe))
* Syncing TypeVariableKind with Kind
([#6094](#6094))
([6440e18](6440e18))
* Visibility for globals
([#6161](#6161))
([103b54d](103b54d))
* Visibility for modules
([#6165](#6165))
([fcdbcb9](fcdbcb9))
* Visibility for traits
([#6056](#6056))
([5bbd9ba](5bbd9ba))
* Visibility for type aliases
([#6058](#6058))
([66d2a07](66d2a07))


### Bug Fixes

* (LSP) make goto and hover work well for attributes
([#6152](#6152))
([c679bc6](c679bc6))
* Allow macros to change types on each iteration of a comptime loop
([#6105](#6105))
([0864e7c](0864e7c))
* Allow providing default implementations of unconstrained trait methods
([#6138](#6138))
([7679bbc](7679bbc))
* Always parse all tokens from quoted token streams
([#6064](#6064))
([23ed74b](23ed74b))
* Be more lenient with semicolons on interned expressions
([#6062](#6062))
([052c4fe](052c4fe))
* Consider constants as used values to keep their rc ops
([#6122](#6122))
([1217005](1217005))
* Correct stack trace order in comptime assertion failures
([#6066](#6066))
([04f1636](04f1636))
* Databus panic for fns with empty params
(AztecProtocol/aztec-packages#8847)
([d252748](d252748))
* Decode databus return values
([#6095](#6095))
([c40eb1f](c40eb1f))
* Disable side-effects for no_predicates functions
([#6027](#6027))
([fc74c55](fc74c55))
* Disambiguate field or int static trait method call
([#6112](#6112))
([5b27ea4](5b27ea4))
* Do not duplicate constant arrays in brillig
([#6155](#6155))
([68f3022](68f3022))
* **docs:** Rename recursion.md to recursion.mdx
([#6195](#6195))
([054e48b](054e48b))
* Don't crash on untyped global used as array length
([#6076](#6076))
([426f295](426f295))
* Ensure to_bytes returns the canonical decomposition
([#6084](#6084))
([b280a79](b280a79))
* Error on `&mut x` when `x` is not mutable
([#6037](#6037))
([57afc7d](57afc7d))
* Fix canonicalization bug
([#6033](#6033))
([7397772](7397772))
* Fix comptime type formatting
([#6079](#6079))
([e678091](e678091))
* Handle multi-byte utf8 characters in formatter
([#6118](#6118))
([b1d0619](b1d0619))
* Handle parenthesized expressions in array length
([#6132](#6132))
([9f0b397](9f0b397))
* Ignore compression of blocks after msg.len in sha256_var
([#6206](#6206))
([76eec71](76eec71))
* Infer globals to be u32 when used in a type
([#6083](#6083))
([78262c9](78262c9))
* Initialise databus using return values
([#6074](#6074))
([e17dfa5](e17dfa5))
* Let LSP suggest fields and methods in LValue chains
([#6051](#6051))
([5bf6567](5bf6567))
* Let token pretty printer handle `+=` and similar token sequences
([#6135](#6135))
([684b6cc](684b6cc))
* **mem2reg:** Remove possibility of underflow
([#6107](#6107))
([aea5cc7](aea5cc7))
* Parse a statement as an expression
([#6040](#6040))
([ab203e4](ab203e4))
* Pass radix directly to the blackbox
([#6164](#6164))
([82b89c4](82b89c4))
* Preserve generic kind on trait methods
([#6099](#6099))
([1df102a](1df102a))
* Prevent check_can_mutate crashing on undefined variable
([#6044](#6044))
([b3accfc](b3accfc))
* Revert mistaken stack size change
([#6212](#6212))
([a37117a](a37117a))
* **ssa:** Check if result of array set is used in value of another
array set ([#6197](#6197))
([594ec91](594ec91))
* **ssa:** RC correctness issue
([#6134](#6134))
([5b1c896](5b1c896))
* Type variables by default should have Any kind
([#6203](#6203))
([268f2a0](268f2a0))
* Unify macro result type with actual type
([#6086](#6086))
([af52873](af52873))
* Update databus in flattening
([#6063](#6063))
([e993da1](e993da1))


### Miscellaneous Chores

* Removing implicit numeric generics
([#5837](#5837))
([eda9043](eda9043))
</details>

<details><summary>0.51.0</summary>

## [0.51.0](v0.50.0...v0.51.0)
(2024-10-03)


### ⚠ BREAKING CHANGES

* remove sha256 opcode
(AztecProtocol/aztec-packages#4571)
* add support for u1 in the avm, ToRadix's radix arg is a memory addr
(AztecProtocol/aztec-packages#8570)
* Add Not instruction in brillig
(AztecProtocol/aztec-packages#8488)
* **avm:** variants for SET opcode
(AztecProtocol/aztec-packages#8441)
* **avm/brillig:** take addresses in calldatacopy
(AztecProtocol/aztec-packages#8388)
* constant inputs for blackbox
(AztecProtocol/aztec-packages#7222)

### Features

* (bb) 128-bit challenges
(AztecProtocol/aztec-packages#8406)
([3c3ed1e](3c3ed1e))
* **acir_gen:** Width aware ACIR gen addition
([#5493](#5493))
([85fa592](85fa592))
* Add assertions for ACVM `FunctionInput` `bit_size`
([#5864](#5864))
([8712f4c](8712f4c))
* Add Not instruction in brillig
(AztecProtocol/aztec-packages#8488)
([95e19ab](95e19ab))
* Add recursive aggregation object to proving/verification keys
(AztecProtocol/aztec-packages#6770)
([4ea25db](4ea25db))
* Add reusable procedures to brillig generation
(AztecProtocol/aztec-packages#7981)
([5c4f19f](5c4f19f))
* Add support for u1 in the avm, ToRadix's radix arg is a memory addr
(AztecProtocol/aztec-packages#8570)
([e8bbce7](e8bbce7))
* Added indirect const instruction
(AztecProtocol/aztec-packages#8065)
([5c4f19f](5c4f19f))
* Adding aggregation to honk and rollup
(AztecProtocol/aztec-packages#7466)
([4ea25db](4ea25db))
* Automate verify_honk_proof input generation
(AztecProtocol/aztec-packages#8092)
([5c4f19f](5c4f19f))
* **avm/brillig:** Take addresses in calldatacopy
(AztecProtocol/aztec-packages#8388)
([3c3ed1e](3c3ed1e))
* **avm:** Variants for SET opcode
(AztecProtocol/aztec-packages#8441)
([3c3ed1e](3c3ed1e))
* Avoid heap allocs when going to/from field
(AztecProtocol/aztec-packages#7547)
([daad75c](daad75c))
* Change the layout of arrays and vectors to be a single pointer
(AztecProtocol/aztec-packages#8448)
([d4832ec](d4832ec))
* Constant inputs for blackbox
(AztecProtocol/aztec-packages#7222)
([fb97bb9](fb97bb9))
* Hook up secondary calldata column in dsl
(AztecProtocol/aztec-packages#7759)
([4ea25db](4ea25db))
* Integrate new proving systems in e2e
(AztecProtocol/aztec-packages#6971)
([daad75c](daad75c))
* Make Brillig do integer arithmetic operations using u128 instead of
Bigint (AztecProtocol/aztec-packages#7518)
([daad75c](daad75c))
* Make token transfer be recursive
(AztecProtocol/aztec-packages#7730)
([4ea25db](4ea25db))
* New test programs for wasm benchmarking
(AztecProtocol/aztec-packages#8389)
([95e19ab](95e19ab))
* Note hashes as points
(AztecProtocol/aztec-packages#7618)
([4ea25db](4ea25db))
* Optimize allocating immediate amounts of memory
(AztecProtocol/aztec-packages#8579)
([e8bbce7](e8bbce7))
* Optimize constant array handling in brillig_gen
(AztecProtocol/aztec-packages#7661)
([4ea25db](4ea25db))
* Optimize to_radix
(AztecProtocol/aztec-packages#8073)
([5c4f19f](5c4f19f))
* Pass calldata ids to the backend
(AztecProtocol/aztec-packages#7875)
([4ea25db](4ea25db))
* Poseidon2 gates for Ultra arithmetisation
(AztecProtocol/aztec-packages#7494)
([5c4f19f](5c4f19f))
* **profiler:** Add support for brillig functions in opcodes-flamegraph
(AztecProtocol/aztec-packages#7698)
([4ea25db](4ea25db))
* Remove sha256 opcode
(AztecProtocol/aztec-packages#4571)
([e8bbce7](e8bbce7))
* Removing superfluous call to MSM
(AztecProtocol/aztec-packages#7708)
([4ea25db](4ea25db))
* Report gates and VKs of private protocol circuits with megahonk
(AztecProtocol/aztec-packages#7722)
([4ea25db](4ea25db))
* Simplify constant calls to `poseidon2_permutation`, `schnorr_verify`
and `embedded_curve_add`
([#5140](#5140))
([2823ba7](2823ba7))
* Small optimization in toradix
(AztecProtocol/aztec-packages#8040)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#7392)
([fb97bb9](fb97bb9))
* Sync from noir
(AztecProtocol/aztec-packages#7400)
([fb97bb9](fb97bb9))
* Sync from noir
(AztecProtocol/aztec-packages#7432)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7444)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7454)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7512)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7577)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7583)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7743)
([4ea25db](4ea25db))
* Sync from noir
(AztecProtocol/aztec-packages#7862)
([4ea25db](4ea25db))
* Sync from noir
(AztecProtocol/aztec-packages#7945)
([4ea25db](4ea25db))
* Sync from noir
(AztecProtocol/aztec-packages#7958)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#8008)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#8093)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#8125)
([f0c2686](f0c2686))
* Sync from noir
(AztecProtocol/aztec-packages#8237)
([f0c2686](f0c2686))
* Sync from noir
(AztecProtocol/aztec-packages#8423)
([3c3ed1e](3c3ed1e))
* Sync from noir
(AztecProtocol/aztec-packages#8435)
([3c3ed1e](3c3ed1e))
* Sync from noir
(AztecProtocol/aztec-packages#8466)
([3c3ed1e](3c3ed1e))
* Sync from noir
(AztecProtocol/aztec-packages#8482)
([d4832ec](d4832ec))
* Sync from noir
(AztecProtocol/aztec-packages#8512)
([95e19ab](95e19ab))
* Sync from noir
(AztecProtocol/aztec-packages#8526)
([95e19ab](95e19ab))
* TXE nr deployments, dependency cleanup for CLI
(AztecProtocol/aztec-packages#7548)
([4ea25db](4ea25db))
* Typing return values of embedded_curve_ops
(AztecProtocol/aztec-packages#7413)
([daad75c](daad75c))
* Unify all acir recursion constraints based on RecursionConstraint and
proof_type (AztecProtocol/aztec-packages#7993)
([5c4f19f](5c4f19f))


### Bug Fixes

* Add trailing extra arguments for backend in gates_flamegraph
(AztecProtocol/aztec-packages#7472)
([daad75c](daad75c))
* **debugger:** Update the debugger to handle the new Brillig debug
metadata format ([#5706](#5706))
([a31f82e](a31f82e))
* Deflatten databus visibilities
(AztecProtocol/aztec-packages#7761)
([4ea25db](4ea25db))
* Do not duplicate redundant Brillig debug metadata
([#5696](#5696))
([e4f7dbe](e4f7dbe))
* Export brillig names in contract functions
(AztecProtocol/aztec-packages#8212)
([f0c2686](f0c2686))
* Handle multiple entry points for Brillig call stack resolution after
metadata deduplication
([#5788](#5788))
([38fe9dd](38fe9dd))
* Move BigInt modulus checks to runtime in brillig
([#5374](#5374))
([741d339](741d339))
* Restrict keccak256_injective test input to 8 bits
([#5977](#5977))
([a1b1346](a1b1346))
* Revert "feat: Sync from noir
(AztecProtocol/aztec-packages#7512)"
(AztecProtocol/aztec-packages#7558)
([daad75c](daad75c))
* Runtime brillig bigint id assignment
([#5369](#5369))
([a8928dd](a8928dd))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
github-merge-queue bot pushed a commit that referenced this pull request Oct 23, 2024
🤖 I have created a release *beep* *boop*
---


<details><summary>0.36.0</summary>

## [0.36.0](v0.35.0...v0.36.0)
(2024-10-22)


### ⚠ BREAKING CHANGES

* remove pedersen commitment
(AztecProtocol/aztec-packages#9107)
* remove pedersen hash opcode
(AztecProtocol/aztec-packages#9245)
* Brillig and AVM default all uninitialized memory cells to Field 0
(AztecProtocol/aztec-packages#9057)
* remove keccak256 opcode from ACIR/Brillig
(AztecProtocol/aztec-packages#9104)
* Brillig with a stack and conditional inlining
(AztecProtocol/aztec-packages#8989)
* **avm:** remove CMOV opcode
(AztecProtocol/aztec-packages#9030)
* Integer division is not the inverse of integer multiplication
([#6243](#6243))
* kind size checks
([#6137](#6137))
* Change tag attributes to require a ' prefix
([#6235](#6235))

### Features

* Add `checked_transmute`
([#6262](#6262))
([2618061](2618061))
* Add more `Type` and `UnresolvedType` methods
([#5994](#5994))
([8236cbd](8236cbd))
* Allow `unconstrained` after visibility
([#6246](#6246))
([f6dfbcf](f6dfbcf))
* Brillig and AVM default all uninitialized memory cells to Field 0
(AztecProtocol/aztec-packages#9057)
([70dcf4a](70dcf4a))
* Brillig with a stack and conditional inlining
(AztecProtocol/aztec-packages#8989)
([70dcf4a](70dcf4a))
* Don't crash LSP when there are errors resolving the workspace
([#6257](#6257))
([7cc7197](7cc7197))
* Don't suggest private struct fields in LSP
([#6256](#6256))
([2a727b3](2a727b3))
* Handwritten parser
([#6180](#6180))
([c4273a0](c4273a0))
* **improve:** Remove scan through globals
([#6282](#6282))
([fd91913](fd91913))
* Inclusive for loop
([#6200](#6200))
([bd861f2](bd861f2))
* Integrate databus in the private kernels
(AztecProtocol/aztec-packages#9028)
([70dcf4a](70dcf4a))
* **interpreter:** Comptime derive generators
([#6303](#6303))
([d8767b3](d8767b3))
* Kind size checks
([#6137](#6137))
([6e40f62](6e40f62))
* New formatter ([#6300](#6300))
([62404d7](62404d7))
* Optimize `Quoted::as_expr` by parsing just once
([#6237](#6237))
([a4fcd00](a4fcd00))
* Optimize reading a workspace's files
([#6281](#6281))
([b54ed26](b54ed26))
* **perf:** Flamegraphs for test program execution benchmarks
([#6253](#6253))
([c186791](c186791))
* **perf:** Follow array sets backwards in array set from get
optimization ([#6208](#6208))
([999071b](999071b))
* Recover from '=' instead of ':' in struct constructor/pattern
([#6236](#6236))
([9a12f31](9a12f31))
* Remove byte decomposition in `compute_decomposition`
([#6159](#6159))
([a8bcae2](a8bcae2))
* Show LSP diagnostic related information
([#6277](#6277))
([c8a91a5](c8a91a5))
* Slightly improve "unexpected token" error message
([#6279](#6279))
([8232bfa](8232bfa))
* Sync from noir
(AztecProtocol/aztec-packages#8934)
([70dcf4a](70dcf4a))
* Sync from noir
(AztecProtocol/aztec-packages#9034)
([70dcf4a](70dcf4a))
* Sync from noir
(AztecProtocol/aztec-packages#9099)
([70dcf4a](70dcf4a))
* Sync from noir
(AztecProtocol/aztec-packages#9275)
([70dcf4a](70dcf4a))
* **test:** Fuzz poseidon hases against an external library
([#6273](#6273))
([8d8ea89](8d8ea89))
* **test:** Fuzz test poseidon2 hash equivalence
([#6265](#6265))
([f61ba03](f61ba03))
* **test:** Fuzz test stdlib hash functions
([#6233](#6233))
([1a2ca46](1a2ca46))
* **test:** Include the PoseidonHasher in the fuzzing
([#6280](#6280))
([afb8a7c](afb8a7c))
* Trait inheritance
([#6252](#6252))
([d3301a4](d3301a4))
* Visibility for impl functions
([#6179](#6179))
([1b26440](1b26440))
* Visibility for struct fields
([#6221](#6221))
([fc1c7ab](fc1c7ab))
* Warn about private types leaking in public functions and struct fields
([#6296](#6296))
([67ac0d6](67ac0d6))


### Bug Fixes

* Add missing visibility for auto-import names
([#6205](#6205))
([c3cb38a](c3cb38a))
* Address inactive public key check in `verify_signature_noir`
([#6270](#6270))
([e4325aa](e4325aa))
* Allow array map on empty arrays
([#6305](#6305))
([51ae1b3](51ae1b3))
* Change tag attributes to require a ' prefix
([#6235](#6235))
([b43dcb2](b43dcb2))
* Check for Schnorr null signature
([#6226](#6226))
([2430920](2430920))
* Display function name and body when inlining recursion limit hit
([#6291](#6291))
([33a1e7d](33a1e7d))
* Do not warn on unused self in traits
([#6298](#6298))
([4d524bf](4d524bf))
* Don't warn on unuse global if it has an abi annotation
([#6258](#6258))
([e13f617](e13f617))
* Don't warn on unused struct that has an abi annotation
([#6254](#6254))
([8a31632](8a31632))
* Don't warn twice when referring to private item
([#6216](#6216))
([619c545](619c545))
* Enforce correctness of decompositions performed at compile time
([#6278](#6278))
([53252fd](53252fd))
* **frontend:** Do not warn when a nested struct is provided as input to
main ([#6239](#6239))
([9dfe223](9dfe223))
* Handle dfg databus in SSA normalization
([#6249](#6249))
([9d8bee5](9d8bee5))
* Handle nested arrays in calldata
([#6232](#6232))
([0ab8f5e](0ab8f5e))
* Homogeneous input points for EC ADD
([#6241](#6241))
([f6a7306](f6a7306))
* Integer division is not the inverse of integer multiplication
([#6243](#6243))
([1cd2587](1cd2587))
* Panic on composite types within databus
([#6225](#6225))
([29bd125](29bd125))
* Prevent compiler panic when popping from empty slices
([#6274](#6274))
([87137d8](87137d8))
* Reject invalid expression with in CLI parser
([#6287](#6287))
([052aee8](052aee8))
* Remove need for duplicate attributes on each function
(AztecProtocol/aztec-packages#9244)
([70dcf4a](70dcf4a))
* Visibility for impl methods
([#6261](#6261))
([70cbeb4](70cbeb4))


### Miscellaneous Chores

* Remove keccak256 opcode from ACIR/Brillig
(AztecProtocol/aztec-packages#9104)
([70dcf4a](70dcf4a))
* Remove pedersen commitment
(AztecProtocol/aztec-packages#9107)
([70dcf4a](70dcf4a))
* Remove pedersen hash opcode
(AztecProtocol/aztec-packages#9245)
([70dcf4a](70dcf4a))


### Code Refactoring

* **avm:** Remove CMOV opcode
(AztecProtocol/aztec-packages#9030)
([70dcf4a](70dcf4a))
</details>

<details><summary>0.52.0</summary>

## [0.52.0](v0.51.0...v0.52.0)
(2024-10-22)


### ⚠ BREAKING CHANGES

* remove pedersen commitment
(AztecProtocol/aztec-packages#9107)
* remove pedersen hash opcode
(AztecProtocol/aztec-packages#9245)
* Brillig and AVM default all uninitialized memory cells to Field 0
(AztecProtocol/aztec-packages#9057)
* remove keccak256 opcode from ACIR/Brillig
(AztecProtocol/aztec-packages#9104)
* Brillig with a stack and conditional inlining
(AztecProtocol/aztec-packages#8989)
* **avm:** remove CMOV opcode
(AztecProtocol/aztec-packages#9030)
* remove sha256 opcode
(AztecProtocol/aztec-packages#4571)
* add support for u1 in the avm, ToRadix's radix arg is a memory addr
(AztecProtocol/aztec-packages#8570)
* Add Not instruction in brillig
(AztecProtocol/aztec-packages#8488)
* **avm:** variants for SET opcode
(AztecProtocol/aztec-packages#8441)
* **avm/brillig:** take addresses in calldatacopy
(AztecProtocol/aztec-packages#8388)
* constant inputs for blackbox
(AztecProtocol/aztec-packages#7222)

### Features

* (bb) 128-bit challenges
(AztecProtocol/aztec-packages#8406)
([3c3ed1e](3c3ed1e))
* **acir_gen:** Width aware ACIR gen addition
([#5493](#5493))
([85fa592](85fa592))
* Add assertions for ACVM `FunctionInput` `bit_size`
([#5864](#5864))
([8712f4c](8712f4c))
* Add Not instruction in brillig
(AztecProtocol/aztec-packages#8488)
([95e19ab](95e19ab))
* Add recursive aggregation object to proving/verification keys
(AztecProtocol/aztec-packages#6770)
([4ea25db](4ea25db))
* Add reusable procedures to brillig generation
(AztecProtocol/aztec-packages#7981)
([5c4f19f](5c4f19f))
* Add support for u1 in the avm, ToRadix's radix arg is a memory addr
(AztecProtocol/aztec-packages#8570)
([e8bbce7](e8bbce7))
* Added indirect const instruction
(AztecProtocol/aztec-packages#8065)
([5c4f19f](5c4f19f))
* Adding aggregation to honk and rollup
(AztecProtocol/aztec-packages#7466)
([4ea25db](4ea25db))
* Automate verify_honk_proof input generation
(AztecProtocol/aztec-packages#8092)
([5c4f19f](5c4f19f))
* **avm/brillig:** Take addresses in calldatacopy
(AztecProtocol/aztec-packages#8388)
([3c3ed1e](3c3ed1e))
* **avm:** Variants for SET opcode
(AztecProtocol/aztec-packages#8441)
([3c3ed1e](3c3ed1e))
* Avoid heap allocs when going to/from field
(AztecProtocol/aztec-packages#7547)
([daad75c](daad75c))
* Brillig and AVM default all uninitialized memory cells to Field 0
(AztecProtocol/aztec-packages#9057)
([70dcf4a](70dcf4a))
* Brillig with a stack and conditional inlining
(AztecProtocol/aztec-packages#8989)
([70dcf4a](70dcf4a))
* Change the layout of arrays and vectors to be a single pointer
(AztecProtocol/aztec-packages#8448)
([d4832ec](d4832ec))
* Constant inputs for blackbox
(AztecProtocol/aztec-packages#7222)
([fb97bb9](fb97bb9))
* Hook up secondary calldata column in dsl
(AztecProtocol/aztec-packages#7759)
([4ea25db](4ea25db))
* Integrate databus in the private kernels
(AztecProtocol/aztec-packages#9028)
([70dcf4a](70dcf4a))
* Integrate new proving systems in e2e
(AztecProtocol/aztec-packages#6971)
([daad75c](daad75c))
* Make Brillig do integer arithmetic operations using u128 instead of
Bigint (AztecProtocol/aztec-packages#7518)
([daad75c](daad75c))
* Make token transfer be recursive
(AztecProtocol/aztec-packages#7730)
([4ea25db](4ea25db))
* New test programs for wasm benchmarking
(AztecProtocol/aztec-packages#8389)
([95e19ab](95e19ab))
* Note hashes as points
(AztecProtocol/aztec-packages#7618)
([4ea25db](4ea25db))
* Optimize allocating immediate amounts of memory
(AztecProtocol/aztec-packages#8579)
([e8bbce7](e8bbce7))
* Optimize constant array handling in brillig_gen
(AztecProtocol/aztec-packages#7661)
([4ea25db](4ea25db))
* Optimize to_radix
(AztecProtocol/aztec-packages#8073)
([5c4f19f](5c4f19f))
* Pass calldata ids to the backend
(AztecProtocol/aztec-packages#7875)
([4ea25db](4ea25db))
* Poseidon2 gates for Ultra arithmetisation
(AztecProtocol/aztec-packages#7494)
([5c4f19f](5c4f19f))
* **profiler:** Add support for brillig functions in opcodes-flamegraph
(AztecProtocol/aztec-packages#7698)
([4ea25db](4ea25db))
* Remove sha256 opcode
(AztecProtocol/aztec-packages#4571)
([e8bbce7](e8bbce7))
* Removing superfluous call to MSM
(AztecProtocol/aztec-packages#7708)
([4ea25db](4ea25db))
* Report gates and VKs of private protocol circuits with megahonk
(AztecProtocol/aztec-packages#7722)
([4ea25db](4ea25db))
* Simplify constant calls to `poseidon2_permutation`, `schnorr_verify`
and `embedded_curve_add`
([#5140](#5140))
([2823ba7](2823ba7))
* Small optimization in toradix
(AztecProtocol/aztec-packages#8040)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#7392)
([fb97bb9](fb97bb9))
* Sync from noir
(AztecProtocol/aztec-packages#7400)
([fb97bb9](fb97bb9))
* Sync from noir
(AztecProtocol/aztec-packages#7432)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7444)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7454)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7512)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7577)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7583)
([daad75c](daad75c))
* Sync from noir
(AztecProtocol/aztec-packages#7743)
([4ea25db](4ea25db))
* Sync from noir
(AztecProtocol/aztec-packages#7862)
([4ea25db](4ea25db))
* Sync from noir
(AztecProtocol/aztec-packages#7945)
([4ea25db](4ea25db))
* Sync from noir
(AztecProtocol/aztec-packages#7958)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#8008)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#8093)
([5c4f19f](5c4f19f))
* Sync from noir
(AztecProtocol/aztec-packages#8125)
([f0c2686](f0c2686))
* Sync from noir
(AztecProtocol/aztec-packages#8237)
([f0c2686](f0c2686))
* Sync from noir
(AztecProtocol/aztec-packages#8423)
([3c3ed1e](3c3ed1e))
* Sync from noir
(AztecProtocol/aztec-packages#8435)
([3c3ed1e](3c3ed1e))
* Sync from noir
(AztecProtocol/aztec-packages#8466)
([3c3ed1e](3c3ed1e))
* Sync from noir
(AztecProtocol/aztec-packages#8482)
([d4832ec](d4832ec))
* Sync from noir
(AztecProtocol/aztec-packages#8512)
([95e19ab](95e19ab))
* Sync from noir
(AztecProtocol/aztec-packages#8526)
([95e19ab](95e19ab))
* Sync from noir
(AztecProtocol/aztec-packages#8934)
([70dcf4a](70dcf4a))
* Sync from noir
(AztecProtocol/aztec-packages#9034)
([70dcf4a](70dcf4a))
* Sync from noir
(AztecProtocol/aztec-packages#9099)
([70dcf4a](70dcf4a))
* Sync from noir
(AztecProtocol/aztec-packages#9275)
([70dcf4a](70dcf4a))
* **test:** Fuzz test poseidon2 hash equivalence
([#6265](#6265))
([f61ba03](f61ba03))
* **test:** Fuzz test stdlib hash functions
([#6233](#6233))
([1a2ca46](1a2ca46))
* TXE nr deployments, dependency cleanup for CLI
(AztecProtocol/aztec-packages#7548)
([4ea25db](4ea25db))
* Typing return values of embedded_curve_ops
(AztecProtocol/aztec-packages#7413)
([daad75c](daad75c))
* Unify all acir recursion constraints based on RecursionConstraint and
proof_type (AztecProtocol/aztec-packages#7993)
([5c4f19f](5c4f19f))


### Bug Fixes

* Add trailing extra arguments for backend in gates_flamegraph
(AztecProtocol/aztec-packages#7472)
([daad75c](daad75c))
* **debugger:** Update the debugger to handle the new Brillig debug
metadata format ([#5706](#5706))
([a31f82e](a31f82e))
* Deflatten databus visibilities
(AztecProtocol/aztec-packages#7761)
([4ea25db](4ea25db))
* Do not duplicate redundant Brillig debug metadata
([#5696](#5696))
([e4f7dbe](e4f7dbe))
* Export brillig names in contract functions
(AztecProtocol/aztec-packages#8212)
([f0c2686](f0c2686))
* Handle multiple entry points for Brillig call stack resolution after
metadata deduplication
([#5788](#5788))
([38fe9dd](38fe9dd))
* Homogeneous input points for EC ADD
([#6241](#6241))
([f6a7306](f6a7306))
* Move BigInt modulus checks to runtime in brillig
([#5374](#5374))
([741d339](741d339))
* Reject invalid expression with in CLI parser
([#6287](#6287))
([052aee8](052aee8))
* Remove need for duplicate attributes on each function
(AztecProtocol/aztec-packages#9244)
([70dcf4a](70dcf4a))
* Restrict keccak256_injective test input to 8 bits
([#5977](#5977))
([a1b1346](a1b1346))
* Revert "feat: Sync from noir
(AztecProtocol/aztec-packages#7512)"
(AztecProtocol/aztec-packages#7558)
([daad75c](daad75c))


### Miscellaneous Chores

* Remove keccak256 opcode from ACIR/Brillig
(AztecProtocol/aztec-packages#9104)
([70dcf4a](70dcf4a))
* Remove pedersen commitment
(AztecProtocol/aztec-packages#9107)
([70dcf4a](70dcf4a))
* Remove pedersen hash opcode
(AztecProtocol/aztec-packages#9245)
([70dcf4a](70dcf4a))


### Code Refactoring

* **avm:** Remove CMOV opcode
(AztecProtocol/aztec-packages#9030)
([70dcf4a](70dcf4a))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Acir size increases exponentially as loop iterations increase, instead of linearly
4 participants