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

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

Version Packages
parents 3e5b2092 0273d379
---
'@eth-optimism/data-transport-layer': patch
---
Patch for Kovan DTL halting issue
---
'@eth-optimism/l2geth': patch
---
Skip TestWSAttachWelcome
---
'@eth-optimism/common-ts': patch
---
Adds hard stop to BaseServiceV2 when multiple exit signals are received
---
'@eth-optimism/l2geth': patch
---
Skip some geth console tests that flake in CI
---
'@eth-optimism/gas-oracle': patch
---
Fixes a bug that would cause the service to crash on startup if the RPC URLs were not immediately available
---
'@eth-optimism/integration-tests': patch
---
Update chainid
---
'@eth-optimism/data-transport-layer': patch
---
Add new metrics to the data-transport-layer
---
'@eth-optimism/integration-tests': patch
'@eth-optimism/common-ts': patch
'@eth-optimism/contracts': patch
'@eth-optimism/core-utils': patch
'@eth-optimism/data-transport-layer': patch
'@eth-optimism/message-relayer': patch
'@eth-optimism/replica-healthcheck': patch
'@eth-optimism/sdk': patch
---
Update Dockerfile to use Alpine
---
'@eth-optimism/common-ts': patch
---
Have BaseServiceV2 throw when options are undefined
---
'@eth-optimism/common-ts': patch
---
Adds the jsonRpcProvider validator as an input validator
---
'@eth-optimism/l2geth': patch
---
Adds a flag for changing the genesis fetch timeout
---
'@eth-optimism/contracts': patch
'@eth-optimism/data-transport-layer': patch
'@eth-optimism/integration-tests': patch
'@eth-optimism/message-relayer': patch
'@eth-optimism/sdk': patch
---
Bump to hardhat@2.9.1
---
'@eth-optimism/hardhat-node': patch
---
Bump to hardhat@2.9.1
# @eth-optimism/gas-oracle # @eth-optimism/gas-oracle
## 0.1.10
### Patch Changes
- 162ff89c: Fixes a bug that would cause the service to crash on startup if the RPC URLs were not immediately available
## 0.1.9 ## 0.1.9
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/gas-oracle", "name": "@eth-optimism/gas-oracle",
"version": "0.1.9", "version": "0.1.10",
"private": true, "private": true,
"devDependencies": {} "devDependencies": {}
} }
# @eth-optimism/integration-tests # @eth-optimism/integration-tests
## 0.5.9
### Patch Changes
- 5bf390b4: Update chainid
- c1957126: Update Dockerfile to use Alpine
- d9a51154: Bump to hardhat@2.9.1
## 0.5.8 ## 0.5.8
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/integration-tests", "name": "@eth-optimism/integration-tests",
"version": "0.5.8", "version": "0.5.9",
"description": "[Optimism] Integration tests", "description": "[Optimism] Integration tests",
"scripts": { "scripts": {
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
...@@ -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.18", "@eth-optimism/contracts": "0.5.19",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"@eth-optimism/sdk": "1.0.2", "@eth-optimism/sdk": "1.0.3",
"@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",
......
# Changelog # Changelog
## 0.5.16
### Patch Changes
- a01a2eb1: Skip TestWSAttachWelcome
- 23ad6068: Skip some geth console tests that flake in CI
- 6926b293: Adds a flag for changing the genesis fetch timeout
## 0.5.15 ## 0.5.15
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/l2geth", "name": "@eth-optimism/l2geth",
"version": "0.5.15", "version": "0.5.16",
"private": true, "private": true,
"devDependencies": {} "devDependencies": {}
} }
# @eth-optimism/hardhat-node # @eth-optimism/hardhat-node
## 0.1.4
### Patch Changes
- 847a6338: Bump to hardhat@2.9.1
## 0.1.3 ## 0.1.3
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/hardhat-node", "name": "@eth-optimism/hardhat-node",
"version": "0.1.3", "version": "0.1.4",
"scripts": { "scripts": {
"start": "hardhat node --network hardhat" "start": "hardhat node --network hardhat"
}, },
......
# @eth-optimism/common-ts # @eth-optimism/common-ts
## 0.2.5
### Patch Changes
- e36b085c: Adds hard stop to BaseServiceV2 when multiple exit signals are received
- c1957126: Update Dockerfile to use Alpine
- 51673b90: Have BaseServiceV2 throw when options are undefined
- 7a179003: Adds the jsonRpcProvider validator as an input validator
- Updated dependencies [c1957126]
- @eth-optimism/core-utils@0.8.2
## 0.2.4 ## 0.2.4
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/common-ts", "name": "@eth-optimism/common-ts",
"version": "0.2.4", "version": "0.2.5",
"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",
...@@ -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/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"@sentry/node": "^6.3.1", "@sentry/node": "^6.3.1",
"bcfg": "^0.1.7", "bcfg": "^0.1.7",
"commander": "^9.0.0", "commander": "^9.0.0",
......
# Changelog # Changelog
## 0.5.19
### Patch Changes
- c1957126: Update Dockerfile to use Alpine
- d9a51154: Bump to hardhat@2.9.1
- Updated dependencies [c1957126]
- @eth-optimism/core-utils@0.8.2
## 0.5.18 ## 0.5.18
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/contracts", "name": "@eth-optimism/contracts",
"version": "0.5.18", "version": "0.5.19",
"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",
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"@ethersproject/abstract-provider": "^5.5.1", "@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/abstract-signer": "^5.5.0", "@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/hardware-wallets": "^5.5.0" "@ethersproject/hardware-wallets": "^5.5.0"
......
# @eth-optimism/core-utils # @eth-optimism/core-utils
## 0.8.2
### Patch Changes
- c1957126: Update Dockerfile to use Alpine
## 0.8.1 ## 0.8.1
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/core-utils", "name": "@eth-optimism/core-utils",
"version": "0.8.1", "version": "0.8.2",
"description": "[Optimism] Core typescript utilities", "description": "[Optimism] Core typescript utilities",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
......
# data transport layer # data transport layer
## 0.5.24
### Patch Changes
- 3e5b2092: Patch for Kovan DTL halting issue
- 05894239: Add new metrics to the data-transport-layer
- c1957126: Update Dockerfile to use Alpine
- d9a51154: Bump to hardhat@2.9.1
- Updated dependencies [e36b085c]
- Updated dependencies [c1957126]
- Updated dependencies [51673b90]
- Updated dependencies [7a179003]
- Updated dependencies [d9a51154]
- @eth-optimism/common-ts@0.2.5
- @eth-optimism/contracts@0.5.19
- @eth-optimism/core-utils@0.8.2
## 0.5.23 ## 0.5.23
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/data-transport-layer", "name": "@eth-optimism/data-transport-layer",
"version": "0.5.23", "version": "0.5.24",
"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,9 +36,9 @@ ...@@ -36,9 +36,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.4", "@eth-optimism/common-ts": "0.2.5",
"@eth-optimism/contracts": "0.5.18", "@eth-optimism/contracts": "0.5.19",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"@ethersproject/providers": "^5.5.3", "@ethersproject/providers": "^5.5.3",
"@ethersproject/transactions": "^5.5.0", "@ethersproject/transactions": "^5.5.0",
"@sentry/node": "^6.3.1", "@sentry/node": "^6.3.1",
......
# @eth-optimism/message-relayer # @eth-optimism/message-relayer
## 0.4.3
### Patch Changes
- c1957126: Update Dockerfile to use Alpine
- d9a51154: Bump to hardhat@2.9.1
- Updated dependencies [e36b085c]
- Updated dependencies [c1957126]
- Updated dependencies [51673b90]
- Updated dependencies [7a179003]
- Updated dependencies [d9a51154]
- @eth-optimism/common-ts@0.2.5
- @eth-optimism/core-utils@0.8.2
- @eth-optimism/sdk@1.0.3
## 0.4.2 ## 0.4.2
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/message-relayer", "name": "@eth-optimism/message-relayer",
"version": "0.4.2", "version": "0.4.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,9 +31,9 @@ ...@@ -31,9 +31,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.4", "@eth-optimism/common-ts": "0.2.5",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"@eth-optimism/sdk": "1.0.2", "@eth-optimism/sdk": "1.0.3",
"ethers": "^5.5.4" "ethers": "^5.5.4"
}, },
"devDependencies": { "devDependencies": {
......
# @eth-optimism/replica-healthcheck # @eth-optimism/replica-healthcheck
## 1.0.3
### Patch Changes
- c1957126: Update Dockerfile to use Alpine
- Updated dependencies [e36b085c]
- Updated dependencies [c1957126]
- Updated dependencies [51673b90]
- Updated dependencies [7a179003]
- @eth-optimism/common-ts@0.2.5
- @eth-optimism/core-utils@0.8.2
## 1.0.2 ## 1.0.2
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/replica-healthcheck", "name": "@eth-optimism/replica-healthcheck",
"version": "1.0.2", "version": "1.0.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,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.2.4", "@eth-optimism/common-ts": "0.2.5",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"@ethersproject/abstract-provider": "^5.5.1" "@ethersproject/abstract-provider": "^5.5.1"
}, },
"devDependencies": { "devDependencies": {
......
# @eth-optimism/sdk # @eth-optimism/sdk
## 1.0.3
### Patch Changes
- c1957126: Update Dockerfile to use Alpine
- d9a51154: Bump to hardhat@2.9.1
- Updated dependencies [c1957126]
- Updated dependencies [d9a51154]
- @eth-optimism/contracts@0.5.19
- @eth-optimism/core-utils@0.8.2
## 1.0.2 ## 1.0.2
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/sdk", "name": "@eth-optimism/sdk",
"version": "1.0.2", "version": "1.0.3",
"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,8 +65,8 @@ ...@@ -65,8 +65,8 @@
"typescript": "^4.3.5" "typescript": "^4.3.5"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/contracts": "0.5.18", "@eth-optimism/contracts": "0.5.19",
"@eth-optimism/core-utils": "0.8.1", "@eth-optimism/core-utils": "0.8.2",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"merkletreejs": "^0.2.27", "merkletreejs": "^0.2.27",
"rlp": "^2.2.7" "rlp": "^2.2.7"
......
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