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

Bump the ark group with 5 updates #3861

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 6, 2024

Bumps the ark group with 5 updates:

Package From To
ark-bn254 0.4.0 0.5.0
ark-ed-on-bn254 0.4.0 0.5.0
ark-ff 0.4.2 0.5.0
ark-serialize 0.4.2 0.5.0
ark-std 0.4.0 0.5.0

Updates ark-bn254 from 0.4.0 to 0.5.0

Changelog

Sourced from ark-bn254's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation

... (truncated)

Commits

Updates ark-ed-on-bn254 from 0.4.0 to 0.5.0

Changelog

Sourced from ark-ed-on-bn254's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation

... (truncated)

Commits

Updates ark-ff from 0.4.2 to 0.5.0

Changelog

Sourced from ark-ff's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation
Commits

Updates ark-serialize from 0.4.2 to 0.5.0

Changelog

Sourced from ark-serialize's changelog.

v0.5.0

  • #772 (ark-ff) Implementation of mul method for BigInteger.
  • #794 (ark-ff) Fix wasm compilation.
  • #837 (ark-serialize) Fix array deserialization panic.
  • #845 (Algebra) Implementation of mul method for DenseMultilinearExtension<F> * F.

Breaking changes

  • #577 (ark-ff, ark-ec) Add AdditiveGroup, a trait for additive groups (equipped with scalar field).
  • #593 (ark-ec) Change AffineRepr::xy() to return owned values.
  • #633 (ark-ec) Generic pairing implementation for the curves from the BW6 family.
  • #659 (ark-ec) Move auxiliary parity function from ark_ec::hashing::curve_maps::swu to ark_ec::hashing::curve_maps.
  • #746 (ark-ec) Refactor fixed-based batch multiplication:
    • Move functionality to ScalarMul::batch_mul and ScalarMul::batch_mul_with_preprocessing.
    • Create new struct BatchMulPreprocessing for to hold preprocessed powers of base.
      • Provide high-level constructor new that calculates window size and scalar size.
      • Provide low-level constructor with_window_and_scalar_size that allows setting these parameters.
      • Make windowed_mul a private method of BatchMulPreprocessing.
      • Rename get_mul_window_size to compute_window_size and make it private.
  • #748 (ark-ff) Add FromStr for BigInteger.
  • #756 (ark-ec) Require Neg, Sub, SubAssign ops on AffineRepr.
  • #767 (ark-curve25519) Change (negate) generator of curve25519 for inter-operability with curve25519-dalek.
  • #811 (ark-serialize) Remove Send trait bound from Valid.

Features

  • #758 Implement Elligator2 hash-to-curve parameters for Bandersnatch.
  • #659 (ark-ec) Add Elligator2 hash-to-curve map.
  • #689 (ark-serialize) Add CanonicalSerialize and CanonicalDeserialize impls for VecDeque and LinkedList.
  • #691 (ark-poly) Implement Polynomial for SparseMultilinearExtension and DenseMultilinearExtension.
  • #693 (ark-serialize) Add serialize_to_vec! convenience macro.
  • #713 (ark-ff) Add support for bitwise operations AND, OR, and XOR between BigInteger.
  • #763 (ark-poly) Add concat to concatenate evaluation tables of DenseMultilinearPolynomials.
  • #811 (ark-serialize) Implement Valid & CanonicalDeserialize for Rc.

Improvements

  • #736 (ark-ff) Deprecate divn(), and use core::ops::{Shr, ShrAssign} instead.
  • #739 (ark-ff) Deprecate muln(), and use core::ops::{Shl, ShlAssign} instead.
  • #771 (ark-ec) Omit expensive scalar multiplication in is_in_correct_subgroup_assuming_on_curve() for short Weierstrass curves of cofactor one.
  • #817 (ark-ec) Relax the visibility for G2 ell coeffs and related algorithms.

Bugfixes

  • #747 (ark-ff-macros) Fix fetching attributes in MontConfig macro.
  • #803 (ark-ec, ark-test-template) Fix incorrect decomposition in GLV.
  • #806 (ark-ff) Fix the impl for Displaying zero element in Fp.
  • #822 (ark-ec, ark-test-template) Fix the incorrect Affine - Projective implementation
Commits

Updates ark-std from 0.4.0 to 0.5.0

Changelog

Sourced from ark-std's changelog.

Pending

  • #47 Fix incorrect use of atomic variable in src/perf_trace.rs

Breaking changes

Features

Improvements

Bug fixes

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot requested a review from ss-es as a code owner November 6, 2024 03:36
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 6, 2024
@dependabot dependabot bot force-pushed the dependabot/cargo/ark-d14542368f branch 7 times, most recently from 337b8d0 to 2713619 Compare November 14, 2024 03:12
@dependabot dependabot bot force-pushed the dependabot/cargo/ark-d14542368f branch 2 times, most recently from 790cdb3 to 76158d9 Compare November 15, 2024 03:32
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 18, 2024

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot dependabot bot force-pushed the dependabot/cargo/ark-d14542368f branch 5 times, most recently from 27e98ac to 870e95a Compare November 21, 2024 16:15
Bumps the ark group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [ark-bn254](https://github.com/arkworks-rs/algebra) | `0.4.0` | `0.5.0` |
| [ark-ed-on-bn254](https://github.com/arkworks-rs/algebra) | `0.4.0` | `0.5.0` |
| [ark-ff](https://github.com/arkworks-rs/algebra) | `0.4.2` | `0.5.0` |
| [ark-serialize](https://github.com/arkworks-rs/algebra) | `0.4.2` | `0.5.0` |
| [ark-std](https://github.com/arkworks-rs/std) | `0.4.0` | `0.5.0` |


Updates `ark-bn254` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.0...v0.5.0)

Updates `ark-ed-on-bn254` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.0...v0.5.0)

Updates `ark-ff` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.2...v0.5.0)

Updates `ark-serialize` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/arkworks-rs/algebra/releases)
- [Changelog](https://github.com/arkworks-rs/algebra/blob/v0.5.0/CHANGELOG.md)
- [Commits](arkworks-rs/algebra@v0.4.2...v0.5.0)

Updates `ark-std` from 0.4.0 to 0.5.0
- [Changelog](https://github.com/arkworks-rs/std/blob/master/CHANGELOG.md)
- [Commits](arkworks-rs/std@v0.4.0...v0.5.0)

---
updated-dependencies:
- dependency-name: ark-bn254
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ark
- dependency-name: ark-ed-on-bn254
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ark
- dependency-name: ark-ff
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ark
- dependency-name: ark-serialize
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ark
- dependency-name: ark-std
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ark
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/ark-d14542368f branch from 870e95a to 0f31493 Compare November 22, 2024 03:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants