|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -## [0.1.6] |
4 |
| - |
| 3 | +## [0.2.0] |
| 4 | + |
| 5 | +* Removed TSS integration from all the contracts. |
| 6 | +* Upgraded OZ dependency to `0.5.2`. |
| 7 | +* Upgraded Solarity dependency to `3.0.0`. |
| 8 | +* The minimal Solidity compiler version is now `0.8.21`. |
| 9 | +* Removed the legacy `Registration` contract with its verifiers. |
| 10 | +* Added `Registration2` support for Noir-based verifiers. |
5 | 11 | * Added new algorithms:
|
6 | 12 | 1. **Certificate dispatchers**
|
7 | 13 |
|
|
11 | 17 | C_ECDSA_SECP256R1_SHA1_256 = keccak256("C_ECDSA_SECP256R1_SHA1_256");
|
12 | 18 | ```
|
13 | 19 |
|
14 |
| -## [0.1.5] |
| 20 | + 2. **Passport verifiers** |
15 | 21 |
|
| 22 | + ```solidity |
| 23 | + Z_NOIR_PASSPORT_1_256_3_4_600_248_1_1496_3_256 = keccak256("Z_NOIR_PASSPORT_1_256_3_4_600_248_1_1496_3_256"); |
| 24 | + Z_NOIR_PASSPORT_2_256_3_6_248_336_1_2432_3_256 = keccak256("Z_NOIR_PASSPORT_2_256_3_6_248_336_1_2432_3_256"); |
| 25 | + Z_NOIR_PASSPORT_2_256_3_6_336_248_1_2432_3_256 = keccak256("Z_NOIR_PASSPORT_2_256_3_6_336_248_1_2432_3_256"); |
| 26 | + Z_NOIR_PASSPORT_2_256_3_6_336_264_21_2448_6_2008 = keccak256("Z_NOIR_PASSPORT_2_256_3_6_336_264_21_2448_6_2008"); |
| 27 | + Z_NOIR_PASSPORT_10_256_3_3_576_248_1_1184_5_264 = keccak256("Z_NOIR_PASSPORT_10_256_3_3_576_248_1_1184_5_264"); |
| 28 | + Z_NOIR_PASSPORT_20_256_3_3_336_224_NA = keccak256("Z_NOIR_PASSPORT_20_256_3_3_336_224_NA"); |
| 29 | + Z_NOIR_PASSPORT_21_256_3_3_576_232_NA = keccak256("Z_NOIR_PASSPORT_21_256_3_3_576_232_NA"); |
| 30 | + ``` |
| 31 | +
|
| 32 | +## [0.1.5] |
16 | 33 |
|
17 | 34 | * Upgraded `StateKeeper` and `Registration2` to be Ownable + TSS. Ownable changes do not require Merkle Proof checks.
|
18 | 35 | * Added new algorithms:
|
|
224 | 241 | * The `chainName` field is used to add support for contract upgradability and other actions via TSS.
|
225 | 242 | * It was also added due to current conventions in the existing system.
|
226 | 243 | * Cleaned up tests.
|
| 244 | +
|
| 245 | +### Added |
| 246 | +
|
| 247 | +- Add Noir passport verifiers: |
| 248 | + - Z_NOIR_PASSPORT_1_256_3_4_600_248_1_1496_3_256, |
| 249 | + - Z_NOIR_PASSPORT_2_256_3_6_248_336_1_2432_3_256, |
| 250 | + - Z_NOIR_PASSPORT_2_256_3_6_336_248_1_2432_3_256, |
| 251 | + - Z_NOIR_PASSPORT_2_256_3_6_336_264_21_2448_6_2008, |
| 252 | + - Z_NOIR_PASSPORT_10_256_3_3_576_248_1_1184_5_264, |
| 253 | + - Z_NOIR_PASSPORT_20_256_3_3_336_224_NA, |
| 254 | + - Z_NOIR_PASSPORT_21_256_3_3_576_232_NA. |
0 commit comments