Skip to content

Commit 9541198

Browse files
authored
Merge branch 'main' into feat/remove-coverage-incompatible-feature-#1523
2 parents dc36504 + 54ccd38 commit 9541198

15 files changed

Lines changed: 18 additions & 100 deletions

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ jobs:
5757
> ./docs/modules/ROOT/pages/utils/_class_hashes.adoc
5858
5959
- name: Auto-commit changes
60-
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 #v6.0.1
60+
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 #v7.0.0
6161
with:
6262
commit_message: Bump version to ${{ env.NEW_VERSION }} and update presets page

.github/workflows/prepare-testing-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ jobs:
5252
mv ./target/doc/openzeppelin_testing/src ./packages/testing/docs
5353
5454
- name: Auto-commit changes
55-
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 #v6.0.1
55+
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 #v7.0.0
5656
with:
5757
commit_message: Bump openzeppelin_testing version to ${{ env.NEW_VERSION }} and update docs

Scarb.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ dependencies = [
150150

151151
[[package]]
152152
name = "openzeppelin_testing"
153-
version = "5.0.0"
153+
version = "6.0.0"
154154
dependencies = [
155155
"snforge_std",
156156
]

benches/contract_sizes.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"felts": 1528
88
},
99
"openzeppelin_test_common_DualCaseAccessControlDefaultAdminRulesMock.compiled_contract_class.json": {
10-
"felts": 8341
10+
"felts": 8248
1111
},
1212
"openzeppelin_test_common_DualCaseAccessControlMock.compiled_contract_class.json": {
1313
"felts": 4532
@@ -49,7 +49,7 @@
4949
"felts": 5919
5050
},
5151
"openzeppelin_test_common_ERC20ReentrantMock.compiled_contract_class.json": {
52-
"felts": 8450
52+
"felts": 8318
5353
},
5454
"openzeppelin_test_common_ERC20TimestampVotesMock.compiled_contract_class.json": {
5555
"felts": 12958
@@ -103,7 +103,7 @@
103103
"felts": 23009
104104
},
105105
"openzeppelin_test_common_GovernorTimelockedMock.compiled_contract_class.json": {
106-
"felts": 23507
106+
"felts": 23260
107107
},
108108
"openzeppelin_test_common_InitializableMock.compiled_contract_class.json": {
109109
"felts": 291
@@ -181,7 +181,7 @@
181181
"felts": 777
182182
},
183183
"openzeppelin_test_common_TimelockControllerMock.compiled_contract_class.json": {
184-
"felts": 10502
184+
"felts": 10169
185185
},
186186
"openzeppelin_test_common_UpgradesV1.compiled_contract_class.json": {
187187
"felts": 1074
@@ -198,7 +198,7 @@
198198
"bytes": 37219
199199
},
200200
"openzeppelin_test_common_DualCaseAccessControlDefaultAdminRulesMock.contract_class.json": {
201-
"bytes": 171636
201+
"bytes": 169901
202202
},
203203
"openzeppelin_test_common_DualCaseAccessControlMock.contract_class.json": {
204204
"bytes": 96706
@@ -240,7 +240,7 @@
240240
"bytes": 124793
241241
},
242242
"openzeppelin_test_common_ERC20ReentrantMock.contract_class.json": {
243-
"bytes": 189745
243+
"bytes": 187066
244244
},
245245
"openzeppelin_test_common_ERC20TimestampVotesMock.contract_class.json": {
246246
"bytes": 291932
@@ -294,7 +294,7 @@
294294
"bytes": 556705
295295
},
296296
"openzeppelin_test_common_GovernorTimelockedMock.contract_class.json": {
297-
"bytes": 579123
297+
"bytes": 572887
298298
},
299299
"openzeppelin_test_common_InitializableMock.contract_class.json": {
300300
"bytes": 9238
@@ -372,7 +372,7 @@
372372
"bytes": 22711
373373
},
374374
"openzeppelin_test_common_TimelockControllerMock.contract_class.json": {
375-
"bytes": 250722
375+
"bytes": 241207
376376
},
377377
"openzeppelin_test_common_UpgradesV1.contract_class.json": {
378378
"bytes": 25813

packages/testing/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## Unreleased
1111

12+
## 6.0.0 (2025-10-22)
13+
1214
### Changed (Breaking)
1315

1416
- Bump snforge to v0.51.0 (#1555)

packages/testing/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ separate dependency in the Scarb.toml file:
1313

1414
```cairo
1515
[dev-dependencies]
16-
openzeppelin_testing = "5.0.0"
16+
openzeppelin_testing = "6.0.0"
1717
```
1818

1919
Then it can be imported into tests:
@@ -24,5 +24,5 @@ use openzeppelin_testing;
2424

2525
### API documentation
2626

27-
- [Index](https://github.com/OpenZeppelin/cairo-contracts/blob/openzeppelin_testing-v5.0.0/packages/testing/docs/openzeppelin_testing.md)
28-
- [Summary](https://github.com/OpenZeppelin/cairo-contracts/blob/openzeppelin_testing-v5.0.0/packages/testing/docs/SUMMARY.md)
27+
- [Index](https://github.com/OpenZeppelin/cairo-contracts/blob/openzeppelin_testing-v6.0.0/packages/testing/docs/openzeppelin_testing.md)
28+
- [Summary](https://github.com/OpenZeppelin/cairo-contracts/blob/openzeppelin_testing-v6.0.0/packages/testing/docs/SUMMARY.md)

packages/testing/Scarb.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openzeppelin_testing"
3-
version = "5.0.0"
3+
version = "6.0.0"
44
readme = "README.md"
55
keywords = [
66
"openzeppelin",
@@ -13,7 +13,7 @@ cairo-version.workspace = true
1313
scarb-version.workspace = true
1414
authors.workspace = true
1515
description.workspace = true
16-
documentation = "https://github.com/openzeppelin/cairo-contracts/blob/openzeppelin_testing-v5.0.0/packages/testing/docs/openzeppelin_testing.md"
16+
documentation = "https://github.com/openzeppelin/cairo-contracts/blob/openzeppelin_testing-v6.0.0/packages/testing/docs/openzeppelin_testing.md"
1717
repository.workspace = true
1818
license-file.workspace = true
1919

packages/testing/docs/SUMMARY.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77
- [panic_data_to_byte_array](./openzeppelin_testing-common-panic_data_to_byte_array.md)
88
- [to_base_16_string](./openzeppelin_testing-common-to_base_16_string.md)
99
- [to_base_16_string_no_padding](./openzeppelin_testing-common-to_base_16_string_no_padding.md)
10-
- [assert_entrypoint_not_found_error](./openzeppelin_testing-common-assert_entrypoint_not_found_error.md)
1110
- [Traits](./openzeppelin_testing-common-traits.md)
1211
- [IntoBase16StringTrait](./openzeppelin_testing-common-IntoBase16StringTrait.md)
13-
- [Impls](./openzeppelin_testing-common-impls.md)
14-
- [FuzzableBool](./openzeppelin_testing-common-FuzzableBool.md)
15-
- [FuzzableContractAddress](./openzeppelin_testing-common-FuzzableContractAddress.md)
1612
- [constants](./openzeppelin_testing-constants.md)
1713
- [Modules](./openzeppelin_testing-constants-modules.md)
1814
- [stark](./openzeppelin_testing-constants-stark.md)

packages/testing/docs/openzeppelin_testing-common-FuzzableBool.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

packages/testing/docs/openzeppelin_testing-common-FuzzableContractAddress.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)