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(test): Fuzz test poseidon2 hash equivalence #6265

Merged
merged 2 commits into from
Oct 10, 2024
Merged

Conversation

aakoshh
Copy link
Contributor

@aakoshh aakoshh commented Oct 10, 2024

Description

Problem*

Related to #6141

Summary*

Adds a fuzz test for poseidon2.nr comparing the results to bn254_blackbox_solver::poseidon_hash, which says it's "Performs a poseidon hash with a sponge construction equivalent to the one in poseidon2.nr"

To pass the test the Rust implementation was given a new is_variable_length parameter to inform it whether it needs to append an extra 1 like Noir and Berratenberg do.

Additional Context

The test initially failed:

cargo test -p nargo_cli --test stdlib-props poseidon
  
test fuzz_poseidon2_equivalence ... FAILED

---- fuzz_poseidon2_equivalence stdout ----
Test failed: assertion failed: `(left == right)` 
  left: `Field(1187863985434533916290764679013201786939267142671550539990974992402592744116)`, 
 right: `Field(11250791130336988991462250958918728798886439319225016858543557054782819955502)`: max_len = 1 at tooling/nargo_cli/tests/stdlib-props.rs:106.
minimal failing input: io = SnippetInputOutput {
    description: "max_len = 1",
    inputs: {
        "input": Vec(
            [
                Field(
                    0,
                ),
            ],
        ),
        "message_size": Field(
            0,
        ),
    },
    expected_output: Field(
        11250791130336988991462250958918728798886439319225016858543557054782819955502,
    ),
}

So we pass in input = [0; 1] with message_size=0. It fails because the Noir code treats the case where the message_size is different from the maximum length differently by appending an extra 1, to keep variable and fixed length hashes distinct. The Rust implementation doesn't do this, nor did the other hashes tested so far. I'm not sure if it's worth noting that the hash will not depend on how much shorter the message is than the maximum, just that it's shorter.

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.

@aakoshh aakoshh marked this pull request as ready for review October 10, 2024 10:51
@TomAFrench
Copy link
Member

This appending of 1 matches with the barretenberg implementation of poseidon2 so looks like the issue is that we're not telling the rust impl to do this also. We could modify poseidon_hash but also could modify the fuzz test so that we just append 1 to the input there.

@aakoshh
Copy link
Contributor Author

aakoshh commented Oct 10, 2024

Okay, so as I understand the Rust implementation should be able to perform the same hash, but it needs a hint because it takes a slice and cannot tell if it's dealing with variable length data.

We could ... also could modify the fuzz test so that we just append 1 to the input there.

Unfortunately that would result in a change in the IV, which depends on the input length.

I'll add some other function to the module and document this gotcha.

I was trying to find external implementations of Poseidon2 to test with. For example there is this one which we might be able to configure for bn254, but it's not obvious for me what the configuration are as it takes more parameters than ours. Do you think it's worth pursuing this, or if the Noir parts on top of the foreign permutation agree with the Rust parts then we're okay?

@TomAFrench
Copy link
Member

Ah yeah, that was a brainfart. If we could manipulate the input to emulate this it would be a pretty useless method to distinguish between fixed and variable length inputs. Adding a variable length variant to the implementation in the solver is the way to go then.

I was trying to find external implementations of Poseidon2 to test with. For example there is this one which we might be able to configure for bn254, but it's not obvious for me what the configuration are as it takes more parameters than ours. Do you think it's worth pursuing this, or if the Noir parts on top of the foreign permutation agree with the Rust parts then we're okay?

I think matching with barretenberg is the most important consideration for us as we're going to want to agree with the hashes as outputted by them.

@aakoshh
Copy link
Contributor Author

aakoshh commented Oct 10, 2024

I added a parameter to the Rust function to match Noir; couldn't think of a more elegant way to do it.

Perhaps it's worth taking a note that Barretenberg has a variable and a fixed length variant of the hash function, while Noir decides based on the actual input length. That is, one can call hash_variable_length in Barretenberg with an array that just happens to be as long as the N is, but in theory it could be less, and then Noir would treat it as if it was fixed length without a doubt. So the caller of the C++ code has to know N and do the if/then/else on their side, or Noir would have to have two methods as well.

@aakoshh
Copy link
Contributor Author

aakoshh commented Oct 10, 2024

I couldn't actually find anything calling hash_variable_length. OTOH poseidon2::hash calls hash_fixed_length but says it should "just call the variable length" 🤷‍♂️

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.

LGTM!

@TomAFrench TomAFrench added this pull request to the merge queue Oct 10, 2024
Merged via the queue into master with commit f61ba03 Oct 10, 2024
49 checks passed
@TomAFrench TomAFrench deleted the fuzz-poseidon2 branch October 10, 2024 13:15
@aakoshh
Copy link
Contributor Author

aakoshh commented Oct 10, 2024

FWIW I found we already have a test against an external implementation, showcasing the mapping of configuration as well (it's the same library I found above).

AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 10, 2024
…ry (noir-lang/noir#6273)

feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 10, 2024
…g/noir#6273)

feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 11, 2024
…oir-lang/noir#6279)

feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 11, 2024
…ir#6279)

feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 12, 2024
feat(improve): Remove scan through globals (noir-lang/noir#6282)
feat: show LSP diagnostic related information (noir-lang/noir#6277)
feat: trait inheritance (noir-lang/noir#6252)
feat: optimize reading a workspace's files (noir-lang/noir#6281)
fix: prevent compiler panic when popping from empty slices (noir-lang/noir#6274)
feat(test): Include the PoseidonHasher in the fuzzing (noir-lang/noir#6280)
feat: slightly improve "unexpected token" error message (noir-lang/noir#6279)
feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 12, 2024
feat(improve): Remove scan through globals (noir-lang/noir#6282)
feat: show LSP diagnostic related information (noir-lang/noir#6277)
feat: trait inheritance (noir-lang/noir#6252)
feat: optimize reading a workspace's files (noir-lang/noir#6281)
fix: prevent compiler panic when popping from empty slices (noir-lang/noir#6274)
feat(test): Include the PoseidonHasher in the fuzzing (noir-lang/noir#6280)
feat: slightly improve "unexpected token" error message (noir-lang/noir#6279)
feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 13, 2024
feat(improve): Remove scan through globals (noir-lang/noir#6282)
feat: show LSP diagnostic related information (noir-lang/noir#6277)
feat: trait inheritance (noir-lang/noir#6252)
feat: optimize reading a workspace's files (noir-lang/noir#6281)
fix: prevent compiler panic when popping from empty slices (noir-lang/noir#6274)
feat(test): Include the PoseidonHasher in the fuzzing (noir-lang/noir#6280)
feat: slightly improve "unexpected token" error message (noir-lang/noir#6279)
feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 13, 2024
feat(improve): Remove scan through globals (noir-lang/noir#6282)
feat: show LSP diagnostic related information (noir-lang/noir#6277)
feat: trait inheritance (noir-lang/noir#6252)
feat: optimize reading a workspace's files (noir-lang/noir#6281)
fix: prevent compiler panic when popping from empty slices (noir-lang/noir#6274)
feat(test): Include the PoseidonHasher in the fuzzing (noir-lang/noir#6280)
feat: slightly improve "unexpected token" error message (noir-lang/noir#6279)
feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 14, 2024
feat(improve): Remove scan through globals (noir-lang/noir#6282)
feat: show LSP diagnostic related information (noir-lang/noir#6277)
feat: trait inheritance (noir-lang/noir#6252)
feat: optimize reading a workspace's files (noir-lang/noir#6281)
fix: prevent compiler panic when popping from empty slices (noir-lang/noir#6274)
feat(test): Include the PoseidonHasher in the fuzzing (noir-lang/noir#6280)
feat: slightly improve "unexpected token" error message (noir-lang/noir#6279)
feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
AztecBot added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 14, 2024
feat(improve): Remove scan through globals (noir-lang/noir#6282)
feat: show LSP diagnostic related information (noir-lang/noir#6277)
feat: trait inheritance (noir-lang/noir#6252)
feat: optimize reading a workspace's files (noir-lang/noir#6281)
fix: prevent compiler panic when popping from empty slices (noir-lang/noir#6274)
feat(test): Include the PoseidonHasher in the fuzzing (noir-lang/noir#6280)
feat: slightly improve "unexpected token" error message (noir-lang/noir#6279)
feat(test): Fuzz poseidon hases against an external library (noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition` (noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir` (noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence (noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication (noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks (noir-lang/noir#6253)
fix: visibility for impl methods (noir-lang/noir#6261)
feat: Add `checked_transmute` (noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace (noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation (noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation (noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP (noir-lang/noir#6256)
feat: visibility for struct fields (noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization (noir-lang/noir#6249)
fix: homogeneous input points for EC ADD (noir-lang/noir#6241)
chore: add regression test for #5756 (noir-lang/noir#5770)
feat: allow `unconstrained` after visibility (noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once (noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix (noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern (noir-lang/noir#6236)
TomAFrench added a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 14, 2024
Automated pull of development from the
[noir](https://github.com/noir-lang/noir) programming language, a
dependency of Aztec.
BEGIN_COMMIT_OVERRIDE
feat(test): Fuzz poseidon hases against an external library
(noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition`
(noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir`
(noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence
(noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication
(noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks
(noir-lang/noir#6253)
fix: visibility for impl methods
(noir-lang/noir#6261)
feat: Add `checked_transmute`
(noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace
(noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation
(noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation
(noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP
(noir-lang/noir#6256)
feat: visibility for struct fields
(noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization
(noir-lang/noir#6249)
fix: homogeneous input points for EC ADD
(noir-lang/noir#6241)
chore: add regression test for #5756
(noir-lang/noir#5770)
feat: allow `unconstrained` after visibility
(noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once
(noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to
main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix
(noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern
(noir-lang/noir#6236)
END_COMMIT_OVERRIDE

---------

Co-authored-by: Tom French <tom@tomfren.ch>
AztecBot added a commit to AztecProtocol/aztec-nr that referenced this pull request Oct 15, 2024
Automated pull of development from the
[noir](https://github.com/noir-lang/noir) programming language, a
dependency of Aztec.
BEGIN_COMMIT_OVERRIDE
feat(test): Fuzz poseidon hases against an external library
(noir-lang/noir#6273)
feat: remove byte decomposition in `compute_decomposition`
(noir-lang/noir#6159)
fix: address inactive public key check in `verify_signature_noir`
(noir-lang/noir#6270)
feat(test): Fuzz test poseidon2 hash equivalence
(noir-lang/noir#6265)
fix!: Integer division is not the inverse of integer multiplication
(noir-lang/noir#6243)
feat(perf): Flamegraphs for test program execution benchmarks
(noir-lang/noir#6253)
fix: visibility for impl methods
(noir-lang/noir#6261)
feat: Add `checked_transmute`
(noir-lang/noir#6262)
feat!: kind size checks (noir-lang/noir#6137)
feat: don't crash LSP when there are errors resolving the workspace
(noir-lang/noir#6257)
fix: don't warn on unuse global if it has an abi annotation
(noir-lang/noir#6258)
fix: don't warn on unused struct that has an abi annotation
(noir-lang/noir#6254)
feat: don't suggest private struct fields in LSP
(noir-lang/noir#6256)
feat: visibility for struct fields
(noir-lang/noir#6221)
fix: handle dfg databus in SSA normalization
(noir-lang/noir#6249)
fix: homogeneous input points for EC ADD
(noir-lang/noir#6241)
chore: add regression test for #5756
(noir-lang/noir#5770)
feat: allow `unconstrained` after visibility
(noir-lang/noir#6246)
feat: optimize `Quoted::as_expr` by parsing just once
(noir-lang/noir#6237)
fix(frontend): Do not warn when a nested struct is provided as input to
main (noir-lang/noir#6239)
fix!: Change tag attributes to require a ' prefix
(noir-lang/noir#6235)
feat: recover from '=' instead of ':' in struct constructor/pattern
(noir-lang/noir#6236)
END_COMMIT_OVERRIDE

---------

Co-authored-by: Tom French <tom@tomfren.ch>
TomAFrench pushed a commit to AztecProtocol/aztec-packages that referenced this pull request Oct 18, 2024
:robot: I have created a release *beep* *boop*
---


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

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-package-v0.57.0...aztec-package-v0.58.0)
(2024-10-18)


### ⚠ BREAKING CHANGES

* protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))

### Features

* Modify contract instance to include public keys
([#9153](https://github.com/AztecProtocol/aztec-packages/issues/9153))
([17c6127](https://github.com/AztecProtocol/aztec-packages/commit/17c612740dc3563321bf69c1760de1ef88b22124))
* Native tmux-based network e2e
([#9036](https://github.com/AztecProtocol/aztec-packages/issues/9036))
([f9fc73a](https://github.com/AztecProtocol/aztec-packages/commit/f9fc73a40f5b9d11ad92a6cee3e29d3fcc80425e))
* Protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))
([f3bcff0](https://github.com/AztecProtocol/aztec-packages/commit/f3bcff0c0943d190261de366301ed8f9267543f3))
* World state synchronizer reorgs
([#9091](https://github.com/AztecProtocol/aztec-packages/issues/9091))
([ba63b43](https://github.com/AztecProtocol/aztec-packages/commit/ba63b43c6e5c09ecda0ed94bdd3b875546400d27))


### Miscellaneous

* Added healthcheck and startup check
([#9112](https://github.com/AztecProtocol/aztec-packages/issues/9112))
([ffa012f](https://github.com/AztecProtocol/aztec-packages/commit/ffa012ffb1d0e72ddab68c066ca9e923bd1c0c2b))
* Default logging level to debug if debug set
([#9173](https://github.com/AztecProtocol/aztec-packages/issues/9173))
([febf744](https://github.com/AztecProtocol/aztec-packages/commit/febf7449c80ffe44eaadb88c088e35fa419ed443))
* Rename some prover env vars
([#9032](https://github.com/AztecProtocol/aztec-packages/issues/9032))
([e27ead8](https://github.com/AztecProtocol/aztec-packages/commit/e27ead85403d3f21ebc406e7d1a7e18190085603))
</details>

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

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg.js-v0.57.0...barretenberg.js-v0.58.0)
(2024-10-18)


### Features

* Browser tests for UltraHonk
([#9047](https://github.com/AztecProtocol/aztec-packages/issues/9047))
([f0d45dd](https://github.com/AztecProtocol/aztec-packages/commit/f0d45dd8d0c00707cd18989c3a45ff0c3cbc92a6))
* Docker_fast.sh
([#9273](https://github.com/AztecProtocol/aztec-packages/issues/9273))
([57e792e](https://github.com/AztecProtocol/aztec-packages/commit/57e792e6baaa2dfaef7af4c84d4ab75804c9d3de))
* Use s3 cache in bootstrap fast
([#9111](https://github.com/AztecProtocol/aztec-packages/issues/9111))
([349f938](https://github.com/AztecProtocol/aztec-packages/commit/349f938601f7a4fdbdf83aea62c7b8c244bbe434))


### Bug Fixes

* Limit number of bb.js threads to 32
([#9070](https://github.com/AztecProtocol/aztec-packages/issues/9070))
([97e4b9b](https://github.com/AztecProtocol/aztec-packages/commit/97e4b9b2e0d37575b6b5e4c7a22f85b60d1f418b))
* Make gate counting functions less confusing and avoid estimations
([#9046](https://github.com/AztecProtocol/aztec-packages/issues/9046))
([0bda0a4](https://github.com/AztecProtocol/aztec-packages/commit/0bda0a4d71ae0fb4352de0746f7d96b63b787888))
* Reduce SRS size back to normal
([#9098](https://github.com/AztecProtocol/aztec-packages/issues/9098))
([a306ea5](https://github.com/AztecProtocol/aztec-packages/commit/a306ea5ffeb13019427a96d8152e5642b717c5f6))
* Revert "feat: use s3 cache in bootstrap fast"
([#9181](https://github.com/AztecProtocol/aztec-packages/issues/9181))
([7872d09](https://github.com/AztecProtocol/aztec-packages/commit/7872d092c359298273d7ab1fc23fa61ae1973f8b))
* Revert "fix: Revert "feat: use s3 cache in bootstrap fast""
([#9182](https://github.com/AztecProtocol/aztec-packages/issues/9182))
([ce3d08a](https://github.com/AztecProtocol/aztec-packages/commit/ce3d08a18684da9f5b1289a2b9bdf60a66342590))
</details>

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

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-packages-v0.57.0...aztec-packages-v0.58.0)
(2024-10-18)


### ⚠ BREAKING CHANGES

* remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
* remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
* Integer division is not the inverse of integer multiplication
(https://github.com/noir-lang/noir/pull/6243)
* kind size checks (https://github.com/noir-lang/noir/pull/6137)
* Change tag attributes to require a ' prefix
(https://github.com/noir-lang/noir/pull/6235)
* **avm:** remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
* remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
* **avm:** more instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
* unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))
* protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))

### Features

* Add `checked_transmute` (https://github.com/noir-lang/noir/pull/6262)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Add insturmentation to attestation and epoch quote mem pools
([#9055](https://github.com/AztecProtocol/aztec-packages/issues/9055))
([7dfa295](https://github.com/AztecProtocol/aztec-packages/commit/7dfa2951d4116b104744704901d143b55dd275eb))
* Add more `Type` and `UnresolvedType` methods
(https://github.com/noir-lang/noir/pull/5994)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Add sequencer address to metrics
([#9145](https://github.com/AztecProtocol/aztec-packages/issues/9145))
([c33d38b](https://github.com/AztecProtocol/aztec-packages/commit/c33d38b68a8c109e138a2809b530f7fdb1abb122))
* Add validator address to logs
([#9143](https://github.com/AztecProtocol/aztec-packages/issues/9143))
([e245f83](https://github.com/AztecProtocol/aztec-packages/commit/e245f833e56b05cf11850cb8537d9dbba01de746))
* Allow `unconstrained` after visibility
(https://github.com/noir-lang/noir/pull/6246)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **avm:** Codegen recursive_verifier.cpp
([#9204](https://github.com/AztecProtocol/aztec-packages/issues/9204))
([2592e50](https://github.com/AztecProtocol/aztec-packages/commit/2592e50b2bd9e76d35a3c9caac4d7042fe26b9b6)),
closes
[#8849](https://github.com/AztecProtocol/aztec-packages/issues/8849)
* **avm:** Constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))
([308c03b](https://github.com/AztecProtocol/aztec-packages/commit/308c03b9ad45001570e6232f88403de8cc7d3cfb)),
closes
[#9001](https://github.com/AztecProtocol/aztec-packages/issues/9001)
* **avm:** More instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
([3a01ad9](https://github.com/AztecProtocol/aztec-packages/commit/3a01ad93e21e9e6cd27b7a2a4c1e2c9f24d6363e))
* **avm:** Remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
([68a7326](https://github.com/AztecProtocol/aztec-packages/commit/68a7326d9f2d4bd891acac12950289d6e9fbe617))
* Better tracing/metrics in validator and archiver
([#9108](https://github.com/AztecProtocol/aztec-packages/issues/9108))
([1801f5b](https://github.com/AztecProtocol/aztec-packages/commit/1801f5b49fb3b153817a1596c6fd568f1c762fe5))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
([5861d4e](https://github.com/AztecProtocol/aztec-packages/commit/5861d4e5e8a72161dac910e0bc8e635e0d332793))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
([409b7b8](https://github.com/AztecProtocol/aztec-packages/commit/409b7b8c6b43a91fc1b5be48aee0174d56d914d9))
* Browser tests for UltraHonk
([#9047](https://github.com/AztecProtocol/aztec-packages/issues/9047))
([f0d45dd](https://github.com/AztecProtocol/aztec-packages/commit/f0d45dd8d0c00707cd18989c3a45ff0c3cbc92a6))
* Chaos mesh
([#9196](https://github.com/AztecProtocol/aztec-packages/issues/9196))
([134bef8](https://github.com/AztecProtocol/aztec-packages/commit/134bef8c3820fbf8ed08c7b44cbf5636d9342d99))
* Docker_fast.sh
([#9273](https://github.com/AztecProtocol/aztec-packages/issues/9273))
([57e792e](https://github.com/AztecProtocol/aztec-packages/commit/57e792e6baaa2dfaef7af4c84d4ab75804c9d3de))
* Don't crash LSP when there are errors resolving the workspace
(https://github.com/noir-lang/noir/pull/6257)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Don't suggest private struct fields in LSP
(https://github.com/noir-lang/noir/pull/6256)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Drop epoch duration / block times
([#9149](https://github.com/AztecProtocol/aztec-packages/issues/9149))
([c3e859b](https://github.com/AztecProtocol/aztec-packages/commit/c3e859b86ce66d42ed04dfd1b3d82995490f74ae))
* Externally accessible spartan deployment
([#9171](https://github.com/AztecProtocol/aztec-packages/issues/9171))
([26edb4d](https://github.com/AztecProtocol/aztec-packages/commit/26edb4dd0b47df5d079fa8af7d20adef26da8ad7))
* Fix encoding of public keys
([#9158](https://github.com/AztecProtocol/aztec-packages/issues/9158))
([35c66c9](https://github.com/AztecProtocol/aztec-packages/commit/35c66c9875c6515d719ff4633236e4e11d1b54a1))
* Handwritten parser (https://github.com/noir-lang/noir/pull/6180)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* **improve:** Remove scan through globals
(https://github.com/noir-lang/noir/pull/6282)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Integrate databus in the private kernels
([#9028](https://github.com/AztecProtocol/aztec-packages/issues/9028))
([1798b1c](https://github.com/AztecProtocol/aztec-packages/commit/1798b1cc701824dd268ed0e49e592febf01a1687))
* Kind size checks (https://github.com/noir-lang/noir/pull/6137)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Make index in inbox global
([#9110](https://github.com/AztecProtocol/aztec-packages/issues/9110))
([375c017](https://github.com/AztecProtocol/aztec-packages/commit/375c017ac130a20f9cc20be11e5199327641013e)),
closes
[#9085](https://github.com/AztecProtocol/aztec-packages/issues/9085)
* Modify contract instance to include public keys
([#9153](https://github.com/AztecProtocol/aztec-packages/issues/9153))
([17c6127](https://github.com/AztecProtocol/aztec-packages/commit/17c612740dc3563321bf69c1760de1ef88b22124))
* Native testnet helper script
([#9260](https://github.com/AztecProtocol/aztec-packages/issues/9260))
([1613c0f](https://github.com/AztecProtocol/aztec-packages/commit/1613c0f0e13101bfa152a6a6fac3a07cf7604ef0))
* Native tmux-based network e2e
([#9036](https://github.com/AztecProtocol/aztec-packages/issues/9036))
([f9fc73a](https://github.com/AztecProtocol/aztec-packages/commit/f9fc73a40f5b9d11ad92a6cee3e29d3fcc80425e))
* New per-enqueued-call gas limit
([#9033](https://github.com/AztecProtocol/aztec-packages/issues/9033))
([6ef0895](https://github.com/AztecProtocol/aztec-packages/commit/6ef0895ed9788c533b0caf2d2c30839552dabbcc))
* New world state
([#8776](https://github.com/AztecProtocol/aztec-packages/issues/8776))
([41f3934](https://github.com/AztecProtocol/aztec-packages/commit/41f393443396cae77e09a09df07d42e6d5ff5618))
* Nomismatokopio
([#8940](https://github.com/AztecProtocol/aztec-packages/issues/8940))
([1f53957](https://github.com/AztecProtocol/aztec-packages/commit/1f53957ffea720fc008a80623d0fb1da8a3cb302))
* Optimize `Quoted::as_expr` by parsing just once
(https://github.com/noir-lang/noir/pull/6237)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Optimize reading a workspace's files
(https://github.com/noir-lang/noir/pull/6281)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Parameterize circuit epoch duration
([#9050](https://github.com/AztecProtocol/aztec-packages/issues/9050))
([1b902f6](https://github.com/AztecProtocol/aztec-packages/commit/1b902f663349198aa8f9b3a22663b5c8adc0d442))
* **perf:** Flamegraphs for test program execution benchmarks
(https://github.com/noir-lang/noir/pull/6253)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **perf:** Follow array sets backwards in array set from get
optimization (https://github.com/noir-lang/noir/pull/6208)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Persistent storage edit for anvil node
([#9089](https://github.com/AztecProtocol/aztec-packages/issues/9089))
([9b72a69](https://github.com/AztecProtocol/aztec-packages/commit/9b72a69940d2d601256dbb88f59c39af2af0f182))
* Protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))
([f3bcff0](https://github.com/AztecProtocol/aztec-packages/commit/f3bcff0c0943d190261de366301ed8f9267543f3))
* Recover from '=' instead of ':' in struct constructor/pattern
(https://github.com/noir-lang/noir/pull/6236)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Remove byte decomposition in `compute_decomposition`
(https://github.com/noir-lang/noir/pull/6159)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Replace Zeromorph with Shplemini in ECCVM
([#9102](https://github.com/AztecProtocol/aztec-packages/issues/9102))
([c857cd9](https://github.com/AztecProtocol/aztec-packages/commit/c857cd9167f696fc237b64ff579952001eba7d40))
* Restore VK tree
([#9156](https://github.com/AztecProtocol/aztec-packages/issues/9156))
([440e729](https://github.com/AztecProtocol/aztec-packages/commit/440e729758c3be99558cd36d4af3f10c324debb7))
* Show LSP diagnostic related information
(https://github.com/noir-lang/noir/pull/6277)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Slightly improve "unexpected token" error message
(https://github.com/noir-lang/noir/pull/6279)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Stable deployments for spartan
([#9147](https://github.com/AztecProtocol/aztec-packages/issues/9147))
([3e1c02e](https://github.com/AztecProtocol/aztec-packages/commit/3e1c02efed2bc10b5f88f3017f9940eb68533510))
* Structured commit
([#9027](https://github.com/AztecProtocol/aztec-packages/issues/9027))
([26f406b](https://github.com/AztecProtocol/aztec-packages/commit/26f406b0591b3f88cb37c5e8f7cb3cbfc625315e))
* Sysstia
([#8941](https://github.com/AztecProtocol/aztec-packages/issues/8941))
([2da2fe2](https://github.com/AztecProtocol/aztec-packages/commit/2da2fe2655ad57ab2bc19d589768b2b84ee8e393))
* **test:** Fuzz poseidon hases against an external library
(https://github.com/noir-lang/noir/pull/6273)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **test:** Fuzz test poseidon2 hash equivalence
(https://github.com/noir-lang/noir/pull/6265)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **test:** Fuzz test stdlib hash functions
(https://github.com/noir-lang/noir/pull/6233)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* **test:** Include the PoseidonHasher in the fuzzing
(https://github.com/noir-lang/noir/pull/6280)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Tracy time with instrumentation
([#9170](https://github.com/AztecProtocol/aztec-packages/issues/9170))
([1c008d9](https://github.com/AztecProtocol/aztec-packages/commit/1c008d9a2fad747142e8ca356d6c00cee1663f2c))
* Trait inheritance (https://github.com/noir-lang/noir/pull/6252)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))
([1323a34](https://github.com/AztecProtocol/aztec-packages/commit/1323a34c50e7727435129aa31a05ae7bdfb0ca09))
* Use s3 cache in bootstrap fast
([#9111](https://github.com/AztecProtocol/aztec-packages/issues/9111))
([349f938](https://github.com/AztecProtocol/aztec-packages/commit/349f938601f7a4fdbdf83aea62c7b8c244bbe434))
* Visibility for struct fields
(https://github.com/noir-lang/noir/pull/6221)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* World State Re-orgs
([#9035](https://github.com/AztecProtocol/aztec-packages/issues/9035))
([04f4a7b](https://github.com/AztecProtocol/aztec-packages/commit/04f4a7b2ae141b7eee4464e8d2cc91460d0c650a))
* World state synchronizer reorgs
([#9091](https://github.com/AztecProtocol/aztec-packages/issues/9091))
([ba63b43](https://github.com/AztecProtocol/aztec-packages/commit/ba63b43c6e5c09ecda0ed94bdd3b875546400d27))


### Bug Fixes

* Accidental e2e inclusion
([6e651de](https://github.com/AztecProtocol/aztec-packages/commit/6e651de0d37b925900d2109a9c1b1f67f25005c1))
* Address inactive public key check in `verify_signature_noir`
(https://github.com/noir-lang/noir/pull/6270)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Allow passing rayon threads when building aztec images
([#9096](https://github.com/AztecProtocol/aztec-packages/issues/9096))
([05de539](https://github.com/AztecProtocol/aztec-packages/commit/05de539d3a1a9dbfb2885b5b0d6d06e6109bbc77))
* Assert block header matches
([#9172](https://github.com/AztecProtocol/aztec-packages/issues/9172))
([3e0504d](https://github.com/AztecProtocol/aztec-packages/commit/3e0504dc781878578d0e97450593f4628b6a57b0))
* Avoid huge compilation times in base rollup
([#9113](https://github.com/AztecProtocol/aztec-packages/issues/9113))
([6eb43b6](https://github.com/AztecProtocol/aztec-packages/commit/6eb43b64cb13d97ecf8f8025a6d7e622d81b5db6))
* Bb bootstrap_cache.sh
([#9254](https://github.com/AztecProtocol/aztec-packages/issues/9254))
([df37104](https://github.com/AztecProtocol/aztec-packages/commit/df3710477fc7d2e7c44e62b116bea74d4e14f930))
* Better handle async timings in test
([#9178](https://github.com/AztecProtocol/aztec-packages/issues/9178))
([fb35151](https://github.com/AztecProtocol/aztec-packages/commit/fb35151c0d5e08f56b263eb15e0ddfc1565d4b17))
* Buffer instanceof usage
([#9235](https://github.com/AztecProtocol/aztec-packages/issues/9235))
([8e66ef9](https://github.com/AztecProtocol/aztec-packages/commit/8e66ef97b133b3d57d5b3742e0acf2b3792433f7))
* Build error around bb config in cli cmd
([#9134](https://github.com/AztecProtocol/aztec-packages/issues/9134))
([a5b677c](https://github.com/AztecProtocol/aztec-packages/commit/a5b677ca4aec3ace39924869c9517a256749c588))
* Call correct method on fee juice contract
([#9137](https://github.com/AztecProtocol/aztec-packages/issues/9137))
([2dff976](https://github.com/AztecProtocol/aztec-packages/commit/2dff976202022cc474fdcc67bdcd3bc72e61dc70))
* Change tag attributes to require a ' prefix
(https://github.com/noir-lang/noir/pull/6235)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Check for Schnorr null signature
(https://github.com/noir-lang/noir/pull/6226)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* **ci:** Don't report for now on kind-network-test
([#9163](https://github.com/AztecProtocol/aztec-packages/issues/9163))
([c59d693](https://github.com/AztecProtocol/aztec-packages/commit/c59d6936ea46296359abbd3cbf0823d44e64da90))
* Dockerized vk build
([#9078](https://github.com/AztecProtocol/aztec-packages/issues/9078))
([2aac1fb](https://github.com/AztecProtocol/aztec-packages/commit/2aac1fb78790eb4472529146ab5ef562abe1d0fc))
* Docs pdf generation
([#9114](https://github.com/AztecProtocol/aztec-packages/issues/9114))
([2f9c4e9](https://github.com/AztecProtocol/aztec-packages/commit/2f9c4e9883d3081fc9d6bf73bc2305ae197a61e8))
* Don't warn on unuse global if it has an abi annotation
(https://github.com/noir-lang/noir/pull/6258)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Don't warn on unused struct that has an abi annotation
(https://github.com/noir-lang/noir/pull/6254)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* E2e bot follows pending chain
([#9115](https://github.com/AztecProtocol/aztec-packages/issues/9115))
([9afd190](https://github.com/AztecProtocol/aztec-packages/commit/9afd190fc234b1df64b53293434f1a1ab5e0dc94))
* E2e-p2p attestation timeout
([#9154](https://github.com/AztecProtocol/aztec-packages/issues/9154))
([25bd47b](https://github.com/AztecProtocol/aztec-packages/commit/25bd47bb4faad24822d4671ee524fd6f1a50ff49))
* **frontend:** Do not warn when a nested struct is provided as input to
main (https://github.com/noir-lang/noir/pull/6239)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Handle dfg databus in SSA normalization
(https://github.com/noir-lang/noir/pull/6249)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Handle nested arrays in calldata
(https://github.com/noir-lang/noir/pull/6232)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Homogeneous input points for EC ADD
(https://github.com/noir-lang/noir/pull/6241)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Increase l1 propose gas estimate
([#9071](https://github.com/AztecProtocol/aztec-packages/issues/9071))
([9d28414](https://github.com/AztecProtocol/aztec-packages/commit/9d284140bd58a9485fdbc3db52c08496adf1f7d1))
* Integer division is not the inverse of integer multiplication
(https://github.com/noir-lang/noir/pull/6243)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* K8s peer discovery
([#9274](https://github.com/AztecProtocol/aztec-packages/issues/9274))
([61e4d12](https://github.com/AztecProtocol/aztec-packages/commit/61e4d1290a9d019f3a2c54d504d9560fead4c6fa))
* Limit number of bb.js threads to 32
([#9070](https://github.com/AztecProtocol/aztec-packages/issues/9070))
([97e4b9b](https://github.com/AztecProtocol/aztec-packages/commit/97e4b9b2e0d37575b6b5e4c7a22f85b60d1f418b))
* Limit number of threads
([#9135](https://github.com/AztecProtocol/aztec-packages/issues/9135))
([19d2620](https://github.com/AztecProtocol/aztec-packages/commit/19d2620e7536dfe99eaea901da647aaf78478f2e))
* Mac-build
([#9216](https://github.com/AztecProtocol/aztec-packages/issues/9216))
([80ea32c](https://github.com/AztecProtocol/aztec-packages/commit/80ea32cfda8c149980938382518c47a6da123e72))
* Make gate counting functions less confusing and avoid estimations
([#9046](https://github.com/AztecProtocol/aztec-packages/issues/9046))
([0bda0a4](https://github.com/AztecProtocol/aztec-packages/commit/0bda0a4d71ae0fb4352de0746f7d96b63b787888))
* Native_world_state_instance.ts
([#9136](https://github.com/AztecProtocol/aztec-packages/issues/9136))
([4a204c1](https://github.com/AztecProtocol/aztec-packages/commit/4a204c12c8dab688848a1aa2d65fcde7d3ee4982))
* Panic on composite types within databus
(https://github.com/noir-lang/noir/pull/6225)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Prevent compiler panic when popping from empty slices
(https://github.com/noir-lang/noir/pull/6274)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Prometheus metrics
([#9226](https://github.com/AztecProtocol/aztec-packages/issues/9226))
([9445a4f](https://github.com/AztecProtocol/aztec-packages/commit/9445a4fba8e3092c3948ffe9d5eaf5f679fce89c))
* Publish-aztec-packages.yml
([#9229](https://github.com/AztecProtocol/aztec-packages/issues/9229))
([4bfeb83](https://github.com/AztecProtocol/aztec-packages/commit/4bfeb830ffc421386f4f9f8b4a23e2bc7fbf832d)),
closes
[#9220](https://github.com/AztecProtocol/aztec-packages/issues/9220)
* Reduce SRS size back to normal
([#9098](https://github.com/AztecProtocol/aztec-packages/issues/9098))
([a306ea5](https://github.com/AztecProtocol/aztec-packages/commit/a306ea5ffeb13019427a96d8152e5642b717c5f6))
* Reject invalid expression with in CLI parser
(https://github.com/noir-lang/noir/pull/6287)
([70fb8fa](https://github.com/AztecProtocol/aztec-packages/commit/70fb8fa97ab0d2484cb49126271df7aa18432f3e))
* Release `master` dockerhub images
([#9117](https://github.com/AztecProtocol/aztec-packages/issues/9117))
([6662fba](https://github.com/AztecProtocol/aztec-packages/commit/6662fbae99808d6d4de9f39db6ef587bb455156c))
* Remove need for duplicate attributes on each function
([#9244](https://github.com/AztecProtocol/aztec-packages/issues/9244))
([ed933ee](https://github.com/AztecProtocol/aztec-packages/commit/ed933eefc2aab4b616dca94fee9a02837aec7fb9)),
closes
[#9243](https://github.com/AztecProtocol/aztec-packages/issues/9243)
* Revert "feat: new per-enqueued-call gas limit"
([#9139](https://github.com/AztecProtocol/aztec-packages/issues/9139))
([7677ca5](https://github.com/AztecProtocol/aztec-packages/commit/7677ca5d9280ac9615a92be36d1958960dbd7353))
* Revert "feat: use s3 cache in bootstrap fast"
([#9181](https://github.com/AztecProtocol/aztec-packages/issues/9181))
([7872d09](https://github.com/AztecProtocol/aztec-packages/commit/7872d092c359298273d7ab1fc23fa61ae1973f8b))
* Revert "fix: Revert "feat: use s3 cache in bootstrap fast""
([#9182](https://github.com/AztecProtocol/aztec-packages/issues/9182))
([ce3d08a](https://github.com/AztecProtocol/aztec-packages/commit/ce3d08a18684da9f5b1289a2b9bdf60a66342590))
* **s3-cache:** Link extracted preset-release-world-state
([#9252](https://github.com/AztecProtocol/aztec-packages/issues/9252))
([8b2d7d9](https://github.com/AztecProtocol/aztec-packages/commit/8b2d7d9c962c975592e17424f4d0b70f9ca7acd4))
* Setup fee juice for e2e tests
([#9094](https://github.com/AztecProtocol/aztec-packages/issues/9094))
([a8ec91a](https://github.com/AztecProtocol/aztec-packages/commit/a8ec91a32d8fee3d309c855ed9d43a6c025c487b))
* Spartan account pre-funding
([#9161](https://github.com/AztecProtocol/aztec-packages/issues/9161))
([f4754f7](https://github.com/AztecProtocol/aztec-packages/commit/f4754f7ea9587edbe8367c49539f65d25e251e23))
* Transaction bot proper configuration
([#9106](https://github.com/AztecProtocol/aztec-packages/issues/9106))
([666fc38](https://github.com/AztecProtocol/aztec-packages/commit/666fc382fba1235ec0bca9a6cd027734e49eb182))
* Unrevert "feat: trace AVM side effects per enqueued call""
([#9095](https://github.com/AztecProtocol/aztec-packages/issues/9095))
([72e4867](https://github.com/AztecProtocol/aztec-packages/commit/72e4867fc0c429563f7c54092470010d1e6553a9))
* Visibility for impl methods
(https://github.com/noir-lang/noir/pull/6261)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))


### Miscellaneous

* Activate peer scoring for other p2p topics
([#9097](https://github.com/AztecProtocol/aztec-packages/issues/9097))
([18d24fb](https://github.com/AztecProtocol/aztec-packages/commit/18d24fbd1083c22507cd7b421976c7c63f11d140))
* Add regression test for
[#5756](https://github.com/AztecProtocol/aztec-packages/issues/5756)
(https://github.com/noir-lang/noir/pull/5770)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Add world_state_napi to bootstrap fast
([#9079](https://github.com/AztecProtocol/aztec-packages/issues/9079))
([e827056](https://github.com/AztecProtocol/aztec-packages/commit/e827056e652a4789c91a617587945d57163fa7ff))
* Added healthcheck and startup check
([#9112](https://github.com/AztecProtocol/aztec-packages/issues/9112))
([ffa012f](https://github.com/AztecProtocol/aztec-packages/commit/ffa012ffb1d0e72ddab68c066ca9e923bd1c0c2b))
* Adjust debug level of received attestations
([#9087](https://github.com/AztecProtocol/aztec-packages/issues/9087))
([eb67dd4](https://github.com/AztecProtocol/aztec-packages/commit/eb67dd4ab47755cd8e1445be3fb1b75a4d6c3f21))
* **avm:** Revert 9080 - re-introducing start/end gas constraining
([#9109](https://github.com/AztecProtocol/aztec-packages/issues/9109))
([763e9b8](https://github.com/AztecProtocol/aztec-packages/commit/763e9b8a98981545b68f96e5b49a0726fc3c80b3))
* **avm:** Type aliasing for VmPublicInputs
([#8884](https://github.com/AztecProtocol/aztec-packages/issues/8884))
([f3ed39b](https://github.com/AztecProtocol/aztec-packages/commit/f3ed39bf7be6f08bcfcabf6c04eb570f4d06ed27))
* **ci:** Disable gossip_network.test.ts
([#9165](https://github.com/AztecProtocol/aztec-packages/issues/9165))
([5e7ab1d](https://github.com/AztecProtocol/aztec-packages/commit/5e7ab1de0a9b4da56ff84381cf3dea44837bd79d))
* **ci:** Parallelise CI for acir-test flows
([#9238](https://github.com/AztecProtocol/aztec-packages/issues/9238))
([73a7c23](https://github.com/AztecProtocol/aztec-packages/commit/73a7c231193d56fdbf2e1160be5ea8d58f5596bb))
* **ci:** Parallelise noir-projects CI
([#9270](https://github.com/AztecProtocol/aztec-packages/issues/9270))
([44ad5e5](https://github.com/AztecProtocol/aztec-packages/commit/44ad5e595c09639eac0913be3b653d32eb4accac))
* **ci:** Try to offload compute burden when merging
([#9213](https://github.com/AztecProtocol/aztec-packages/issues/9213))
([c8dc016](https://github.com/AztecProtocol/aztec-packages/commit/c8dc016a2bfc5b41899c32e3bf2b2d3ffb855140))
* Configure trees instead of duplicating constants
([#9088](https://github.com/AztecProtocol/aztec-packages/issues/9088))
([c1150c9](https://github.com/AztecProtocol/aztec-packages/commit/c1150c9b28581985686b13ba97eb7f0066736652))
* Default logging level to debug if debug set
([#9173](https://github.com/AztecProtocol/aztec-packages/issues/9173))
([febf744](https://github.com/AztecProtocol/aztec-packages/commit/febf7449c80ffe44eaadb88c088e35fa419ed443))
* **deployments:** Native network test
([#9138](https://github.com/AztecProtocol/aztec-packages/issues/9138))
([975ea36](https://github.com/AztecProtocol/aztec-packages/commit/975ea3617d9cddc2d2c35aa56c8e7b1f5d5069ab))
* Different metrics values for production and local
([#9124](https://github.com/AztecProtocol/aztec-packages/issues/9124))
([6888d70](https://github.com/AztecProtocol/aztec-packages/commit/6888d70be014b4d541c1e584248ae6eca8562a04))
* Disable e2e-p2p completely
([#9219](https://github.com/AztecProtocol/aztec-packages/issues/9219))
([286d617](https://github.com/AztecProtocol/aztec-packages/commit/286d617e3f06395ee5c88339b8d57170aad00213))
* Disable flakey rediscovery.test.ts
([#9217](https://github.com/AztecProtocol/aztec-packages/issues/9217))
([14e73e2](https://github.com/AztecProtocol/aztec-packages/commit/14e73e29a784a3b6131b464b40058dcf8bb53a86))
* **docs:** Rewriting bbup script, refactoring bb readme for clarity
([#9073](https://github.com/AztecProtocol/aztec-packages/issues/9073))
([662b61e](https://github.com/AztecProtocol/aztec-packages/commit/662b61e4c20a2d4217980922d4578f4dfeacae6b))
* Eccvm transcript builder
([#9026](https://github.com/AztecProtocol/aztec-packages/issues/9026))
([d2c9ae2](https://github.com/AztecProtocol/aztec-packages/commit/d2c9ae2853bb75cd736583406a57e96645bd2e88))
* Expose util func to convert field compressed string back to string in
aztec js
([#9239](https://github.com/AztecProtocol/aztec-packages/issues/9239))
([ce7e687](https://github.com/AztecProtocol/aztec-packages/commit/ce7e687506104828ddc96f66fd30845bda6494fc)),
closes
[#9233](https://github.com/AztecProtocol/aztec-packages/issues/9233)
* Fix missing migrations to immutable contract fn interaction
([#9053](https://github.com/AztecProtocol/aztec-packages/issues/9053))
([41c496f](https://github.com/AztecProtocol/aztec-packages/commit/41c496f9271ebe3d53fbb6d988a7306617ee7e38))
* Format noir stuff
([#9202](https://github.com/AztecProtocol/aztec-packages/issues/9202))
([2b09709](https://github.com/AztecProtocol/aztec-packages/commit/2b09709932885b8a0de4bf2b91fb381d39baf6b2))
* Goodbye circleci
([#9259](https://github.com/AztecProtocol/aztec-packages/issues/9259))
([dab2a93](https://github.com/AztecProtocol/aztec-packages/commit/dab2a933128a3b42c6a62152a51a46c5e7a3d09d))
* Improve setup_local_k8s.sh to focus kind
([#9228](https://github.com/AztecProtocol/aztec-packages/issues/9228))
([8efdb47](https://github.com/AztecProtocol/aztec-packages/commit/8efdb474611730320ca2aadd87ff6238d464c2c9))
* Increase tx bot delay
([9e0ab97](https://github.com/AztecProtocol/aztec-packages/commit/9e0ab97194b8338e4b4292229c9bf911c7446dcc))
* Log revert reason on publish to L1
([#9067](https://github.com/AztecProtocol/aztec-packages/issues/9067))
([814b6d0](https://github.com/AztecProtocol/aztec-packages/commit/814b6d09d1e4750c5b3277cebde523f17af5f85e))
* Modify note processors and synchronizers to use complete address
([#9152](https://github.com/AztecProtocol/aztec-packages/issues/9152))
([730d90f](https://github.com/AztecProtocol/aztec-packages/commit/730d90fcfdc65c00a1867420fdc8211a72293cd9))
* Move contract stuff from types into circuits.js
([#9151](https://github.com/AztecProtocol/aztec-packages/issues/9151))
([d8131bc](https://github.com/AztecProtocol/aztec-packages/commit/d8131bc5c1b4d47d20c3312598296bfb89cecf11))
* Move public keys to protocol circuits
([#9074](https://github.com/AztecProtocol/aztec-packages/issues/9074))
([8adbdd5](https://github.com/AztecProtocol/aztec-packages/commit/8adbdd5827a81cf7b34bc06883367d0dc47a47a2))
* Offsite network stuff
([#9231](https://github.com/AztecProtocol/aztec-packages/issues/9231))
([155b40b](https://github.com/AztecProtocol/aztec-packages/commit/155b40b67616387f183dcb05d6ab08e9e4c3ab72))
* **p2p:** Refactor pools
([#9065](https://github.com/AztecProtocol/aztec-packages/issues/9065))
([b62235e](https://github.com/AztecProtocol/aztec-packages/commit/b62235ed75b55f79fd84a5ebf1a1f5af28fa289a))
* **p2p:** Store received epoch quotes
([#9064](https://github.com/AztecProtocol/aztec-packages/issues/9064))
([e3b467f](https://github.com/AztecProtocol/aztec-packages/commit/e3b467f70ca1d41bd27ac7231e257f1329ed0896))
* Pass by const reference
([#9083](https://github.com/AztecProtocol/aztec-packages/issues/9083))
([764bba4](https://github.com/AztecProtocol/aztec-packages/commit/764bba4dd8a016d45b201562ec82f9a12de65c2d))
* Pre-initialise validators in cluster
([#9048](https://github.com/AztecProtocol/aztec-packages/issues/9048))
([e2d32a1](https://github.com/AztecProtocol/aztec-packages/commit/e2d32a113ca279ee205a666c24061199e34e1e7b))
* Quieter cache-download.sh
([#9176](https://github.com/AztecProtocol/aztec-packages/issues/9176))
([b75d4c8](https://github.com/AztecProtocol/aztec-packages/commit/b75d4c85531ab149e142b79749eca9320baacf1a))
* Reenable sync test
([#9160](https://github.com/AztecProtocol/aztec-packages/issues/9160))
([a71642f](https://github.com/AztecProtocol/aztec-packages/commit/a71642f052e89f601c30f082b83c372d6e68f9ee))
* Regression test for
[#5462](https://github.com/AztecProtocol/aztec-packages/issues/5462)
(https://github.com/noir-lang/noir/pull/6286)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Remove AvmVerificationKeyData and tube specific types
([#8569](https://github.com/AztecProtocol/aztec-packages/issues/8569))
([da6c579](https://github.com/AztecProtocol/aztec-packages/commit/da6c579975112d8d629e64834465b6a52b04eb6a))
* Remove end-to-end from circleci
([#9116](https://github.com/AztecProtocol/aztec-packages/issues/9116))
([4d1f7d8](https://github.com/AztecProtocol/aztec-packages/commit/4d1f7d83f9d14b1df70a26c99f696aebd0416ebd))
* Remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
([4c1163a](https://github.com/AztecProtocol/aztec-packages/commit/4c1163a9e9516d298e55421f1cf0ed81081151dd))
* Remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
([1823bde](https://github.com/AztecProtocol/aztec-packages/commit/1823bde2b486827f33a87899074594f811cfbef4))
* Remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
([1f0538f](https://github.com/AztecProtocol/aztec-packages/commit/1f0538f00cadcf4325d2aa17bdb098d11ca3840f))
* Rename some prover env vars
([#9032](https://github.com/AztecProtocol/aztec-packages/issues/9032))
([e27ead8](https://github.com/AztecProtocol/aztec-packages/commit/e27ead85403d3f21ebc406e7d1a7e18190085603))
* Replace relative paths to noir-protocol-circuits
([424afba](https://github.com/AztecProtocol/aztec-packages/commit/424afbae1b1d4a9a8e01dfe4cca141407bf1bc44))
* Replace relative paths to noir-protocol-circuits
([bef3907](https://github.com/AztecProtocol/aztec-packages/commit/bef39073e2a380bf7ae815053dc6d5e4665aa13a))
* Replace relative paths to noir-protocol-circuits
([1b21a31](https://github.com/AztecProtocol/aztec-packages/commit/1b21a317209be12453d805e29a3112e47cfcf394))
* Replace relative paths to noir-protocol-circuits
([5285348](https://github.com/AztecProtocol/aztec-packages/commit/52853488488b68dde602f9facb5c5d42d5609c8c))
* Replace relative paths to noir-protocol-circuits
([7934d39](https://github.com/AztecProtocol/aztec-packages/commit/7934d3946c856ecbc194be0e59f7a4023fdf66e2))
* Replace relative paths to noir-protocol-circuits
([b787722](https://github.com/AztecProtocol/aztec-packages/commit/b787722d72068160ca57440807edc1939dbb1cfe))
* Replace relative paths to noir-protocol-circuits
([21cb2b1](https://github.com/AztecProtocol/aztec-packages/commit/21cb2b1e68befc5c0cbb051d4521ea39b10cfb48))
* Replace relative paths to noir-protocol-circuits
([facf462](https://github.com/AztecProtocol/aztec-packages/commit/facf4625e7bc4d5506464f4e1d331d1b6ad48bc8))
* Replace relative paths to noir-protocol-circuits
([45a72af](https://github.com/AztecProtocol/aztec-packages/commit/45a72afac98b3be090cf517aaa8948d72015462f))
* Reproduce AVM ecadd bug
([#9019](https://github.com/AztecProtocol/aztec-packages/issues/9019))
([757ccef](https://github.com/AztecProtocol/aztec-packages/commit/757ccefd280a0798d1f6fc5cb62efafe86764bee))
* Revert "feat(avm): constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))"
([#9080](https://github.com/AztecProtocol/aztec-packages/issues/9080))
([07e4c95](https://github.com/AztecProtocol/aztec-packages/commit/07e4c956494154685970849bc4dda60c25af31bc))
* Revert deletion of the old bbup
([#9146](https://github.com/AztecProtocol/aztec-packages/issues/9146))
([3138078](https://github.com/AztecProtocol/aztec-packages/commit/3138078f0062d8426b3c45ac47646169317ab795))
* Script for deploying the spartan network
([#9167](https://github.com/AztecProtocol/aztec-packages/issues/9167))
([4660cec](https://github.com/AztecProtocol/aztec-packages/commit/4660cec92802d0e165a2a1ddff08c6756348b527))
* Swap `pub` and `unconstrained` in function signatures
([#9237](https://github.com/AztecProtocol/aztec-packages/issues/9237))
([1c7e627](https://github.com/AztecProtocol/aztec-packages/commit/1c7e627e28eeabe0cbf9ccae45e107d66b0953b0))
* Update palla/update-env-vars-prover to add new env var to spartan
([#9069](https://github.com/AztecProtocol/aztec-packages/issues/9069))
([077a01c](https://github.com/AztecProtocol/aztec-packages/commit/077a01c9a10d5a30c85e881d4a786eed7e25c492))
* Update validator management policy to be parallel
([#9086](https://github.com/AztecProtocol/aztec-packages/issues/9086))
([f8267f2](https://github.com/AztecProtocol/aztec-packages/commit/f8267f292b9aabfa29e3e056cb42f56d5ad0f163))
* Wire bb skip cleanup for bb prover
([#9100](https://github.com/AztecProtocol/aztec-packages/issues/9100))
([bba5674](https://github.com/AztecProtocol/aztec-packages/commit/bba56743ece19986f8259c4cf5bfdd7573207054))


### Documentation

* Initial pass on node guide
([#9192](https://github.com/AztecProtocol/aztec-packages/issues/9192))
([0fa1423](https://github.com/AztecProtocol/aztec-packages/commit/0fa14238fa83e8ad3939db8d4afd664e179fa887))
</details>

<details><summary>barretenberg: 0.58.0</summary>

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg-v0.57.0...barretenberg-v0.58.0)
(2024-10-18)


### ⚠ BREAKING CHANGES

* remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
* remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
* **avm:** remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
* remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
* **avm:** more instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
* unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))

### Features

* **avm:** Codegen recursive_verifier.cpp
([#9204](https://github.com/AztecProtocol/aztec-packages/issues/9204))
([2592e50](https://github.com/AztecProtocol/aztec-packages/commit/2592e50b2bd9e76d35a3c9caac4d7042fe26b9b6)),
closes
[#8849](https://github.com/AztecProtocol/aztec-packages/issues/8849)
* **avm:** Constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))
([308c03b](https://github.com/AztecProtocol/aztec-packages/commit/308c03b9ad45001570e6232f88403de8cc7d3cfb)),
closes
[#9001](https://github.com/AztecProtocol/aztec-packages/issues/9001)
* **avm:** More instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
([3a01ad9](https://github.com/AztecProtocol/aztec-packages/commit/3a01ad93e21e9e6cd27b7a2a4c1e2c9f24d6363e))
* **avm:** Remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
([68a7326](https://github.com/AztecProtocol/aztec-packages/commit/68a7326d9f2d4bd891acac12950289d6e9fbe617))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
([5861d4e](https://github.com/AztecProtocol/aztec-packages/commit/5861d4e5e8a72161dac910e0bc8e635e0d332793))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
([409b7b8](https://github.com/AztecProtocol/aztec-packages/commit/409b7b8c6b43a91fc1b5be48aee0174d56d914d9))
* Browser tests for UltraHonk
([#9047](https://github.com/AztecProtocol/aztec-packages/issues/9047))
([f0d45dd](https://github.com/AztecProtocol/aztec-packages/commit/f0d45dd8d0c00707cd18989c3a45ff0c3cbc92a6))
* Integrate databus in the private kernels
([#9028](https://github.com/AztecProtocol/aztec-packages/issues/9028))
([1798b1c](https://github.com/AztecProtocol/aztec-packages/commit/1798b1cc701824dd268ed0e49e592febf01a1687))
* Modify contract instance to include public keys
([#9153](https://github.com/AztecProtocol/aztec-packages/issues/9153))
([17c6127](https://github.com/AztecProtocol/aztec-packages/commit/17c612740dc3563321bf69c1760de1ef88b22124))
* New per-enqueued-call gas limit
([#9033](https://github.com/AztecProtocol/aztec-packages/issues/9033))
([6ef0895](https://github.com/AztecProtocol/aztec-packages/commit/6ef0895ed9788c533b0caf2d2c30839552dabbcc))
* New world state
([#8776](https://github.com/AztecProtocol/aztec-packages/issues/8776))
([41f3934](https://github.com/AztecProtocol/aztec-packages/commit/41f393443396cae77e09a09df07d42e6d5ff5618))
* Replace Zeromorph with Shplemini in ECCVM
([#9102](https://github.com/AztecProtocol/aztec-packages/issues/9102))
([c857cd9](https://github.com/AztecProtocol/aztec-packages/commit/c857cd9167f696fc237b64ff579952001eba7d40))
* Structured commit
([#9027](https://github.com/AztecProtocol/aztec-packages/issues/9027))
([26f406b](https://github.com/AztecProtocol/aztec-packages/commit/26f406b0591b3f88cb37c5e8f7cb3cbfc625315e))
* Tracy time with instrumentation
([#9170](https://github.com/AztecProtocol/aztec-packages/issues/9170))
([1c008d9](https://github.com/AztecProtocol/aztec-packages/commit/1c008d9a2fad747142e8ca356d6c00cee1663f2c))
* Unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))
([1323a34](https://github.com/AztecProtocol/aztec-packages/commit/1323a34c50e7727435129aa31a05ae7bdfb0ca09))
* Use s3 cache in bootstrap fast
([#9111](https://github.com/AztecProtocol/aztec-packages/issues/9111))
([349f938](https://github.com/AztecProtocol/aztec-packages/commit/349f938601f7a4fdbdf83aea62c7b8c244bbe434))
* World State Re-orgs
([#9035](https://github.com/AztecProtocol/aztec-packages/issues/9035))
([04f4a7b](https://github.com/AztecProtocol/aztec-packages/commit/04f4a7b2ae141b7eee4464e8d2cc91460d0c650a))


### Bug Fixes

* Bb bootstrap_cache.sh
([#9254](https://github.com/AztecProtocol/aztec-packages/issues/9254))
([df37104](https://github.com/AztecProtocol/aztec-packages/commit/df3710477fc7d2e7c44e62b116bea74d4e14f930))
* Limit number of bb.js threads to 32
([#9070](https://github.com/AztecProtocol/aztec-packages/issues/9070))
([97e4b9b](https://github.com/AztecProtocol/aztec-packages/commit/97e4b9b2e0d37575b6b5e4c7a22f85b60d1f418b))
* Mac-build
([#9216](https://github.com/AztecProtocol/aztec-packages/issues/9216))
([80ea32c](https://github.com/AztecProtocol/aztec-packages/commit/80ea32cfda8c149980938382518c47a6da123e72))
* Make gate counting functions less confusing and avoid estimations
([#9046](https://github.com/AztecProtocol/aztec-packages/issues/9046))
([0bda0a4](https://github.com/AztecProtocol/aztec-packages/commit/0bda0a4d71ae0fb4352de0746f7d96b63b787888))
* Reduce SRS size back to normal
([#9098](https://github.com/AztecProtocol/aztec-packages/issues/9098))
([a306ea5](https://github.com/AztecProtocol/aztec-packages/commit/a306ea5ffeb13019427a96d8152e5642b717c5f6))
* Revert "feat: new per-enqueued-call gas limit"
([#9139](https://github.com/AztecProtocol/aztec-packages/issues/9139))
([7677ca5](https://github.com/AztecProtocol/aztec-packages/commit/7677ca5d9280ac9615a92be36d1958960dbd7353))
* Revert "feat: use s3 cache in bootstrap fast"
([#9181](https://github.com/AztecProtocol/aztec-packages/issues/9181))
([7872d09](https://github.com/AztecProtocol/aztec-packages/commit/7872d092c359298273d7ab1fc23fa61ae1973f8b))
* Revert "fix: Revert "feat: use s3 cache in bootstrap fast""
([#9182](https://github.com/AztecProtocol/aztec-packages/issues/9182))
([ce3d08a](https://github.com/AztecProtocol/aztec-packages/commit/ce3d08a18684da9f5b1289a2b9bdf60a66342590))
* **s3-cache:** Link extracted preset-release-world-state
([#9252](https://github.com/AztecProtocol/aztec-packages/issues/9252))
([8b2d7d9](https://github.com/AztecProtocol/aztec-packages/commit/8b2d7d9c962c975592e17424f4d0b70f9ca7acd4))


### Miscellaneous

* Add world_state_napi to bootstrap fast
([#9079](https://github.com/AztecProtocol/aztec-packages/issues/9079))
([e827056](https://github.com/AztecProtocol/aztec-packages/commit/e827056e652a4789c91a617587945d57163fa7ff))
* **avm:** Revert 9080 - re-introducing start/end gas constraining
([#9109](https://github.com/AztecProtocol/aztec-packages/issues/9109))
([763e9b8](https://github.com/AztecProtocol/aztec-packages/commit/763e9b8a98981545b68f96e5b49a0726fc3c80b3))
* **avm:** Type aliasing for VmPublicInputs
([#8884](https://github.com/AztecProtocol/aztec-packages/issues/8884))
([f3ed39b](https://github.com/AztecProtocol/aztec-packages/commit/f3ed39bf7be6f08bcfcabf6c04eb570f4d06ed27))
* **ci:** Parallelise CI for acir-test flows
([#9238](https://github.com/AztecProtocol/aztec-packages/issues/9238))
([73a7c23](https://github.com/AztecProtocol/aztec-packages/commit/73a7c231193d56fdbf2e1160be5ea8d58f5596bb))
* Configure trees instead of duplicating constants
([#9088](https://github.com/AztecProtocol/aztec-packages/issues/9088))
([c1150c9](https://github.com/AztecProtocol/aztec-packages/commit/c1150c9b28581985686b13ba97eb7f0066736652))
* **docs:** Rewriting bbup script, refactoring bb readme for clarity
([#9073](https://github.com/AztecProtocol/aztec-packages/issues/9073))
([662b61e](https://github.com/AztecProtocol/aztec-packages/commit/662b61e4c20a2d4217980922d4578f4dfeacae6b))
* Eccvm transcript builder
([#9026](https://github.com/AztecProtocol/aztec-packages/issues/9026))
([d2c9ae2](https://github.com/AztecProtocol/aztec-packages/commit/d2c9ae2853bb75cd736583406a57e96645bd2e88))
* Pass by const reference
([#9083](https://github.com/AztecProtocol/aztec-packages/issues/9083))
([764bba4](https://github.com/AztecProtocol/aztec-packages/commit/764bba4dd8a016d45b201562ec82f9a12de65c2d))
* Remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
([4c1163a](https://github.com/AztecProtocol/aztec-packages/commit/4c1163a9e9516d298e55421f1cf0ed81081151dd))
* Remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
([1823bde](https://github.com/AztecProtocol/aztec-packages/commit/1823bde2b486827f33a87899074594f811cfbef4))
* Remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
([1f0538f](https://github.com/AztecProtocol/aztec-packages/commit/1f0538f00cadcf4325d2aa17bdb098d11ca3840f))
* Revert "feat(avm): constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))"
([#9080](https://github.com/AztecProtocol/aztec-packages/issues/9080))
([07e4c95](https://github.com/AztecProtocol/aztec-packages/commit/07e4c956494154685970849bc4dda60c25af31bc))
* Revert deletion of the old bbup
([#9146](https://github.com/AztecProtocol/aztec-packages/issues/9146))
([3138078](https://github.com/AztecProtocol/aztec-packages/commit/3138078f0062d8426b3c45ac47646169317ab795))
</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 Oct 19, 2024
:robot: I have created a release *beep* *boop*
---


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

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-package-v0.57.0...aztec-package-v0.58.0)
(2024-10-18)


### ⚠ BREAKING CHANGES

* protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))

### Features

* Modify contract instance to include public keys
([#9153](https://github.com/AztecProtocol/aztec-packages/issues/9153))
([17c6127](https://github.com/AztecProtocol/aztec-packages/commit/17c612740dc3563321bf69c1760de1ef88b22124))
* Native tmux-based network e2e
([#9036](https://github.com/AztecProtocol/aztec-packages/issues/9036))
([f9fc73a](https://github.com/AztecProtocol/aztec-packages/commit/f9fc73a40f5b9d11ad92a6cee3e29d3fcc80425e))
* Protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))
([f3bcff0](https://github.com/AztecProtocol/aztec-packages/commit/f3bcff0c0943d190261de366301ed8f9267543f3))
* World state synchronizer reorgs
([#9091](https://github.com/AztecProtocol/aztec-packages/issues/9091))
([ba63b43](https://github.com/AztecProtocol/aztec-packages/commit/ba63b43c6e5c09ecda0ed94bdd3b875546400d27))


### Miscellaneous

* Added healthcheck and startup check
([#9112](https://github.com/AztecProtocol/aztec-packages/issues/9112))
([ffa012f](https://github.com/AztecProtocol/aztec-packages/commit/ffa012ffb1d0e72ddab68c066ca9e923bd1c0c2b))
* Default logging level to debug if debug set
([#9173](https://github.com/AztecProtocol/aztec-packages/issues/9173))
([febf744](https://github.com/AztecProtocol/aztec-packages/commit/febf7449c80ffe44eaadb88c088e35fa419ed443))
* Rename some prover env vars
([#9032](https://github.com/AztecProtocol/aztec-packages/issues/9032))
([e27ead8](https://github.com/AztecProtocol/aztec-packages/commit/e27ead85403d3f21ebc406e7d1a7e18190085603))
</details>

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

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg.js-v0.57.0...barretenberg.js-v0.58.0)
(2024-10-18)


### Features

* Browser tests for UltraHonk
([#9047](https://github.com/AztecProtocol/aztec-packages/issues/9047))
([f0d45dd](https://github.com/AztecProtocol/aztec-packages/commit/f0d45dd8d0c00707cd18989c3a45ff0c3cbc92a6))
* Docker_fast.sh
([#9273](https://github.com/AztecProtocol/aztec-packages/issues/9273))
([57e792e](https://github.com/AztecProtocol/aztec-packages/commit/57e792e6baaa2dfaef7af4c84d4ab75804c9d3de))
* Use s3 cache in bootstrap fast
([#9111](https://github.com/AztecProtocol/aztec-packages/issues/9111))
([349f938](https://github.com/AztecProtocol/aztec-packages/commit/349f938601f7a4fdbdf83aea62c7b8c244bbe434))


### Bug Fixes

* Limit number of bb.js threads to 32
([#9070](https://github.com/AztecProtocol/aztec-packages/issues/9070))
([97e4b9b](https://github.com/AztecProtocol/aztec-packages/commit/97e4b9b2e0d37575b6b5e4c7a22f85b60d1f418b))
* Make gate counting functions less confusing and avoid estimations
([#9046](https://github.com/AztecProtocol/aztec-packages/issues/9046))
([0bda0a4](https://github.com/AztecProtocol/aztec-packages/commit/0bda0a4d71ae0fb4352de0746f7d96b63b787888))
* Reduce SRS size back to normal
([#9098](https://github.com/AztecProtocol/aztec-packages/issues/9098))
([a306ea5](https://github.com/AztecProtocol/aztec-packages/commit/a306ea5ffeb13019427a96d8152e5642b717c5f6))
* Revert "feat: use s3 cache in bootstrap fast"
([#9181](https://github.com/AztecProtocol/aztec-packages/issues/9181))
([7872d09](https://github.com/AztecProtocol/aztec-packages/commit/7872d092c359298273d7ab1fc23fa61ae1973f8b))
* Revert "fix: Revert "feat: use s3 cache in bootstrap fast""
([#9182](https://github.com/AztecProtocol/aztec-packages/issues/9182))
([ce3d08a](https://github.com/AztecProtocol/aztec-packages/commit/ce3d08a18684da9f5b1289a2b9bdf60a66342590))
</details>

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

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/aztec-packages-v0.57.0...aztec-packages-v0.58.0)
(2024-10-18)


### ⚠ BREAKING CHANGES

* remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
* remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
* Integer division is not the inverse of integer multiplication
(https://github.com/noir-lang/noir/pull/6243)
* kind size checks (https://github.com/noir-lang/noir/pull/6137)
* Change tag attributes to require a ' prefix
(https://github.com/noir-lang/noir/pull/6235)
* **avm:** remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
* remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
* **avm:** more instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
* unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))
* protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))

### Features

* Add `checked_transmute` (https://github.com/noir-lang/noir/pull/6262)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Add insturmentation to attestation and epoch quote mem pools
([#9055](https://github.com/AztecProtocol/aztec-packages/issues/9055))
([7dfa295](https://github.com/AztecProtocol/aztec-packages/commit/7dfa2951d4116b104744704901d143b55dd275eb))
* Add more `Type` and `UnresolvedType` methods
(https://github.com/noir-lang/noir/pull/5994)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Add sequencer address to metrics
([#9145](https://github.com/AztecProtocol/aztec-packages/issues/9145))
([c33d38b](https://github.com/AztecProtocol/aztec-packages/commit/c33d38b68a8c109e138a2809b530f7fdb1abb122))
* Add validator address to logs
([#9143](https://github.com/AztecProtocol/aztec-packages/issues/9143))
([e245f83](https://github.com/AztecProtocol/aztec-packages/commit/e245f833e56b05cf11850cb8537d9dbba01de746))
* Allow `unconstrained` after visibility
(https://github.com/noir-lang/noir/pull/6246)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **avm:** Codegen recursive_verifier.cpp
([#9204](https://github.com/AztecProtocol/aztec-packages/issues/9204))
([2592e50](https://github.com/AztecProtocol/aztec-packages/commit/2592e50b2bd9e76d35a3c9caac4d7042fe26b9b6)),
closes
[#8849](https://github.com/AztecProtocol/aztec-packages/issues/8849)
* **avm:** Constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))
([308c03b](https://github.com/AztecProtocol/aztec-packages/commit/308c03b9ad45001570e6232f88403de8cc7d3cfb)),
closes
[#9001](https://github.com/AztecProtocol/aztec-packages/issues/9001)
* **avm:** More instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
([3a01ad9](https://github.com/AztecProtocol/aztec-packages/commit/3a01ad93e21e9e6cd27b7a2a4c1e2c9f24d6363e))
* **avm:** Remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
([68a7326](https://github.com/AztecProtocol/aztec-packages/commit/68a7326d9f2d4bd891acac12950289d6e9fbe617))
* Better tracing/metrics in validator and archiver
([#9108](https://github.com/AztecProtocol/aztec-packages/issues/9108))
([1801f5b](https://github.com/AztecProtocol/aztec-packages/commit/1801f5b49fb3b153817a1596c6fd568f1c762fe5))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
([5861d4e](https://github.com/AztecProtocol/aztec-packages/commit/5861d4e5e8a72161dac910e0bc8e635e0d332793))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
([409b7b8](https://github.com/AztecProtocol/aztec-packages/commit/409b7b8c6b43a91fc1b5be48aee0174d56d914d9))
* Browser tests for UltraHonk
([#9047](https://github.com/AztecProtocol/aztec-packages/issues/9047))
([f0d45dd](https://github.com/AztecProtocol/aztec-packages/commit/f0d45dd8d0c00707cd18989c3a45ff0c3cbc92a6))
* Chaos mesh
([#9196](https://github.com/AztecProtocol/aztec-packages/issues/9196))
([134bef8](https://github.com/AztecProtocol/aztec-packages/commit/134bef8c3820fbf8ed08c7b44cbf5636d9342d99))
* Docker_fast.sh
([#9273](https://github.com/AztecProtocol/aztec-packages/issues/9273))
([57e792e](https://github.com/AztecProtocol/aztec-packages/commit/57e792e6baaa2dfaef7af4c84d4ab75804c9d3de))
* Don't crash LSP when there are errors resolving the workspace
(https://github.com/noir-lang/noir/pull/6257)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Don't suggest private struct fields in LSP
(https://github.com/noir-lang/noir/pull/6256)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Drop epoch duration / block times
([#9149](https://github.com/AztecProtocol/aztec-packages/issues/9149))
([c3e859b](https://github.com/AztecProtocol/aztec-packages/commit/c3e859b86ce66d42ed04dfd1b3d82995490f74ae))
* Externally accessible spartan deployment
([#9171](https://github.com/AztecProtocol/aztec-packages/issues/9171))
([26edb4d](https://github.com/AztecProtocol/aztec-packages/commit/26edb4dd0b47df5d079fa8af7d20adef26da8ad7))
* Fix encoding of public keys
([#9158](https://github.com/AztecProtocol/aztec-packages/issues/9158))
([35c66c9](https://github.com/AztecProtocol/aztec-packages/commit/35c66c9875c6515d719ff4633236e4e11d1b54a1))
* Handwritten parser (https://github.com/noir-lang/noir/pull/6180)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* **improve:** Remove scan through globals
(https://github.com/noir-lang/noir/pull/6282)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Integrate databus in the private kernels
([#9028](https://github.com/AztecProtocol/aztec-packages/issues/9028))
([1798b1c](https://github.com/AztecProtocol/aztec-packages/commit/1798b1cc701824dd268ed0e49e592febf01a1687))
* Kind size checks (https://github.com/noir-lang/noir/pull/6137)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Make index in inbox global
([#9110](https://github.com/AztecProtocol/aztec-packages/issues/9110))
([375c017](https://github.com/AztecProtocol/aztec-packages/commit/375c017ac130a20f9cc20be11e5199327641013e)),
closes
[#9085](https://github.com/AztecProtocol/aztec-packages/issues/9085)
* Modify contract instance to include public keys
([#9153](https://github.com/AztecProtocol/aztec-packages/issues/9153))
([17c6127](https://github.com/AztecProtocol/aztec-packages/commit/17c612740dc3563321bf69c1760de1ef88b22124))
* Native testnet helper script
([#9260](https://github.com/AztecProtocol/aztec-packages/issues/9260))
([1613c0f](https://github.com/AztecProtocol/aztec-packages/commit/1613c0f0e13101bfa152a6a6fac3a07cf7604ef0))
* Native tmux-based network e2e
([#9036](https://github.com/AztecProtocol/aztec-packages/issues/9036))
([f9fc73a](https://github.com/AztecProtocol/aztec-packages/commit/f9fc73a40f5b9d11ad92a6cee3e29d3fcc80425e))
* New per-enqueued-call gas limit
([#9033](https://github.com/AztecProtocol/aztec-packages/issues/9033))
([6ef0895](https://github.com/AztecProtocol/aztec-packages/commit/6ef0895ed9788c533b0caf2d2c30839552dabbcc))
* New world state
([#8776](https://github.com/AztecProtocol/aztec-packages/issues/8776))
([41f3934](https://github.com/AztecProtocol/aztec-packages/commit/41f393443396cae77e09a09df07d42e6d5ff5618))
* Nomismatokopio
([#8940](https://github.com/AztecProtocol/aztec-packages/issues/8940))
([1f53957](https://github.com/AztecProtocol/aztec-packages/commit/1f53957ffea720fc008a80623d0fb1da8a3cb302))
* Optimize `Quoted::as_expr` by parsing just once
(https://github.com/noir-lang/noir/pull/6237)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Optimize reading a workspace's files
(https://github.com/noir-lang/noir/pull/6281)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Parameterize circuit epoch duration
([#9050](https://github.com/AztecProtocol/aztec-packages/issues/9050))
([1b902f6](https://github.com/AztecProtocol/aztec-packages/commit/1b902f663349198aa8f9b3a22663b5c8adc0d442))
* **perf:** Flamegraphs for test program execution benchmarks
(https://github.com/noir-lang/noir/pull/6253)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **perf:** Follow array sets backwards in array set from get
optimization (https://github.com/noir-lang/noir/pull/6208)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Persistent storage edit for anvil node
([#9089](https://github.com/AztecProtocol/aztec-packages/issues/9089))
([9b72a69](https://github.com/AztecProtocol/aztec-packages/commit/9b72a69940d2d601256dbb88f59c39af2af0f182))
* Protocol contracts
([#9025](https://github.com/AztecProtocol/aztec-packages/issues/9025))
([f3bcff0](https://github.com/AztecProtocol/aztec-packages/commit/f3bcff0c0943d190261de366301ed8f9267543f3))
* Recover from '=' instead of ':' in struct constructor/pattern
(https://github.com/noir-lang/noir/pull/6236)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Remove byte decomposition in `compute_decomposition`
(https://github.com/noir-lang/noir/pull/6159)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Replace Zeromorph with Shplemini in ECCVM
([#9102](https://github.com/AztecProtocol/aztec-packages/issues/9102))
([c857cd9](https://github.com/AztecProtocol/aztec-packages/commit/c857cd9167f696fc237b64ff579952001eba7d40))
* Restore VK tree
([#9156](https://github.com/AztecProtocol/aztec-packages/issues/9156))
([440e729](https://github.com/AztecProtocol/aztec-packages/commit/440e729758c3be99558cd36d4af3f10c324debb7))
* Show LSP diagnostic related information
(https://github.com/noir-lang/noir/pull/6277)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Slightly improve "unexpected token" error message
(https://github.com/noir-lang/noir/pull/6279)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Stable deployments for spartan
([#9147](https://github.com/AztecProtocol/aztec-packages/issues/9147))
([3e1c02e](https://github.com/AztecProtocol/aztec-packages/commit/3e1c02efed2bc10b5f88f3017f9940eb68533510))
* Structured commit
([#9027](https://github.com/AztecProtocol/aztec-packages/issues/9027))
([26f406b](https://github.com/AztecProtocol/aztec-packages/commit/26f406b0591b3f88cb37c5e8f7cb3cbfc625315e))
* Sysstia
([#8941](https://github.com/AztecProtocol/aztec-packages/issues/8941))
([2da2fe2](https://github.com/AztecProtocol/aztec-packages/commit/2da2fe2655ad57ab2bc19d589768b2b84ee8e393))
* **test:** Fuzz poseidon hases against an external library
(https://github.com/noir-lang/noir/pull/6273)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **test:** Fuzz test poseidon2 hash equivalence
(https://github.com/noir-lang/noir/pull/6265)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* **test:** Fuzz test stdlib hash functions
(https://github.com/noir-lang/noir/pull/6233)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* **test:** Include the PoseidonHasher in the fuzzing
(https://github.com/noir-lang/noir/pull/6280)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Tracy time with instrumentation
([#9170](https://github.com/AztecProtocol/aztec-packages/issues/9170))
([1c008d9](https://github.com/AztecProtocol/aztec-packages/commit/1c008d9a2fad747142e8ca356d6c00cee1663f2c))
* Trait inheritance (https://github.com/noir-lang/noir/pull/6252)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))
([1323a34](https://github.com/AztecProtocol/aztec-packages/commit/1323a34c50e7727435129aa31a05ae7bdfb0ca09))
* Use s3 cache in bootstrap fast
([#9111](https://github.com/AztecProtocol/aztec-packages/issues/9111))
([349f938](https://github.com/AztecProtocol/aztec-packages/commit/349f938601f7a4fdbdf83aea62c7b8c244bbe434))
* Visibility for struct fields
(https://github.com/noir-lang/noir/pull/6221)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* World State Re-orgs
([#9035](https://github.com/AztecProtocol/aztec-packages/issues/9035))
([04f4a7b](https://github.com/AztecProtocol/aztec-packages/commit/04f4a7b2ae141b7eee4464e8d2cc91460d0c650a))
* World state synchronizer reorgs
([#9091](https://github.com/AztecProtocol/aztec-packages/issues/9091))
([ba63b43](https://github.com/AztecProtocol/aztec-packages/commit/ba63b43c6e5c09ecda0ed94bdd3b875546400d27))


### Bug Fixes

* Accidental e2e inclusion
([6e651de](https://github.com/AztecProtocol/aztec-packages/commit/6e651de0d37b925900d2109a9c1b1f67f25005c1))
* Address inactive public key check in `verify_signature_noir`
(https://github.com/noir-lang/noir/pull/6270)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Allow passing rayon threads when building aztec images
([#9096](https://github.com/AztecProtocol/aztec-packages/issues/9096))
([05de539](https://github.com/AztecProtocol/aztec-packages/commit/05de539d3a1a9dbfb2885b5b0d6d06e6109bbc77))
* Assert block header matches
([#9172](https://github.com/AztecProtocol/aztec-packages/issues/9172))
([3e0504d](https://github.com/AztecProtocol/aztec-packages/commit/3e0504dc781878578d0e97450593f4628b6a57b0))
* Avoid huge compilation times in base rollup
([#9113](https://github.com/AztecProtocol/aztec-packages/issues/9113))
([6eb43b6](https://github.com/AztecProtocol/aztec-packages/commit/6eb43b64cb13d97ecf8f8025a6d7e622d81b5db6))
* Bb bootstrap_cache.sh
([#9254](https://github.com/AztecProtocol/aztec-packages/issues/9254))
([df37104](https://github.com/AztecProtocol/aztec-packages/commit/df3710477fc7d2e7c44e62b116bea74d4e14f930))
* Better handle async timings in test
([#9178](https://github.com/AztecProtocol/aztec-packages/issues/9178))
([fb35151](https://github.com/AztecProtocol/aztec-packages/commit/fb35151c0d5e08f56b263eb15e0ddfc1565d4b17))
* Buffer instanceof usage
([#9235](https://github.com/AztecProtocol/aztec-packages/issues/9235))
([8e66ef9](https://github.com/AztecProtocol/aztec-packages/commit/8e66ef97b133b3d57d5b3742e0acf2b3792433f7))
* Build error around bb config in cli cmd
([#9134](https://github.com/AztecProtocol/aztec-packages/issues/9134))
([a5b677c](https://github.com/AztecProtocol/aztec-packages/commit/a5b677ca4aec3ace39924869c9517a256749c588))
* Call correct method on fee juice contract
([#9137](https://github.com/AztecProtocol/aztec-packages/issues/9137))
([2dff976](https://github.com/AztecProtocol/aztec-packages/commit/2dff976202022cc474fdcc67bdcd3bc72e61dc70))
* Change tag attributes to require a ' prefix
(https://github.com/noir-lang/noir/pull/6235)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Check for Schnorr null signature
(https://github.com/noir-lang/noir/pull/6226)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* **ci:** Don't report for now on kind-network-test
([#9163](https://github.com/AztecProtocol/aztec-packages/issues/9163))
([c59d693](https://github.com/AztecProtocol/aztec-packages/commit/c59d6936ea46296359abbd3cbf0823d44e64da90))
* Dockerized vk build
([#9078](https://github.com/AztecProtocol/aztec-packages/issues/9078))
([2aac1fb](https://github.com/AztecProtocol/aztec-packages/commit/2aac1fb78790eb4472529146ab5ef562abe1d0fc))
* Docs pdf generation
([#9114](https://github.com/AztecProtocol/aztec-packages/issues/9114))
([2f9c4e9](https://github.com/AztecProtocol/aztec-packages/commit/2f9c4e9883d3081fc9d6bf73bc2305ae197a61e8))
* Don't warn on unuse global if it has an abi annotation
(https://github.com/noir-lang/noir/pull/6258)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Don't warn on unused struct that has an abi annotation
(https://github.com/noir-lang/noir/pull/6254)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* E2e bot follows pending chain
([#9115](https://github.com/AztecProtocol/aztec-packages/issues/9115))
([9afd190](https://github.com/AztecProtocol/aztec-packages/commit/9afd190fc234b1df64b53293434f1a1ab5e0dc94))
* E2e-p2p attestation timeout
([#9154](https://github.com/AztecProtocol/aztec-packages/issues/9154))
([25bd47b](https://github.com/AztecProtocol/aztec-packages/commit/25bd47bb4faad24822d4671ee524fd6f1a50ff49))
* **frontend:** Do not warn when a nested struct is provided as input to
main (https://github.com/noir-lang/noir/pull/6239)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Handle dfg databus in SSA normalization
(https://github.com/noir-lang/noir/pull/6249)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Handle nested arrays in calldata
(https://github.com/noir-lang/noir/pull/6232)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Homogeneous input points for EC ADD
(https://github.com/noir-lang/noir/pull/6241)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Increase l1 propose gas estimate
([#9071](https://github.com/AztecProtocol/aztec-packages/issues/9071))
([9d28414](https://github.com/AztecProtocol/aztec-packages/commit/9d284140bd58a9485fdbc3db52c08496adf1f7d1))
* Integer division is not the inverse of integer multiplication
(https://github.com/noir-lang/noir/pull/6243)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* K8s peer discovery
([#9274](https://github.com/AztecProtocol/aztec-packages/issues/9274))
([61e4d12](https://github.com/AztecProtocol/aztec-packages/commit/61e4d1290a9d019f3a2c54d504d9560fead4c6fa))
* Limit number of bb.js threads to 32
([#9070](https://github.com/AztecProtocol/aztec-packages/issues/9070))
([97e4b9b](https://github.com/AztecProtocol/aztec-packages/commit/97e4b9b2e0d37575b6b5e4c7a22f85b60d1f418b))
* Limit number of threads
([#9135](https://github.com/AztecProtocol/aztec-packages/issues/9135))
([19d2620](https://github.com/AztecProtocol/aztec-packages/commit/19d2620e7536dfe99eaea901da647aaf78478f2e))
* Mac-build
([#9216](https://github.com/AztecProtocol/aztec-packages/issues/9216))
([80ea32c](https://github.com/AztecProtocol/aztec-packages/commit/80ea32cfda8c149980938382518c47a6da123e72))
* Make gate counting functions less confusing and avoid estimations
([#9046](https://github.com/AztecProtocol/aztec-packages/issues/9046))
([0bda0a4](https://github.com/AztecProtocol/aztec-packages/commit/0bda0a4d71ae0fb4352de0746f7d96b63b787888))
* Native_world_state_instance.ts
([#9136](https://github.com/AztecProtocol/aztec-packages/issues/9136))
([4a204c1](https://github.com/AztecProtocol/aztec-packages/commit/4a204c12c8dab688848a1aa2d65fcde7d3ee4982))
* Panic on composite types within databus
(https://github.com/noir-lang/noir/pull/6225)
([26185f0](https://github.com/AztecProtocol/aztec-packages/commit/26185f0e23d54e2f122ae07de573b77b2974e7c1))
* Prevent compiler panic when popping from empty slices
(https://github.com/noir-lang/noir/pull/6274)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Prometheus metrics
([#9226](https://github.com/AztecProtocol/aztec-packages/issues/9226))
([9445a4f](https://github.com/AztecProtocol/aztec-packages/commit/9445a4fba8e3092c3948ffe9d5eaf5f679fce89c))
* Publish-aztec-packages.yml
([#9229](https://github.com/AztecProtocol/aztec-packages/issues/9229))
([4bfeb83](https://github.com/AztecProtocol/aztec-packages/commit/4bfeb830ffc421386f4f9f8b4a23e2bc7fbf832d)),
closes
[#9220](https://github.com/AztecProtocol/aztec-packages/issues/9220)
* Reduce SRS size back to normal
([#9098](https://github.com/AztecProtocol/aztec-packages/issues/9098))
([a306ea5](https://github.com/AztecProtocol/aztec-packages/commit/a306ea5ffeb13019427a96d8152e5642b717c5f6))
* Reject invalid expression with in CLI parser
(https://github.com/noir-lang/noir/pull/6287)
([70fb8fa](https://github.com/AztecProtocol/aztec-packages/commit/70fb8fa97ab0d2484cb49126271df7aa18432f3e))
* Release `master` dockerhub images
([#9117](https://github.com/AztecProtocol/aztec-packages/issues/9117))
([6662fba](https://github.com/AztecProtocol/aztec-packages/commit/6662fbae99808d6d4de9f39db6ef587bb455156c))
* Remove need for duplicate attributes on each function
([#9244](https://github.com/AztecProtocol/aztec-packages/issues/9244))
([ed933ee](https://github.com/AztecProtocol/aztec-packages/commit/ed933eefc2aab4b616dca94fee9a02837aec7fb9)),
closes
[#9243](https://github.com/AztecProtocol/aztec-packages/issues/9243)
* Revert "feat: new per-enqueued-call gas limit"
([#9139](https://github.com/AztecProtocol/aztec-packages/issues/9139))
([7677ca5](https://github.com/AztecProtocol/aztec-packages/commit/7677ca5d9280ac9615a92be36d1958960dbd7353))
* Revert "feat: use s3 cache in bootstrap fast"
([#9181](https://github.com/AztecProtocol/aztec-packages/issues/9181))
([7872d09](https://github.com/AztecProtocol/aztec-packages/commit/7872d092c359298273d7ab1fc23fa61ae1973f8b))
* Revert "fix: Revert "feat: use s3 cache in bootstrap fast""
([#9182](https://github.com/AztecProtocol/aztec-packages/issues/9182))
([ce3d08a](https://github.com/AztecProtocol/aztec-packages/commit/ce3d08a18684da9f5b1289a2b9bdf60a66342590))
* **s3-cache:** Link extracted preset-release-world-state
([#9252](https://github.com/AztecProtocol/aztec-packages/issues/9252))
([8b2d7d9](https://github.com/AztecProtocol/aztec-packages/commit/8b2d7d9c962c975592e17424f4d0b70f9ca7acd4))
* Setup fee juice for e2e tests
([#9094](https://github.com/AztecProtocol/aztec-packages/issues/9094))
([a8ec91a](https://github.com/AztecProtocol/aztec-packages/commit/a8ec91a32d8fee3d309c855ed9d43a6c025c487b))
* Spartan account pre-funding
([#9161](https://github.com/AztecProtocol/aztec-packages/issues/9161))
([f4754f7](https://github.com/AztecProtocol/aztec-packages/commit/f4754f7ea9587edbe8367c49539f65d25e251e23))
* Transaction bot proper configuration
([#9106](https://github.com/AztecProtocol/aztec-packages/issues/9106))
([666fc38](https://github.com/AztecProtocol/aztec-packages/commit/666fc382fba1235ec0bca9a6cd027734e49eb182))
* Unrevert "feat: trace AVM side effects per enqueued call""
([#9095](https://github.com/AztecProtocol/aztec-packages/issues/9095))
([72e4867](https://github.com/AztecProtocol/aztec-packages/commit/72e4867fc0c429563f7c54092470010d1e6553a9))
* Visibility for impl methods
(https://github.com/noir-lang/noir/pull/6261)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))


### Miscellaneous

* Activate peer scoring for other p2p topics
([#9097](https://github.com/AztecProtocol/aztec-packages/issues/9097))
([18d24fb](https://github.com/AztecProtocol/aztec-packages/commit/18d24fbd1083c22507cd7b421976c7c63f11d140))
* Add regression test for
[#5756](https://github.com/AztecProtocol/aztec-packages/issues/5756)
(https://github.com/noir-lang/noir/pull/5770)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Add world_state_napi to bootstrap fast
([#9079](https://github.com/AztecProtocol/aztec-packages/issues/9079))
([e827056](https://github.com/AztecProtocol/aztec-packages/commit/e827056e652a4789c91a617587945d57163fa7ff))
* Added healthcheck and startup check
([#9112](https://github.com/AztecProtocol/aztec-packages/issues/9112))
([ffa012f](https://github.com/AztecProtocol/aztec-packages/commit/ffa012ffb1d0e72ddab68c066ca9e923bd1c0c2b))
* Adjust debug level of received attestations
([#9087](https://github.com/AztecProtocol/aztec-packages/issues/9087))
([eb67dd4](https://github.com/AztecProtocol/aztec-packages/commit/eb67dd4ab47755cd8e1445be3fb1b75a4d6c3f21))
* **avm:** Revert 9080 - re-introducing start/end gas constraining
([#9109](https://github.com/AztecProtocol/aztec-packages/issues/9109))
([763e9b8](https://github.com/AztecProtocol/aztec-packages/commit/763e9b8a98981545b68f96e5b49a0726fc3c80b3))
* **avm:** Type aliasing for VmPublicInputs
([#8884](https://github.com/AztecProtocol/aztec-packages/issues/8884))
([f3ed39b](https://github.com/AztecProtocol/aztec-packages/commit/f3ed39bf7be6f08bcfcabf6c04eb570f4d06ed27))
* **ci:** Disable gossip_network.test.ts
([#9165](https://github.com/AztecProtocol/aztec-packages/issues/9165))
([5e7ab1d](https://github.com/AztecProtocol/aztec-packages/commit/5e7ab1de0a9b4da56ff84381cf3dea44837bd79d))
* **ci:** Parallelise CI for acir-test flows
([#9238](https://github.com/AztecProtocol/aztec-packages/issues/9238))
([73a7c23](https://github.com/AztecProtocol/aztec-packages/commit/73a7c231193d56fdbf2e1160be5ea8d58f5596bb))
* **ci:** Parallelise noir-projects CI
([#9270](https://github.com/AztecProtocol/aztec-packages/issues/9270))
([44ad5e5](https://github.com/AztecProtocol/aztec-packages/commit/44ad5e595c09639eac0913be3b653d32eb4accac))
* **ci:** Try to offload compute burden when merging
([#9213](https://github.com/AztecProtocol/aztec-packages/issues/9213))
([c8dc016](https://github.com/AztecProtocol/aztec-packages/commit/c8dc016a2bfc5b41899c32e3bf2b2d3ffb855140))
* Configure trees instead of duplicating constants
([#9088](https://github.com/AztecProtocol/aztec-packages/issues/9088))
([c1150c9](https://github.com/AztecProtocol/aztec-packages/commit/c1150c9b28581985686b13ba97eb7f0066736652))
* Default logging level to debug if debug set
([#9173](https://github.com/AztecProtocol/aztec-packages/issues/9173))
([febf744](https://github.com/AztecProtocol/aztec-packages/commit/febf7449c80ffe44eaadb88c088e35fa419ed443))
* **deployments:** Native network test
([#9138](https://github.com/AztecProtocol/aztec-packages/issues/9138))
([975ea36](https://github.com/AztecProtocol/aztec-packages/commit/975ea3617d9cddc2d2c35aa56c8e7b1f5d5069ab))
* Different metrics values for production and local
([#9124](https://github.com/AztecProtocol/aztec-packages/issues/9124))
([6888d70](https://github.com/AztecProtocol/aztec-packages/commit/6888d70be014b4d541c1e584248ae6eca8562a04))
* Disable e2e-p2p completely
([#9219](https://github.com/AztecProtocol/aztec-packages/issues/9219))
([286d617](https://github.com/AztecProtocol/aztec-packages/commit/286d617e3f06395ee5c88339b8d57170aad00213))
* Disable flakey rediscovery.test.ts
([#9217](https://github.com/AztecProtocol/aztec-packages/issues/9217))
([14e73e2](https://github.com/AztecProtocol/aztec-packages/commit/14e73e29a784a3b6131b464b40058dcf8bb53a86))
* **docs:** Rewriting bbup script, refactoring bb readme for clarity
([#9073](https://github.com/AztecProtocol/aztec-packages/issues/9073))
([662b61e](https://github.com/AztecProtocol/aztec-packages/commit/662b61e4c20a2d4217980922d4578f4dfeacae6b))
* Eccvm transcript builder
([#9026](https://github.com/AztecProtocol/aztec-packages/issues/9026))
([d2c9ae2](https://github.com/AztecProtocol/aztec-packages/commit/d2c9ae2853bb75cd736583406a57e96645bd2e88))
* Expose util func to convert field compressed string back to string in
aztec js
([#9239](https://github.com/AztecProtocol/aztec-packages/issues/9239))
([ce7e687](https://github.com/AztecProtocol/aztec-packages/commit/ce7e687506104828ddc96f66fd30845bda6494fc)),
closes
[#9233](https://github.com/AztecProtocol/aztec-packages/issues/9233)
* Fix missing migrations to immutable contract fn interaction
([#9053](https://github.com/AztecProtocol/aztec-packages/issues/9053))
([41c496f](https://github.com/AztecProtocol/aztec-packages/commit/41c496f9271ebe3d53fbb6d988a7306617ee7e38))
* Format noir stuff
([#9202](https://github.com/AztecProtocol/aztec-packages/issues/9202))
([2b09709](https://github.com/AztecProtocol/aztec-packages/commit/2b09709932885b8a0de4bf2b91fb381d39baf6b2))
* Goodbye circleci
([#9259](https://github.com/AztecProtocol/aztec-packages/issues/9259))
([dab2a93](https://github.com/AztecProtocol/aztec-packages/commit/dab2a933128a3b42c6a62152a51a46c5e7a3d09d))
* Improve setup_local_k8s.sh to focus kind
([#9228](https://github.com/AztecProtocol/aztec-packages/issues/9228))
([8efdb47](https://github.com/AztecProtocol/aztec-packages/commit/8efdb474611730320ca2aadd87ff6238d464c2c9))
* Increase tx bot delay
([9e0ab97](https://github.com/AztecProtocol/aztec-packages/commit/9e0ab97194b8338e4b4292229c9bf911c7446dcc))
* Log revert reason on publish to L1
([#9067](https://github.com/AztecProtocol/aztec-packages/issues/9067))
([814b6d0](https://github.com/AztecProtocol/aztec-packages/commit/814b6d09d1e4750c5b3277cebde523f17af5f85e))
* Modify note processors and synchronizers to use complete address
([#9152](https://github.com/AztecProtocol/aztec-packages/issues/9152))
([730d90f](https://github.com/AztecProtocol/aztec-packages/commit/730d90fcfdc65c00a1867420fdc8211a72293cd9))
* Move contract stuff from types into circuits.js
([#9151](https://github.com/AztecProtocol/aztec-packages/issues/9151))
([d8131bc](https://github.com/AztecProtocol/aztec-packages/commit/d8131bc5c1b4d47d20c3312598296bfb89cecf11))
* Move public keys to protocol circuits
([#9074](https://github.com/AztecProtocol/aztec-packages/issues/9074))
([8adbdd5](https://github.com/AztecProtocol/aztec-packages/commit/8adbdd5827a81cf7b34bc06883367d0dc47a47a2))
* Offsite network stuff
([#9231](https://github.com/AztecProtocol/aztec-packages/issues/9231))
([155b40b](https://github.com/AztecProtocol/aztec-packages/commit/155b40b67616387f183dcb05d6ab08e9e4c3ab72))
* **p2p:** Refactor pools
([#9065](https://github.com/AztecProtocol/aztec-packages/issues/9065))
([b62235e](https://github.com/AztecProtocol/aztec-packages/commit/b62235ed75b55f79fd84a5ebf1a1f5af28fa289a))
* **p2p:** Store received epoch quotes
([#9064](https://github.com/AztecProtocol/aztec-packages/issues/9064))
([e3b467f](https://github.com/AztecProtocol/aztec-packages/commit/e3b467f70ca1d41bd27ac7231e257f1329ed0896))
* Pass by const reference
([#9083](https://github.com/AztecProtocol/aztec-packages/issues/9083))
([764bba4](https://github.com/AztecProtocol/aztec-packages/commit/764bba4dd8a016d45b201562ec82f9a12de65c2d))
* Pre-initialise validators in cluster
([#9048](https://github.com/AztecProtocol/aztec-packages/issues/9048))
([e2d32a1](https://github.com/AztecProtocol/aztec-packages/commit/e2d32a113ca279ee205a666c24061199e34e1e7b))
* Quieter cache-download.sh
([#9176](https://github.com/AztecProtocol/aztec-packages/issues/9176))
([b75d4c8](https://github.com/AztecProtocol/aztec-packages/commit/b75d4c85531ab149e142b79749eca9320baacf1a))
* Reenable sync test
([#9160](https://github.com/AztecProtocol/aztec-packages/issues/9160))
([a71642f](https://github.com/AztecProtocol/aztec-packages/commit/a71642f052e89f601c30f082b83c372d6e68f9ee))
* Regression test for
[#5462](https://github.com/AztecProtocol/aztec-packages/issues/5462)
(https://github.com/noir-lang/noir/pull/6286)
([5a3a8cc](https://github.com/AztecProtocol/aztec-packages/commit/5a3a8ccd0286a16b93c95a1de21676250926456a))
* Remove AvmVerificationKeyData and tube specific types
([#8569](https://github.com/AztecProtocol/aztec-packages/issues/8569))
([da6c579](https://github.com/AztecProtocol/aztec-packages/commit/da6c579975112d8d629e64834465b6a52b04eb6a))
* Remove end-to-end from circleci
([#9116](https://github.com/AztecProtocol/aztec-packages/issues/9116))
([4d1f7d8](https://github.com/AztecProtocol/aztec-packages/commit/4d1f7d83f9d14b1df70a26c99f696aebd0416ebd))
* Remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
([4c1163a](https://github.com/AztecProtocol/aztec-packages/commit/4c1163a9e9516d298e55421f1cf0ed81081151dd))
* Remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
([1823bde](https://github.com/AztecProtocol/aztec-packages/commit/1823bde2b486827f33a87899074594f811cfbef4))
* Remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
([1f0538f](https://github.com/AztecProtocol/aztec-packages/commit/1f0538f00cadcf4325d2aa17bdb098d11ca3840f))
* Rename some prover env vars
([#9032](https://github.com/AztecProtocol/aztec-packages/issues/9032))
([e27ead8](https://github.com/AztecProtocol/aztec-packages/commit/e27ead85403d3f21ebc406e7d1a7e18190085603))
* Replace relative paths to noir-protocol-circuits
([424afba](https://github.com/AztecProtocol/aztec-packages/commit/424afbae1b1d4a9a8e01dfe4cca141407bf1bc44))
* Replace relative paths to noir-protocol-circuits
([bef3907](https://github.com/AztecProtocol/aztec-packages/commit/bef39073e2a380bf7ae815053dc6d5e4665aa13a))
* Replace relative paths to noir-protocol-circuits
([1b21a31](https://github.com/AztecProtocol/aztec-packages/commit/1b21a317209be12453d805e29a3112e47cfcf394))
* Replace relative paths to noir-protocol-circuits
([5285348](https://github.com/AztecProtocol/aztec-packages/commit/52853488488b68dde602f9facb5c5d42d5609c8c))
* Replace relative paths to noir-protocol-circuits
([7934d39](https://github.com/AztecProtocol/aztec-packages/commit/7934d3946c856ecbc194be0e59f7a4023fdf66e2))
* Replace relative paths to noir-protocol-circuits
([b787722](https://github.com/AztecProtocol/aztec-packages/commit/b787722d72068160ca57440807edc1939dbb1cfe))
* Replace relative paths to noir-protocol-circuits
([21cb2b1](https://github.com/AztecProtocol/aztec-packages/commit/21cb2b1e68befc5c0cbb051d4521ea39b10cfb48))
* Replace relative paths to noir-protocol-circuits
([facf462](https://github.com/AztecProtocol/aztec-packages/commit/facf4625e7bc4d5506464f4e1d331d1b6ad48bc8))
* Replace relative paths to noir-protocol-circuits
([45a72af](https://github.com/AztecProtocol/aztec-packages/commit/45a72afac98b3be090cf517aaa8948d72015462f))
* Reproduce AVM ecadd bug
([#9019](https://github.com/AztecProtocol/aztec-packages/issues/9019))
([757ccef](https://github.com/AztecProtocol/aztec-packages/commit/757ccefd280a0798d1f6fc5cb62efafe86764bee))
* Revert "feat(avm): constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))"
([#9080](https://github.com/AztecProtocol/aztec-packages/issues/9080))
([07e4c95](https://github.com/AztecProtocol/aztec-packages/commit/07e4c956494154685970849bc4dda60c25af31bc))
* Revert deletion of the old bbup
([#9146](https://github.com/AztecProtocol/aztec-packages/issues/9146))
([3138078](https://github.com/AztecProtocol/aztec-packages/commit/3138078f0062d8426b3c45ac47646169317ab795))
* Script for deploying the spartan network
([#9167](https://github.com/AztecProtocol/aztec-packages/issues/9167))
([4660cec](https://github.com/AztecProtocol/aztec-packages/commit/4660cec92802d0e165a2a1ddff08c6756348b527))
* Swap `pub` and `unconstrained` in function signatures
([#9237](https://github.com/AztecProtocol/aztec-packages/issues/9237))
([1c7e627](https://github.com/AztecProtocol/aztec-packages/commit/1c7e627e28eeabe0cbf9ccae45e107d66b0953b0))
* Update palla/update-env-vars-prover to add new env var to spartan
([#9069](https://github.com/AztecProtocol/aztec-packages/issues/9069))
([077a01c](https://github.com/AztecProtocol/aztec-packages/commit/077a01c9a10d5a30c85e881d4a786eed7e25c492))
* Update validator management policy to be parallel
([#9086](https://github.com/AztecProtocol/aztec-packages/issues/9086))
([f8267f2](https://github.com/AztecProtocol/aztec-packages/commit/f8267f292b9aabfa29e3e056cb42f56d5ad0f163))
* Wire bb skip cleanup for bb prover
([#9100](https://github.com/AztecProtocol/aztec-packages/issues/9100))
([bba5674](https://github.com/AztecProtocol/aztec-packages/commit/bba56743ece19986f8259c4cf5bfdd7573207054))


### Documentation

* Initial pass on node guide
([#9192](https://github.com/AztecProtocol/aztec-packages/issues/9192))
([0fa1423](https://github.com/AztecProtocol/aztec-packages/commit/0fa14238fa83e8ad3939db8d4afd664e179fa887))
</details>

<details><summary>barretenberg: 0.58.0</summary>

##
[0.58.0](https://github.com/AztecProtocol/aztec-packages/compare/barretenberg-v0.57.0...barretenberg-v0.58.0)
(2024-10-18)


### ⚠ BREAKING CHANGES

* remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
* remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
* **avm:** remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
* remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
* **avm:** more instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
* unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))

### Features

* **avm:** Codegen recursive_verifier.cpp
([#9204](https://github.com/AztecProtocol/aztec-packages/issues/9204))
([2592e50](https://github.com/AztecProtocol/aztec-packages/commit/2592e50b2bd9e76d35a3c9caac4d7042fe26b9b6)),
closes
[#8849](https://github.com/AztecProtocol/aztec-packages/issues/8849)
* **avm:** Constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))
([308c03b](https://github.com/AztecProtocol/aztec-packages/commit/308c03b9ad45001570e6232f88403de8cc7d3cfb)),
closes
[#9001](https://github.com/AztecProtocol/aztec-packages/issues/9001)
* **avm:** More instr wire format takes u16
([#9174](https://github.com/AztecProtocol/aztec-packages/issues/9174))
([3a01ad9](https://github.com/AztecProtocol/aztec-packages/commit/3a01ad93e21e9e6cd27b7a2a4c1e2c9f24d6363e))
* **avm:** Remove tags from wire format
([#9198](https://github.com/AztecProtocol/aztec-packages/issues/9198))
([68a7326](https://github.com/AztecProtocol/aztec-packages/commit/68a7326d9f2d4bd891acac12950289d6e9fbe617))
* Brillig and AVM default all uninitialized memory cells to Field 0
([#9057](https://github.com/AztecProtocol/aztec-packages/issues/9057))
([5861d4e](https://github.com/AztecProtocol/aztec-packages/commit/5861d4e5e8a72161dac910e0bc8e635e0d332793))
* Brillig with a stack and conditional inlining
([#8989](https://github.com/AztecProtocol/aztec-packages/issues/8989))
([409b7b8](https://github.com/AztecProtocol/aztec-packages/commit/409b7b8c6b43a91fc1b5be48aee0174d56d914d9))
* Browser tests for UltraHonk
([#9047](https://github.com/AztecProtocol/aztec-packages/issues/9047))
([f0d45dd](https://github.com/AztecProtocol/aztec-packages/commit/f0d45dd8d0c00707cd18989c3a45ff0c3cbc92a6))
* Integrate databus in the private kernels
([#9028](https://github.com/AztecProtocol/aztec-packages/issues/9028))
([1798b1c](https://github.com/AztecProtocol/aztec-packages/commit/1798b1cc701824dd268ed0e49e592febf01a1687))
* Modify contract instance to include public keys
([#9153](https://github.com/AztecProtocol/aztec-packages/issues/9153))
([17c6127](https://github.com/AztecProtocol/aztec-packages/commit/17c612740dc3563321bf69c1760de1ef88b22124))
* New per-enqueued-call gas limit
([#9033](https://github.com/AztecProtocol/aztec-packages/issues/9033))
([6ef0895](https://github.com/AztecProtocol/aztec-packages/commit/6ef0895ed9788c533b0caf2d2c30839552dabbcc))
* New world state
([#8776](https://github.com/AztecProtocol/aztec-packages/issues/8776))
([41f3934](https://github.com/AztecProtocol/aztec-packages/commit/41f393443396cae77e09a09df07d42e6d5ff5618))
* Replace Zeromorph with Shplemini in ECCVM
([#9102](https://github.com/AztecProtocol/aztec-packages/issues/9102))
([c857cd9](https://github.com/AztecProtocol/aztec-packages/commit/c857cd9167f696fc237b64ff579952001eba7d40))
* Structured commit
([#9027](https://github.com/AztecProtocol/aztec-packages/issues/9027))
([26f406b](https://github.com/AztecProtocol/aztec-packages/commit/26f406b0591b3f88cb37c5e8f7cb3cbfc625315e))
* Tracy time with instrumentation
([#9170](https://github.com/AztecProtocol/aztec-packages/issues/9170))
([1c008d9](https://github.com/AztecProtocol/aztec-packages/commit/1c008d9a2fad747142e8ca356d6c00cee1663f2c))
* Unrevert "feat: new per-enqueued-call gas limit"
([#9140](https://github.com/AztecProtocol/aztec-packages/issues/9140))
([1323a34](https://github.com/AztecProtocol/aztec-packages/commit/1323a34c50e7727435129aa31a05ae7bdfb0ca09))
* Use s3 cache in bootstrap fast
([#9111](https://github.com/AztecProtocol/aztec-packages/issues/9111))
([349f938](https://github.com/AztecProtocol/aztec-packages/commit/349f938601f7a4fdbdf83aea62c7b8c244bbe434))
* World State Re-orgs
([#9035](https://github.com/AztecProtocol/aztec-packages/issues/9035))
([04f4a7b](https://github.com/AztecProtocol/aztec-packages/commit/04f4a7b2ae141b7eee4464e8d2cc91460d0c650a))


### Bug Fixes

* Bb bootstrap_cache.sh
([#9254](https://github.com/AztecProtocol/aztec-packages/issues/9254))
([df37104](https://github.com/AztecProtocol/aztec-packages/commit/df3710477fc7d2e7c44e62b116bea74d4e14f930))
* Limit number of bb.js threads to 32
([#9070](https://github.com/AztecProtocol/aztec-packages/issues/9070))
([97e4b9b](https://github.com/AztecProtocol/aztec-packages/commit/97e4b9b2e0d37575b6b5e4c7a22f85b60d1f418b))
* Mac-build
([#9216](https://github.com/AztecProtocol/aztec-packages/issues/9216))
([80ea32c](https://github.com/AztecProtocol/aztec-packages/commit/80ea32cfda8c149980938382518c47a6da123e72))
* Make gate counting functions less confusing and avoid estimations
([#9046](https://github.com/AztecProtocol/aztec-packages/issues/9046))
([0bda0a4](https://github.com/AztecProtocol/aztec-packages/commit/0bda0a4d71ae0fb4352de0746f7d96b63b787888))
* Reduce SRS size back to normal
([#9098](https://github.com/AztecProtocol/aztec-packages/issues/9098))
([a306ea5](https://github.com/AztecProtocol/aztec-packages/commit/a306ea5ffeb13019427a96d8152e5642b717c5f6))
* Revert "feat: new per-enqueued-call gas limit"
([#9139](https://github.com/AztecProtocol/aztec-packages/issues/9139))
([7677ca5](https://github.com/AztecProtocol/aztec-packages/commit/7677ca5d9280ac9615a92be36d1958960dbd7353))
* Revert "feat: use s3 cache in bootstrap fast"
([#9181](https://github.com/AztecProtocol/aztec-packages/issues/9181))
([7872d09](https://github.com/AztecProtocol/aztec-packages/commit/7872d092c359298273d7ab1fc23fa61ae1973f8b))
* Revert "fix: Revert "feat: use s3 cache in bootstrap fast""
([#9182](https://github.com/AztecProtocol/aztec-packages/issues/9182))
([ce3d08a](https://github.com/AztecProtocol/aztec-packages/commit/ce3d08a18684da9f5b1289a2b9bdf60a66342590))
* **s3-cache:** Link extracted preset-release-world-state
([#9252](https://github.com/AztecProtocol/aztec-packages/issues/9252))
([8b2d7d9](https://github.com/AztecProtocol/aztec-packages/commit/8b2d7d9c962c975592e17424f4d0b70f9ca7acd4))


### Miscellaneous

* Add world_state_napi to bootstrap fast
([#9079](https://github.com/AztecProtocol/aztec-packages/issues/9079))
([e827056](https://github.com/AztecProtocol/aztec-packages/commit/e827056e652a4789c91a617587945d57163fa7ff))
* **avm:** Revert 9080 - re-introducing start/end gas constraining
([#9109](https://github.com/AztecProtocol/aztec-packages/issues/9109))
([763e9b8](https://github.com/AztecProtocol/aztec-packages/commit/763e9b8a98981545b68f96e5b49a0726fc3c80b3))
* **avm:** Type aliasing for VmPublicInputs
([#8884](https://github.com/AztecProtocol/aztec-packages/issues/8884))
([f3ed39b](https://github.com/AztecProtocol/aztec-packages/commit/f3ed39bf7be6f08bcfcabf6c04eb570f4d06ed27))
* **ci:** Parallelise CI for acir-test flows
([#9238](https://github.com/AztecProtocol/aztec-packages/issues/9238))
([73a7c23](https://github.com/AztecProtocol/aztec-packages/commit/73a7c231193d56fdbf2e1160be5ea8d58f5596bb))
* Configure trees instead of duplicating constants
([#9088](https://github.com/AztecProtocol/aztec-packages/issues/9088))
([c1150c9](https://github.com/AztecProtocol/aztec-packages/commit/c1150c9b28581985686b13ba97eb7f0066736652))
* **docs:** Rewriting bbup script, refactoring bb readme for clarity
([#9073](https://github.com/AztecProtocol/aztec-packages/issues/9073))
([662b61e](https://github.com/AztecProtocol/aztec-packages/commit/662b61e4c20a2d4217980922d4578f4dfeacae6b))
* Eccvm transcript builder
([#9026](https://github.com/AztecProtocol/aztec-packages/issues/9026))
([d2c9ae2](https://github.com/AztecProtocol/aztec-packages/commit/d2c9ae2853bb75cd736583406a57e96645bd2e88))
* Pass by const reference
([#9083](https://github.com/AztecProtocol/aztec-packages/issues/9083))
([764bba4](https://github.com/AztecProtocol/aztec-packages/commit/764bba4dd8a016d45b201562ec82f9a12de65c2d))
* Remove keccak256 opcode from ACIR/Brillig
([#9104](https://github.com/AztecProtocol/aztec-packages/issues/9104))
([4c1163a](https://github.com/AztecProtocol/aztec-packages/commit/4c1163a9e9516d298e55421f1cf0ed81081151dd))
* Remove pedersen commitment
([#9107](https://github.com/AztecProtocol/aztec-packages/issues/9107))
([1823bde](https://github.com/AztecProtocol/aztec-packages/commit/1823bde2b486827f33a87899074594f811cfbef4))
* Remove pedersen hash opcode
([#9245](https://github.com/AztecProtocol/aztec-packages/issues/9245))
([1f0538f](https://github.com/AztecProtocol/aztec-packages/commit/1f0538f00cadcf4325d2aa17bdb098d11ca3840f))
* Revert "feat(avm): constrain start and end l2/da gas
([#9031](https://github.com/AztecProtocol/aztec-packages/issues/9031))"
([#9080](https://github.com/AztecProtocol/aztec-packages/issues/9080))
([07e4c95](https://github.com/AztecProtocol/aztec-packages/commit/07e4c956494154685970849bc4dda60c25af31bc))
* Revert deletion of the old bbup
([#9146](https://github.com/AztecProtocol/aztec-packages/issues/9146))
([3138078](https://github.com/AztecProtocol/aztec-packages/commit/3138078f0062d8426b3c45ac47646169317ab795))
</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.

2 participants