Commit 9ed1e38b authored by Liam Horne's avatar Liam Horne Committed by GitHub

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

Version Packages
parents e7f6b61e b57d0c3f
---
'@eth-optimism/contracts': patch
---
Add a factory contract we can whitelist for the community phase which will be used by the Gateway to create standard ERC20 tokens on L2
---
'@eth-optimism/batch-submitter': patch
---
Prevent batch submitter from submitting batches if low on ETH
---
'@eth-optimism/message-relayer': patch
---
Adds a new l2 to l1 message relaying utility within the message relayer package
---
'@eth-optimism/integration-tests': patch
---
Make expectApprox more readable by passing optional args as an object with well named keys
---
'@eth-optimism/data-transport-layer': patch
---
Allow the L1 gas price to be fetched from either the sequencer or a L1 provider based on the config `--l1-gas-price-backend` as well as overriding the config by using a query param. Valid values are `l1` or `l2` and it defaults to `l1`
---
'@eth-optimism/core-utils': minor
'@eth-optimism/data-transport-layer': patch
---
removed unused functions from core-utils
---
'@eth-optimism/l2geth': patch
---
Handle errors correctly in the RollupClient and retry in the SyncService when initially attempting to connect to the DTL
---
'@eth-optimism/contracts': patch
---
A small change to the L1 Messenger, which prevents an L2 to L1 call from send calling the CTC.
# @eth-optimism/integration-tests
## 0.1.2
### Patch Changes
- b107a032: Make expectApprox more readable by passing optional args as an object with well named keys
## 0.1.1
### Patch Changes
......
{
"name": "@eth-optimism/integration-tests",
"version": "0.1.1",
"version": "0.1.2",
"description": "[Optimism] Integration Tests",
"private": true,
"author": "Optimism PBC",
......@@ -17,8 +17,8 @@
"clean": "rimraf cache artifacts artifacts-ovm cache-ovm"
},
"devDependencies": {
"@eth-optimism/contracts": "^0.4.1",
"@eth-optimism/core-utils": "^0.4.6",
"@eth-optimism/contracts": "^0.4.2",
"@eth-optimism/core-utils": "^0.5.0",
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@ethersproject/providers": "^5.0.24",
"@nomiclabs/hardhat-ethers": "^2.0.2",
......
# Changelog
## 0.4.2
### Patch Changes
- 7e04137d: Handle errors correctly in the RollupClient and retry in the SyncService when initially attempting to connect to the DTL
## 0.4.1
### Patch Changes
......
{
"name": "@eth-optimism/l2geth",
"version": "0.4.1",
"version": "0.4.2",
"private": true,
"devDependencies": {}
}
# Changelog
## 0.3.7
### Patch Changes
- 8a1e63dd: Prevent batch submitter from submitting batches if low on ETH
- Updated dependencies [0313794b]
- Updated dependencies [049200f4]
- Updated dependencies [21e47e1f]
- @eth-optimism/contracts@0.4.2
- @eth-optimism/core-utils@0.5.0
## 0.3.6
### Patch Changes
......
{
"name": "@eth-optimism/batch-submitter",
"version": "0.3.6",
"version": "0.3.7",
"private": true,
"description": "[Optimism] Batch submission for sequencer & aggregators",
"main": "dist/index",
......@@ -33,8 +33,8 @@
},
"dependencies": {
"@eth-optimism/common-ts": "^0.1.4",
"@eth-optimism/contracts": "^0.4.0",
"@eth-optimism/core-utils": "^0.4.6",
"@eth-optimism/contracts": "^0.4.2",
"@eth-optimism/core-utils": "^0.5.0",
"@eth-optimism/ynatm": "^0.2.2",
"@ethersproject/abstract-provider": "^5.0.5",
"@ethersproject/providers": "^5.0.14",
......@@ -47,7 +47,7 @@
"prom-client": "^13.1.0"
},
"devDependencies": {
"@eth-optimism/smock": "^1.1.6",
"@eth-optimism/smock": "^1.1.7",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/bluebird": "^3.5.34",
......
# Changelog
## 0.4.2
### Patch Changes
- 0313794b: Add a factory contract we can whitelist for the community phase which will be used by the Gateway to create standard ERC20 tokens on L2
- 21e47e1f: A small change to the L1 Messenger, which prevents an L2 to L1 call from send calling the CTC.
- Updated dependencies [049200f4]
- @eth-optimism/core-utils@0.5.0
## 0.4.1
### Patch Changes
......
{
"name": "@eth-optimism/contracts",
"version": "0.4.1",
"version": "0.4.2",
"main": "dist/index",
"files": [
"dist/**/*.js",
......@@ -49,7 +49,7 @@
"pre-commit": "lint-staged"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.4.6",
"@eth-optimism/core-utils": "^0.5.0",
"@ethersproject/abstract-provider": "^5.0.8",
"@ethersproject/abstract-signer": "^5.1.0",
"@ethersproject/contracts": "^5.0.5",
......@@ -58,7 +58,7 @@
"devDependencies": {
"@codechecks/client": "0.1.10-beta",
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@eth-optimism/smock": "^1.1.6",
"@eth-optimism/smock": "^1.1.7",
"@ethersproject/transactions": "^5.0.31",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
......
# @eth-optimism/core-utils
## 0.5.0
### Minor Changes
- 049200f4: removed unused functions from core-utils
## 0.4.7
### Patch Changes
......
{
"name": "@eth-optimism/core-utils",
"version": "0.4.7",
"version": "0.5.0",
"main": "dist/index",
"files": [
"dist/*"
......
# data transport layer
## 0.4.3
### Patch Changes
- 390fd8a6: Allow the L1 gas price to be fetched from either the sequencer or a L1 provider based on the config `--l1-gas-price-backend` as well as overriding the config by using a query param. Valid values are `l1` or `l2` and it defaults to `l1`
- 049200f4: removed unused functions from core-utils
- Updated dependencies [0313794b]
- Updated dependencies [049200f4]
- Updated dependencies [21e47e1f]
- @eth-optimism/contracts@0.4.2
- @eth-optimism/core-utils@0.5.0
## 0.4.2
### Patch Changes
......
{
"name": "@eth-optimism/data-transport-layer",
"version": "0.4.2",
"version": "0.4.3",
"private": true,
"main": "dist/index",
"files": [
......@@ -23,8 +23,8 @@
},
"dependencies": {
"@eth-optimism/common-ts": "^0.1.4",
"@eth-optimism/contracts": "^0.4.0",
"@eth-optimism/core-utils": "^0.4.7",
"@eth-optimism/contracts": "^0.4.2",
"@eth-optimism/core-utils": "^0.5.0",
"@ethersproject/providers": "^5.0.21",
"@ethersproject/transactions": "^5.0.21",
"@sentry/node": "^6.3.1",
......
# @eth-optimism/message-relayer
## 0.1.7
### Patch Changes
- fd86043a: Adds a new l2 to l1 message relaying utility within the message relayer package
- Updated dependencies [0313794b]
- Updated dependencies [049200f4]
- Updated dependencies [21e47e1f]
- @eth-optimism/contracts@0.4.2
- @eth-optimism/core-utils@0.5.0
## 0.1.6
### Patch Changes
......
{
"name": "@eth-optimism/message-relayer",
"version": "0.1.6",
"version": "0.1.7",
"description": "[Optimism] Cross Domain Message Relayer service",
"main": "dist/index",
"types": "dist/index",
......@@ -34,8 +34,8 @@
},
"dependencies": {
"@eth-optimism/common-ts": "^0.1.4",
"@eth-optimism/contracts": "^0.4.0",
"@eth-optimism/core-utils": "^0.4.6",
"@eth-optimism/contracts": "^0.4.2",
"@eth-optimism/core-utils": "^0.5.0",
"@sentry/node": "6.2.5",
"bcfg": "^0.1.6",
"dotenv": "^8.2.0",
......@@ -44,7 +44,7 @@
"rlp": "^2.2.6"
},
"devDependencies": {
"@eth-optimism/smock": "^1.1.6",
"@eth-optimism/smock": "^1.1.7",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.18",
......
# @eth-optimism/smock
## 1.1.7
### Patch Changes
- Updated dependencies [049200f4]
- @eth-optimism/core-utils@0.5.0
## 1.1.6
### Patch Changes
......
......@@ -3,7 +3,7 @@
"files": [
"dist/src/*"
],
"version": "1.1.6",
"version": "1.1.7",
"main": "dist/src/index",
"types": "dist/src/index",
"author": "Optimism PBC",
......@@ -27,7 +27,7 @@
"hardhat": "^2"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.4.6",
"@eth-optimism/core-utils": "^0.5.0",
"bn.js": "^5.2.0"
},
"devDependencies": {
......
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