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

Version Packages

parent f41a6fda
---
'@eth-optimism/data-transport-layer': patch
---
Add logging when BSS HF1 is active
---
'@eth-optimism/sdk': patch
---
Have SDK properly handle case when no batches are submitted yet
---
'@eth-optimism/l2geth': patch
---
Bump the timeout to download the genesis file on l2geth
---
'@eth-optimism/data-transport-layer': patch
---
Deletes common.ts in data-transport-layer. Uses core-utils.
---
'@eth-optimism/sdk': patch
---
Have SDK wait for transactions in getMessagesByTransaction
---
'@eth-optimism/batch-submitter-service': patch
---
Fixes a bug that causes the txmgr to not wait for the configured numConfirmations
---
'@eth-optimism/core-utils': minor
---
Deletes the Watcher and injectL2Context functions. Use the SDK instead.
---
'@eth-optimism/integration-tests': patch
---
Deletes watcher-utils.ts. Moves it's utilities into env.ts.
---
'@eth-optimism/batch-submitter': patch
'@eth-optimism/replica-healthcheck': patch
---
Use asL2Provider instead of injectL2Context in bss and healthcheck service.
---
'@eth-optimism/message-relayer': minor
'@eth-optimism/integration-tests': patch
---
Removes message relaying utilities from the Message Relayer, to be replaced by the SDK
---
'@eth-optimism/contracts': patch
---
Contracts are additionally verified on sourcify during deploy. This should reduce manual labor during future regeneses.
---
'@eth-optimism/data-transport-layer': patch
---
Handle null response for `eth_getBlockRange` query
---
'@eth-optimism/message-relayer': patch
---
Update message relayer to log sent tx hashes
---
'@eth-optimism/sdk': patch
---
Add approval functions to the SDK
---
'@eth-optimism/data-transport-layer': patch
---
Add logs displaying current sync from l2
# @eth-optimism/batch-submitter-service # @eth-optimism/batch-submitter-service
## 0.1.4
### Patch Changes
- bcbde5f3: Fixes a bug that causes the txmgr to not wait for the configured numConfirmations
## 0.1.3 ## 0.1.3
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/batch-submitter-service", "name": "@eth-optimism/batch-submitter-service",
"version": "0.1.3", "version": "0.1.4",
"private": true, "private": true,
"devDependencies": {} "devDependencies": {}
} }
# @eth-optimism/integration-tests # @eth-optimism/integration-tests
## 0.5.4
### Patch Changes
- dc5f6517: Deletes watcher-utils.ts. Moves it's utilities into env.ts.
- dcdcc757: Removes message relaying utilities from the Message Relayer, to be replaced by the SDK
## 0.5.3 ## 0.5.3
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/integration-tests", "name": "@eth-optimism/integration-tests",
"version": "0.5.3", "version": "0.5.4",
"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.14", "@eth-optimism/contracts": "0.5.15",
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"@eth-optimism/sdk": "0.2.2", "@eth-optimism/sdk": "0.2.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.12
### Patch Changes
- 84e6a158: Bump the timeout to download the genesis file on l2geth
## 0.5.11 ## 0.5.11
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/l2geth", "name": "@eth-optimism/l2geth",
"version": "0.5.11", "version": "0.5.12",
"private": true, "private": true,
"devDependencies": {} "devDependencies": {}
} }
# Changelog # Changelog
## 0.4.20
### Patch Changes
- d3d70291: Use asL2Provider instead of injectL2Context in bss and healthcheck service.
- Updated dependencies [f37c283c]
- Updated dependencies [3f4d3c13]
- Updated dependencies [0b4453f7]
- Updated dependencies [78298782]
- Updated dependencies [0c54e60e]
- @eth-optimism/sdk@0.2.3
- @eth-optimism/core-utils@0.8.0
- @eth-optimism/contracts@0.5.15
## 0.4.19 ## 0.4.19
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/batch-submitter", "name": "@eth-optimism/batch-submitter",
"version": "0.4.19", "version": "0.4.20",
"description": "[Optimism] Service for submitting transactions and transaction results", "description": "[Optimism] Service for submitting transactions and transaction results",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
...@@ -34,9 +34,9 @@ ...@@ -34,9 +34,9 @@
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.2.1", "@eth-optimism/common-ts": "0.2.1",
"@eth-optimism/contracts": "0.5.14", "@eth-optimism/contracts": "0.5.15",
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"@eth-optimism/sdk": "^0.2.1", "@eth-optimism/sdk": "^0.2.3",
"@eth-optimism/ynatm": "^0.2.2", "@eth-optimism/ynatm": "^0.2.2",
"@ethersproject/abstract-provider": "^5.5.1", "@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/providers": "^5.5.3", "@ethersproject/providers": "^5.5.3",
......
# Changelog # Changelog
## 0.5.15
### Patch Changes
- 78298782: Contracts are additionally verified on sourcify during deploy. This should reduce manual labor during future regeneses.
- Updated dependencies [0b4453f7]
- @eth-optimism/core-utils@0.8.0
## 0.5.14 ## 0.5.14
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/contracts", "name": "@eth-optimism/contracts",
"version": "0.5.14", "version": "0.5.15",
"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",
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git" "url": "https://github.com/ethereum-optimism/optimism.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"@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.0
### Minor Changes
- 0b4453f7: Deletes the Watcher and injectL2Context functions. Use the SDK instead.
## 0.7.7 ## 0.7.7
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/core-utils", "name": "@eth-optimism/core-utils",
"version": "0.7.7", "version": "0.8.0",
"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.18
### Patch Changes
- b8ee3e05: Add logging when BSS HF1 is active
- 4878667a: Deletes common.ts in data-transport-layer. Uses core-utils.
- e9602d86: Handle null response for `eth_getBlockRange` query
- e63f3b61: Add logs displaying current sync from l2
- Updated dependencies [0b4453f7]
- Updated dependencies [78298782]
- @eth-optimism/core-utils@0.8.0
- @eth-optimism/contracts@0.5.15
## 0.5.17 ## 0.5.17
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/data-transport-layer", "name": "@eth-optimism/data-transport-layer",
"version": "0.5.17", "version": "0.5.18",
"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",
...@@ -37,8 +37,8 @@ ...@@ -37,8 +37,8 @@
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.2.1", "@eth-optimism/common-ts": "0.2.1",
"@eth-optimism/contracts": "0.5.14", "@eth-optimism/contracts": "0.5.15",
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"@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.3.0
### Minor Changes
- dcdcc757: Removes message relaying utilities from the Message Relayer, to be replaced by the SDK
### Patch Changes
- 189f63be: Update message relayer to log sent tx hashes
- Updated dependencies [f37c283c]
- Updated dependencies [3f4d3c13]
- Updated dependencies [0b4453f7]
- Updated dependencies [0c54e60e]
- @eth-optimism/sdk@0.2.3
- @eth-optimism/core-utils@0.8.0
## 0.2.18 ## 0.2.18
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/message-relayer", "name": "@eth-optimism/message-relayer",
"version": "0.2.18", "version": "0.3.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",
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.2.1", "@eth-optimism/common-ts": "0.2.1",
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"@eth-optimism/sdk": "^0.2.1", "@eth-optimism/sdk": "^0.2.3",
"@sentry/node": "^6.3.1", "@sentry/node": "^6.3.1",
"bcfg": "^0.1.6", "bcfg": "^0.1.6",
"dotenv": "^10.0.0", "dotenv": "^10.0.0",
......
# @eth-optimism/replica-healthcheck # @eth-optimism/replica-healthcheck
## 0.3.8
### Patch Changes
- d3d70291: Use asL2Provider instead of injectL2Context in bss and healthcheck service.
- Updated dependencies [f37c283c]
- Updated dependencies [3f4d3c13]
- Updated dependencies [0b4453f7]
- Updated dependencies [0c54e60e]
- @eth-optimism/sdk@0.2.3
- @eth-optimism/core-utils@0.8.0
## 0.3.7 ## 0.3.7
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/replica-healthcheck", "name": "@eth-optimism/replica-healthcheck",
"version": "0.3.7", "version": "0.3.8",
"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",
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "0.2.1", "@eth-optimism/common-ts": "0.2.1",
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"@eth-optimism/sdk": "^0.2.1", "@eth-optimism/sdk": "^0.2.3",
"dotenv": "^10.0.0", "dotenv": "^10.0.0",
"ethers": "^5.5.4", "ethers": "^5.5.4",
"express": "^4.17.1", "express": "^4.17.1",
......
# @eth-optimism/sdk # @eth-optimism/sdk
## 0.2.3
### Patch Changes
- f37c283c: Have SDK properly handle case when no batches are submitted yet
- 3f4d3c13: Have SDK wait for transactions in getMessagesByTransaction
- 0c54e60e: Add approval functions to the SDK
- Updated dependencies [0b4453f7]
- Updated dependencies [78298782]
- @eth-optimism/core-utils@0.8.0
- @eth-optimism/contracts@0.5.15
## 0.2.2 ## 0.2.2
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/sdk", "name": "@eth-optimism/sdk",
"version": "0.2.2", "version": "0.2.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",
...@@ -63,8 +63,8 @@ ...@@ -63,8 +63,8 @@
"typescript": "^4.3.5" "typescript": "^4.3.5"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/contracts": "0.5.14", "@eth-optimism/contracts": "0.5.15",
"@eth-optimism/core-utils": "0.7.7", "@eth-optimism/core-utils": "0.8.0",
"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