Merge release-v5.0 branch (#4930)

pull/4932/head
github-actions[bot] 11 months ago committed by GitHub
parent 51b3e37d07
commit 5705e8208b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .changeset/warm-geese-dance.md
  2. 4
      CHANGELOG.md
  3. 2
      contracts/package.json
  4. 2
      contracts/utils/Base64.sol
  5. 2
      package.json

@ -1,5 +0,0 @@
---
'openzeppelin-solidity': patch
---
`Base64`: Fix issue where dirty memory located just after the input buffer is affecting the result.

@ -1,6 +1,10 @@
# Changelog
## 5.0.2 (2024-02-29)
- `Base64`: Fix issue where dirty memory located just after the input buffer is affecting the result. ([#4926](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4926))
## 5.0.1 (2023-12-07)
- `ERC2771Context` and `Context`: Introduce a `_contextPrefixLength()` getter, used to trim extra information appended to `msg.data`.

@ -1,7 +1,7 @@
{
"name": "@openzeppelin/contracts",
"description": "Secure Smart Contract library for Solidity",
"version": "5.0.1",
"version": "5.0.2",
"files": [
"**/*.sol",
"/build/contracts/*.json",

@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Base64.sol)
// OpenZeppelin Contracts (last updated v5.0.2) (utils/Base64.sol)
pragma solidity ^0.8.20;

@ -1,7 +1,7 @@
{
"name": "openzeppelin-solidity",
"description": "Secure Smart Contract library for Solidity",
"version": "5.0.1",
"version": "5.0.2",
"private": true,
"files": [
"/contracts/**/*.sol",

Loading…
Cancel
Save