@@ -59,7 +59,7 @@ index ff596b0c3..000000000
59
59
- <!-- Make sure that you have reviewed the OpenZeppelin Contracts Contributor Guidelines. -->
60
60
- <!-- https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/CONTRIBUTING.md -->
61
61
diff --git a/README.md b/README.md
62
- index fa7b4e31e..4799b6376 100644
62
+ index 60d0a430a..0e4f91a6d 100644
63
63
--- a/README.md
64
64
+++ b/README.md
65
65
@@ -19,6 +19,9 @@
@@ -110,15 +110,15 @@ index fa7b4e31e..4799b6376 100644
110
110
}
111
111
```
112
112
diff --git a/contracts/package.json b/contracts/package.json
113
- index 845e8c403..8dc181b91 100644
113
+ index 3682eadeb..4f870d094 100644
114
114
--- a/contracts/package.json
115
115
+++ b/contracts/package.json
116
116
@@ -1,5 +1,5 @@
117
117
{
118
118
- "name": "@openzeppelin/contracts",
119
119
+ "name": "@openzeppelin/contracts-upgradeable",
120
120
"description": "Secure Smart Contract library for Solidity",
121
- "version": "5.0.2 ",
121
+ "version": "5.2.0 ",
122
122
"files": [
123
123
@@ -13,7 +13,7 @@
124
124
},
@@ -140,7 +140,7 @@ index 845e8c403..8dc181b91 100644
140
140
+ }
141
141
}
142
142
diff --git a/contracts/utils/cryptography/EIP712.sol b/contracts/utils/cryptography/EIP712.sol
143
- index 77c4c8990..602467f40 100644
143
+ index bcb67c87a..7195c3bbd 100644
144
144
--- a/contracts/utils/cryptography/EIP712.sol
145
145
+++ b/contracts/utils/cryptography/EIP712.sol
146
146
@@ -4,7 +4,6 @@
@@ -151,7 +151,7 @@ index 77c4c8990..602467f40 100644
151
151
import {IERC5267} from "../../interfaces/IERC5267.sol";
152
152
153
153
/**
154
- @@ -28,28 +27,18 @@ import {IERC5267} from "../../interfaces/IERC5267.sol";
154
+ @@ -28,30 +27,18 @@ import {IERC5267} from "../../interfaces/IERC5267.sol";
155
155
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
156
156
* separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
157
157
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
@@ -177,14 +177,16 @@ index 77c4c8990..602467f40 100644
177
177
178
178
- ShortString private immutable _name;
179
179
- ShortString private immutable _version;
180
+ - // slither-disable-next-line constable-states
180
181
- string private _nameFallback;
182
+ - // slither-disable-next-line constable-states
181
183
- string private _versionFallback;
182
184
+ string private _name;
183
185
+ string private _version;
184
186
185
187
/**
186
188
* @dev Initializes the domain separator and parameter caches.
187
- @@ -64 ,29 +53,23 @@ abstract contract EIP712 is IERC5267 {
189
+ @@ -66 ,29 +53,23 @@ abstract contract EIP712 is IERC5267 {
188
190
* contract upgrade].
189
191
*/
190
192
constructor(string memory name, string memory version) {
@@ -222,7 +224,7 @@ index 77c4c8990..602467f40 100644
222
224
}
223
225
224
226
/**
225
- @@ -125 ,6 +108,10 @@ abstract contract EIP712 is IERC5267 {
227
+ @@ -127 ,6 +108,10 @@ abstract contract EIP712 is IERC5267 {
226
228
uint256[] memory extensions
227
229
)
228
230
{
@@ -233,7 +235,7 @@ index 77c4c8990..602467f40 100644
233
235
return (
234
236
hex"0f", // 01111
235
237
_EIP712Name(),
236
- @@ -139 ,22 +126,62 @@ abstract contract EIP712 is IERC5267 {
238
+ @@ -141 ,22 +126,62 @@ abstract contract EIP712 is IERC5267 {
237
239
/**
238
240
* @dev The name parameter for the EIP712 domain.
239
241
*
@@ -307,10 +309,10 @@ index 77c4c8990..602467f40 100644
307
309
}
308
310
}
309
311
diff --git a/package.json b/package.json
310
- index c4b358e10..96ab2559c 100644
312
+ index f9e7d9205..c35020d51 100644
311
313
--- a/package.json
312
314
+++ b/package.json
313
- @@ -32 ,7 +32 ,7 @@
315
+ @@ -34 ,7 +34 ,7 @@
314
316
},
315
317
"repository": {
316
318
"type": "git",
0 commit comments