Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
> ./docs/modules/ROOT/pages/utils/_class_hashes.adoc

- name: Auto-commit changes
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 #v6.0.1
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 #v7.0.0
with:
commit_message: Bump version to ${{ env.NEW_VERSION }} and update presets page
2 changes: 1 addition & 1 deletion .github/workflows/prepare-testing-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ jobs:
mv ./target/doc/openzeppelin_testing/src ./packages/testing/docs

- name: Auto-commit changes
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 #v6.0.1
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 #v7.0.0
with:
commit_message: Bump openzeppelin_testing version to ${{ env.NEW_VERSION }} and update docs
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: scarb fmt --check --workspace

- name: Run tests
run: snforge test --workspace --features coverage_incompatible,fuzzing --fuzzer-runs 500
run: snforge test --workspace --features fuzzing --fuzzer-runs 500

- name: Run tests and generate coverage report
run: snforge test --workspace --coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
uses: actions/checkout@v5

- name: Check for typos
uses: crate-ci/typos@80c8a4945eec0f6d464eaf9e65ed98ef085283d1
uses: crate-ci/typos@07d900b8fa1097806b8adb6391b0d3e0ac2fdea7
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

- AccessControlDefaultAdminRules:
- `MAXIMUM_DEFAULT_ADMIN_TRANSFER_DELAY` constant exposed in the component ImmutableConfig.
- `maximum_default_admin_transfer_delay` getter to the `IAccessControlDefaultAdminRules` interface.

## 3.0.0-alpha.3 (2025-10-9)

### Added
Expand Down
10 changes: 5 additions & 5 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ dependencies = [

[[package]]
name = "openzeppelin_testing"
version = "5.0.0"
version = "6.0.0"
dependencies = [
"snforge_std",
]
Expand Down Expand Up @@ -189,15 +189,15 @@ dependencies = [

[[package]]
name = "snforge_scarb_plugin"
version = "0.50.0"
version = "0.51.2"
source = "registry+https://scarbs.xyz/"
checksum = "sha256:8c29e5519362d22f2c802e4e348da846de3898cbaeac19b58aded6a009bf188e"
checksum = "sha256:7b94edb0a94b93915200275076c29ef8266f4b870ffda04360cf36bc3b5e67cc"

[[package]]
name = "snforge_std"
version = "0.50.0"
version = "0.51.2"
source = "registry+https://scarbs.xyz/"
checksum = "sha256:db3a9de47952c699f8f3ce649b5b01f09c1f9c170f38b3c7a8df8e50a0188e9b"
checksum = "sha256:d7287b7e9c826ee560788a7a9b808a2a0454977ac4111bd3c1bcb3c7c5f01040"
dependencies = [
"snforge_scarb_plugin",
]
13 changes: 5 additions & 8 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ edition.workspace = true
[workspace.package]
version = "3.0.0-alpha.3"
edition = "2024_07"
cairo-version = "2.12.0"
scarb-version = "2.12.0"
cairo-version = "2.13.1"
scarb-version = "2.13.1"
authors = ["OpenZeppelin Community <maintainers@openzeppelin.org>"]
description = "OpenZeppelin Contracts written in Cairo for Starknet, a decentralized ZK Rollup"
documentation = "https://docs.openzeppelin.com/contracts-cairo"
Expand All @@ -43,9 +43,9 @@ keywords = [
]

[workspace.dependencies]
assert_macros = "2.12.2"
starknet = "2.12.2"
snforge_std = "0.50.0"
assert_macros = "2.13.1"
starknet = "2.13.1"
snforge_std = "0.51.2"

[dependencies]
starknet.workspace = true
Expand All @@ -67,9 +67,6 @@ snforge_std.workspace = true
openzeppelin_test_common = { path = "packages/test_common" }
openzeppelin_testing = { path = "packages/testing" }

[workspace.features]
coverage_incompatible = ["packages/presets/coverage_incompatible"]

[lib]

[[target.starknet-contract]]
Expand Down
Loading