Commit b2b783cb authored by github-actions[bot]'s avatar github-actions[bot]

Version Packages

parent 570941d7
---
'@eth-optimism/common-ts': minor
---
Make typescript type more permissive for MetricsV2
---
'@eth-optimism/contracts-bedrock': patch
---
bedrock: ProxyAdmin rename OpenZeppelin proxy to ERC1967
---
'@eth-optimism/drippie-mon': patch
---
Fix release
---
'@eth-optimism/contracts-bedrock': patch
---
OZ Audit fixes with a Low or informational severity:
- Hardcode constant values
- Require that msg.value == \_amount on ETH withdrawals
- use \_from in place of msg.sender when applicable in internal functions
---
'@eth-optimism/common-ts': patch
---
Fix potential metrics DoS vector in recent commit to BSV2
---
'@eth-optimism/contracts-bedrock': patch
---
bedrock: Simplify ProxyAdmin static calls
---
'@eth-optimism/proxyd': patch
---
Use canned response for eth_accounts
---
'@eth-optimism/contracts-bedrock': minor
---
Replaces L2 timestamps with block numbers as the key in mapping(uint => OutputProposal).
---
'@eth-optimism/contracts-periphery': patch
---
Deploy NFT bridge contracts
---
'@eth-optimism/contracts-bedrock': patch
---
Fixes to medium severity OZ findings
- Disallow reentrant withdrawals
- remove donateEth
- Correct ordering of \_from and \_to arguments on refunds of failed deposits
---
'@eth-optimism/contracts-bedrock': patch
---
Have contracts-bedrock properly include contract sources in npm package
# @eth-optimism/common-ts # @eth-optimism/common-ts
## 0.5.0
### Minor Changes
- cb71fcde: Make typescript type more permissive for MetricsV2
### Patch Changes
- 10e41522: Fix potential metrics DoS vector in recent commit to BSV2
## 0.4.0 ## 0.4.0
### Minor Changes ### Minor Changes
......
{ {
"name": "@eth-optimism/common-ts", "name": "@eth-optimism/common-ts",
"version": "0.4.0", "version": "0.5.0",
"description": "[Optimism] Advanced typescript tooling used by various services", "description": "[Optimism] Advanced typescript tooling used by various services",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
......
# @eth-optimism/contracts-bedrock # @eth-optimism/contracts-bedrock
## 0.3.0
### Minor Changes
- 35757456: Replaces L2 timestamps with block numbers as the key in mapping(uint => OutputProposal).
### Patch Changes
- f23bae0b: bedrock: ProxyAdmin rename OpenZeppelin proxy to ERC1967
- fadb1a93: OZ Audit fixes with a Low or informational severity:
- Hardcode constant values
- Require that msg.value == \_amount on ETH withdrawals
- use \_from in place of msg.sender when applicable in internal functions
- f23bae0b: bedrock: Simplify ProxyAdmin static calls
- 650ca6d4: Fixes to medium severity OZ findings
- Disallow reentrant withdrawals
- remove donateEth
- Correct ordering of \_from and \_to arguments on refunds of failed deposits
- 9aa8049c: Have contracts-bedrock properly include contract sources in npm package
## 0.2.0 ## 0.2.0
### Minor Changes ### Minor Changes
......
{ {
"name": "@eth-optimism/contracts-bedrock", "name": "@eth-optimism/contracts-bedrock",
"version": "0.2.0", "version": "0.3.0",
"description": "Contracts for Optimism Specs", "description": "Contracts for Optimism Specs",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
......
# @eth-optimism/contracts-periphery # @eth-optimism/contracts-periphery
## 0.1.4
### Patch Changes
- 9aa8049c: Deploy NFT bridge contracts
## 0.1.3 ## 0.1.3
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/contracts-periphery", "name": "@eth-optimism/contracts-periphery",
"version": "0.1.3", "version": "0.1.4",
"description": "[Optimism] External (out-of-protocol) L1 and L2 smart contracts for Optimism", "description": "[Optimism] External (out-of-protocol) L1 and L2 smart contracts for Optimism",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
"devDependencies": { "devDependencies": {
"@defi-wonderland/smock": "^2.0.7", "@defi-wonderland/smock": "^2.0.7",
"@eth-optimism/contracts": "^0.5.28", "@eth-optimism/contracts": "^0.5.28",
"@eth-optimism/contracts-bedrock": "^0.2.0", "@eth-optimism/contracts-bedrock": "^0.3.0",
"@eth-optimism/core-utils": "^0.8.7", "@eth-optimism/core-utils": "^0.8.7",
"@eth-optimism/hardhat-deploy-config": "^0.2.0", "@eth-optimism/hardhat-deploy-config": "^0.2.0",
"@ethersproject/hardware-wallets": "^5.6.1", "@ethersproject/hardware-wallets": "^5.6.1",
......
# data transport layer # data transport layer
## 0.5.37
### Patch Changes
- Updated dependencies [cb71fcde]
- Updated dependencies [10e41522]
- @eth-optimism/common-ts@0.5.0
## 0.5.36 ## 0.5.36
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/data-transport-layer", "name": "@eth-optimism/data-transport-layer",
"version": "0.5.36", "version": "0.5.37",
"description": "[Optimism] Service for shuttling data from L1 into L2", "description": "[Optimism] Service for shuttling data from L1 into L2",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.4.0", "@eth-optimism/common-ts": "0.5.0",
"@eth-optimism/contracts": "0.5.28", "@eth-optimism/contracts": "0.5.28",
"@eth-optimism/core-utils": "0.8.7", "@eth-optimism/core-utils": "0.8.7",
"@ethersproject/providers": "^5.6.8", "@ethersproject/providers": "^5.6.8",
......
# @eth-optimism/drippie-mon # @eth-optimism/drippie-mon
## 0.3.3
### Patch Changes
- 7142175a: Fix release
- Updated dependencies [cb71fcde]
- Updated dependencies [10e41522]
- Updated dependencies [9aa8049c]
- @eth-optimism/common-ts@0.5.0
- @eth-optimism/contracts-periphery@0.1.4
## 0.3.2 ## 0.3.2
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/drippie-mon", "name": "@eth-optimism/drippie-mon",
"version": "0.3.2", "version": "0.3.3",
"description": "[Optimism] Service for monitoring Drippie instances", "description": "[Optimism] Service for monitoring Drippie instances",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -32,8 +32,8 @@ ...@@ -32,8 +32,8 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.4.0", "@eth-optimism/common-ts": "0.5.0",
"@eth-optimism/contracts-periphery": "0.1.3", "@eth-optimism/contracts-periphery": "0.1.4",
"@eth-optimism/core-utils": "0.8.7", "@eth-optimism/core-utils": "0.8.7",
"@eth-optimism/sdk": "1.1.9", "@eth-optimism/sdk": "1.1.9",
"ethers": "^5.6.8" "ethers": "^5.6.8"
......
# @eth-optimism/fault-detector # @eth-optimism/fault-detector
## 0.2.2
### Patch Changes
- Updated dependencies [cb71fcde]
- Updated dependencies [10e41522]
- @eth-optimism/common-ts@0.5.0
## 0.2.1 ## 0.2.1
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/fault-detector", "name": "@eth-optimism/fault-detector",
"version": "0.2.1", "version": "0.2.2",
"description": "[Optimism] Service for detecting faulty L2 output proposals", "description": "[Optimism] Service for detecting faulty L2 output proposals",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
"ts-node": "^10.7.0" "ts-node": "^10.7.0"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "^0.4.0", "@eth-optimism/common-ts": "^0.5.0",
"@eth-optimism/contracts": "^0.5.28", "@eth-optimism/contracts": "^0.5.28",
"@eth-optimism/core-utils": "^0.8.7", "@eth-optimism/core-utils": "^0.8.7",
"@eth-optimism/sdk": "^1.1.9", "@eth-optimism/sdk": "^1.1.9",
......
# @eth-optimism/message-relayer # @eth-optimism/message-relayer
## 0.5.3
### Patch Changes
- Updated dependencies [cb71fcde]
- Updated dependencies [10e41522]
- @eth-optimism/common-ts@0.5.0
## 0.5.2 ## 0.5.2
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/message-relayer", "name": "@eth-optimism/message-relayer",
"version": "0.5.2", "version": "0.5.3",
"description": "[Optimism] Service for automatically relaying L2 to L1 transactions", "description": "[Optimism] Service for automatically relaying L2 to L1 transactions",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.4.0", "@eth-optimism/common-ts": "0.5.0",
"@eth-optimism/core-utils": "0.8.7", "@eth-optimism/core-utils": "0.8.7",
"@eth-optimism/sdk": "1.1.9", "@eth-optimism/sdk": "1.1.9",
"ethers": "^5.6.8" "ethers": "^5.6.8"
......
# @eth-optimism/replica-healthcheck # @eth-optimism/replica-healthcheck
## 1.1.3
### Patch Changes
- Updated dependencies [cb71fcde]
- Updated dependencies [10e41522]
- @eth-optimism/common-ts@0.5.0
## 1.1.2 ## 1.1.2
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/replica-healthcheck", "name": "@eth-optimism/replica-healthcheck",
"version": "1.1.2", "version": "1.1.3",
"description": "[Optimism] Service for monitoring the health of replica nodes", "description": "[Optimism] Service for monitoring the health of replica nodes",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.4.0", "@eth-optimism/common-ts": "0.5.0",
"@eth-optimism/core-utils": "0.8.7", "@eth-optimism/core-utils": "0.8.7",
"@ethersproject/abstract-provider": "^5.6.1" "@ethersproject/abstract-provider": "^5.6.1"
}, },
......
# @eth-optimism/proxyd # @eth-optimism/proxyd
## 3.8.9
### Patch Changes
- 063c55cf: Use canned response for eth_accounts
## 3.8.8 ## 3.8.8
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/proxyd", "name": "@eth-optimism/proxyd",
"version": "3.8.8", "version": "3.8.9",
"private": true, "private": true,
"dependencies": {} "dependencies": {}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment