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

Merge release-v4.8 #4188

Merged
merged 31 commits into from
Apr 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
53eb531
Improve some NatSpec (#3809)
frangio Nov 25, 2022
fad1172
Add Ownable2Step to the docs (#3836)
bxmmm1 Dec 1, 2022
3e97221
Add ERC-4626 Upgrade Note (#3849)
frangio Dec 2, 2022
4e5b119
Improve documentation of Initializable getters (#3861)
frangio Dec 7, 2022
011a0fb
Add documentation about the security of overrides (#3725)
frangio Sep 23, 2022
873a01b
Fix governance tutorial contract (#3948)
omurovec Jan 12, 2023
cd50a86
Use a staticcall to fetch ERC20.decimals in ERC4626 (#3943)
Amxx Jan 12, 2023
472b996
Add explicit permissions to docs workflow
frangio Jan 12, 2023
1dfccff
Add docs on non-stability of internal function use (#3952)
frangio Jan 13, 2023
0457042
4.8.1
frangio Jan 13, 2023
3ab2e11
Show if event parameter is indexed in docs (#3958)
JulissaDantes Jan 16, 2023
d13316e
Add `ERC*Pausable` warning for public pausing mechanism (#4007)
ernestognw Jan 28, 2023
c018c9c
Remove outdated note about virtual view functions (#4014)
frangio Jan 31, 2023
9b610d3
Add warning for `supportsERC165InterfaceUnchecked` edge case (#4017)
YamenMerhi Feb 3, 2023
357022c
Update Tally screenshots (#4030)
frangio Feb 6, 2023
82d47ca
Add Subgraphs to docs sidebar
frangio Feb 16, 2023
167bf67
Fix ERC721Consecutive balance update on batch size 1
Amxx Mar 2, 2023
43aa7ff
Update `forge-std` submodule to `v1.2.0` (#3885)
pcaversaccio Dec 28, 2022
ab9cc4c
Ignore reentrancy in`executeBatch` and update Slither config (#3955)
0xalpharush Jan 13, 2023
d00acef
4.8.2
frangio Mar 2, 2023
9eee01c
Bump and pin Forge Std submodule (#4102)
PaulRBerg Mar 9, 2023
8dfeb5d
Improve TransparentUpgradeableProxy's transparency (#3977)
Amxx Jan 19, 2023
c01ea99
Fix TransparentUpgradeableProxy's transparency (#4154)
Amxx Apr 5, 2023
db9ee95
Merge changesets for transparency improvements (#4165)
frangio Apr 5, 2023
61b45a2
Improve docs for transparent proxy (#4181)
frangio Apr 13, 2023
ea595f5
Merge pull request from GHSA-93hq-5wgc-jc82
Amxx Apr 13, 2023
7bdd255
Update changelog
frangio Apr 13, 2023
0a25c19
4.8.3
frangio Apr 13, 2023
0da9c50
Merge branch 'master' into merge/release-v4.8
frangio Apr 21, 2023
d79fc6d
Sync changesets with master
frangio Apr 21, 2023
586e123
fix changelog
frangio Apr 22, 2023
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
5 changes: 0 additions & 5 deletions .changeset/silent-pugs-scream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thirty-shrimps-mix.md

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
- `ERC777`: The `ERC777` token standard is no longer supported by OpenZeppelin. Our implementation is now deprecated and will be removed in the next major release. The corresponding standard interfaces remain available. ([#4066](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4066))
- `ERC1820Implementer`: The `ERC1820` pseudo-introspection mechanism is no longer supported by OpenZeppelin. Our implementation is now deprecated and will be removed in the next major release. The corresponding standard interfaces remain available. ([#4066](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4066))

## 4.8.3 (2023-04-13)

- `GovernorCompatibilityBravo`: Fix encoding of proposal data when signatures are missing.
- `TransparentUpgradeableProxy`: Fix transparency in case of selector clash with non-decodable calldata or payable mutability. ([#4154](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4154))

## 4.8.2 (2023-03-02)

- `ERC721Consecutive`: Fixed a bug when `_mintConsecutive` is used for batches of size 1 that could lead to balance overflow. Refer to the breaking changes section in the changelog for a note on the behavior of `ERC721._beforeTokenTransfer`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (governance/compatibility/GovernorCompatibilityBravo.sol)
// OpenZeppelin Contracts (last updated v4.8.3) (governance/compatibility/GovernorCompatibilityBravo.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/proxy/ERC1967/ERC1967Upgrade.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)
// OpenZeppelin Contracts (last updated v4.8.3) (proxy/ERC1967/ERC1967Upgrade.sol)

pragma solidity ^0.8.2;

Expand Down
2 changes: 1 addition & 1 deletion contracts/proxy/transparent/ProxyAdmin.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/transparent/ProxyAdmin.sol)
// OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/ProxyAdmin.sol)

pragma solidity ^0.8.0;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/transparent/TransparentUpgradeableProxy.sol)
// OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/TransparentUpgradeableProxy.sol)

pragma solidity ^0.8.0;

Expand Down