Commit e71307f9 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

Merge pull request #2308 from ethereum-optimism/changeset-release/master

Version Packages
parents 317914c0 f385f9f2
---
'@eth-optimism/message-relayer': minor
---
Rewrites the message-relayer to use the BaseServiceV2.
---
'@eth-optimism/batch-submitter-service': patch
---
Add 20% buffer to gas estimation on tx-batch submission to prevent OOG reverts
---
'@eth-optimism/replica-healthcheck': major
---
Rewrite replica-healthcheck with BaseServiceV2
---
'@eth-optimism/batch-submitter-service': patch
---
Adds MIN_L1_TX_SIZE configuration
---
'@eth-optimism/proxyd': patch
---
Don't hit Redis when the out of service interval is zero
---
'@eth-optimism/common-ts': patch
---
Have BaseServiceV2 gracefully catch exit signals
---
'@eth-optimism/sdk': patch
---
Update package json to include correct repo link
---
'@eth-optimism/contracts': patch
---
Minor README update
---
'@eth-optimism/common-ts': patch
---
Introduces the new BaseServiceV2 class.
---
'@eth-optimism/sdk': patch
---
Tighten type restriction on ProviderLike
Please see our security policy document [here](https://github.com/ethereum-optimism/.github/blob/master/SECURITY.md).
# @eth-optimism/batch-submitter-service # @eth-optimism/batch-submitter-service
## 0.1.7
### Patch Changes
- aca0684e: Add 20% buffer to gas estimation on tx-batch submission to prevent OOG reverts
- 75040ca5: Adds MIN_L1_TX_SIZE configuration
## 0.1.6 ## 0.1.6
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/batch-submitter-service", "name": "@eth-optimism/batch-submitter-service",
"version": "0.1.6", "version": "0.1.7",
"private": true, "private": true,
"devDependencies": {} "devDependencies": {}
} }
# @eth-optimism/proxyd # @eth-optimism/proxyd
## 3.8.2
### Patch Changes
- ae18cea1: Don't hit Redis when the out of service interval is zero
## 3.8.1 ## 3.8.1
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/proxyd", "name": "@eth-optimism/proxyd",
"version": "3.8.1", "version": "3.8.2",
"private": true, "private": true,
"dependencies": {} "dependencies": {}
} }
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"devDependencies": { "devDependencies": {
"@eth-optimism/contracts": "0.5.16", "@eth-optimism/contracts": "0.5.17",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.1",
"@eth-optimism/sdk": "1.0.0", "@eth-optimism/sdk": "1.0.1",
"@ethersproject/abstract-provider": "^5.5.1", "@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/providers": "^5.5.3", "@ethersproject/providers": "^5.5.3",
"@ethersproject/transactions": "^5.5.0", "@ethersproject/transactions": "^5.5.0",
......
# @eth-optimism/common-ts # @eth-optimism/common-ts
## 0.2.2
### Patch Changes
- b3f9bdef: Have BaseServiceV2 gracefully catch exit signals
- e53b5783: Introduces the new BaseServiceV2 class.
## 0.2.1 ## 0.2.1
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/common-ts", "name": "@eth-optimism/common-ts",
"version": "0.2.1", "version": "0.2.2",
"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",
......
# Changelog # Changelog
## 0.5.17
### Patch Changes
- 175ae0bf: Minor README update
## 0.5.16 ## 0.5.16
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/contracts", "name": "@eth-optimism/contracts",
"version": "0.5.16", "version": "0.5.17",
"description": "[Optimism] L1 and L2 smart contracts for Optimism", "description": "[Optimism] L1 and L2 smart contracts for Optimism",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
......
# data transport layer # data transport layer
## 0.5.21
### Patch Changes
- Updated dependencies [b3f9bdef]
- Updated dependencies [175ae0bf]
- Updated dependencies [e53b5783]
- @eth-optimism/common-ts@0.2.2
- @eth-optimism/contracts@0.5.17
## 0.5.20 ## 0.5.20
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/data-transport-layer", "name": "@eth-optimism/data-transport-layer",
"version": "0.5.20", "version": "0.5.21",
"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,8 +36,8 @@ ...@@ -36,8 +36,8 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.2.1", "@eth-optimism/common-ts": "0.2.2",
"@eth-optimism/contracts": "0.5.16", "@eth-optimism/contracts": "0.5.17",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.1",
"@ethersproject/providers": "^5.5.3", "@ethersproject/providers": "^5.5.3",
"@ethersproject/transactions": "^5.5.0", "@ethersproject/transactions": "^5.5.0",
......
# @eth-optimism/message-relayer # @eth-optimism/message-relayer
## 0.4.0
### Minor Changes
- 860fef46: Rewrites the message-relayer to use the BaseServiceV2.
### Patch Changes
- Updated dependencies [b3f9bdef]
- Updated dependencies [7ae1c67f]
- Updated dependencies [e53b5783]
- Updated dependencies [47e5d118]
- @eth-optimism/common-ts@0.2.2
- @eth-optimism/sdk@1.0.1
## 0.3.2 ## 0.3.2
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/message-relayer", "name": "@eth-optimism/message-relayer",
"version": "0.3.2", "version": "0.4.0",
"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",
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.2.1", "@eth-optimism/common-ts": "0.2.2",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.1",
"@eth-optimism/sdk": "1.0.0", "@eth-optimism/sdk": "1.0.1",
"ethers": "^5.5.4" "ethers": "^5.5.4"
}, },
"devDependencies": { "devDependencies": {
......
# @eth-optimism/replica-healthcheck # @eth-optimism/replica-healthcheck
## 1.0.0
### Major Changes
- e264f03f: Rewrite replica-healthcheck with BaseServiceV2
### Patch Changes
- Updated dependencies [b3f9bdef]
- Updated dependencies [e53b5783]
- @eth-optimism/common-ts@0.2.2
## 0.3.11 ## 0.3.11
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/replica-healthcheck", "name": "@eth-optimism/replica-healthcheck",
"version": "0.3.11", "version": "1.0.0",
"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",
...@@ -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.2.1", "@eth-optimism/common-ts": "0.2.2",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.1",
"@ethersproject/abstract-provider": "^5.5.1" "@ethersproject/abstract-provider": "^5.5.1"
}, },
......
# @eth-optimism/sdk # @eth-optimism/sdk
## 1.0.1
### Patch Changes
- 7ae1c67f: Update package json to include correct repo link
- 47e5d118: Tighten type restriction on ProviderLike
- Updated dependencies [175ae0bf]
- @eth-optimism/contracts@0.5.17
## 1.0.0 ## 1.0.0
### Major Changes ### Major Changes
......
{ {
"name": "@eth-optimism/sdk", "name": "@eth-optimism/sdk",
"version": "1.0.0", "version": "1.0.1",
"description": "[Optimism] Tools for working with Optimism", "description": "[Optimism] Tools for working with Optimism",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
"typescript": "^4.3.5" "typescript": "^4.3.5"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/contracts": "0.5.16", "@eth-optimism/contracts": "0.5.17",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"merkletreejs": "^0.2.27", "merkletreejs": "^0.2.27",
......
This diff is collapsed.
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