Commit 30c92669 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

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

Version Packages
parents 84a8934c 38ad5c29
---
'@eth-optimism/common-ts': minor
---
Minor upgrade to BaseServiceV2 to expose a full customizable server, instead of just metrics.
---
'@eth-optimism/fault-detector': patch
---
Smarter starting height for fault-detector
---
'@eth-optimism/common-ts': minor
'@eth-optimism/drippie-mon': minor
'@eth-optimism/fault-detector': minor
'@eth-optimism/message-relayer': minor
'@eth-optimism/replica-healthcheck': minor
---
BaseServiceV2 exposes service name and version as standard synthetic metric
---
'@eth-optimism/teleportr': patch
---
Better availability endpoint + retries
---
'@eth-optimism/fault-detector': patch
---
Fix order in which a metric was bumped then emitted to fix off by one issue
# @eth-optimism/common-ts # @eth-optimism/common-ts
## 0.3.0
### Minor Changes
- d9e39931: Minor upgrade to BaseServiceV2 to expose a full customizable server, instead of just metrics.
- 84a8934c: BaseServiceV2 exposes service name and version as standard synthetic metric
## 0.2.10 ## 0.2.10
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/common-ts", "name": "@eth-optimism/common-ts",
"version": "0.2.10", "version": "0.3.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",
......
# data transport layer # data transport layer
## 0.5.34
### Patch Changes
- Updated dependencies [d9e39931]
- Updated dependencies [84a8934c]
- @eth-optimism/common-ts@0.3.0
## 0.5.33 ## 0.5.33
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/data-transport-layer", "name": "@eth-optimism/data-transport-layer",
"version": "0.5.33", "version": "0.5.34",
"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.2.10", "@eth-optimism/common-ts": "0.3.0",
"@eth-optimism/contracts": "0.5.27", "@eth-optimism/contracts": "0.5.27",
"@eth-optimism/core-utils": "0.8.6", "@eth-optimism/core-utils": "0.8.6",
"@ethersproject/providers": "^5.6.8", "@ethersproject/providers": "^5.6.8",
......
# @eth-optimism/drippie-mon # @eth-optimism/drippie-mon
## 0.3.0
### Minor Changes
- 84a8934c: BaseServiceV2 exposes service name and version as standard synthetic metric
### Patch Changes
- Updated dependencies [d9e39931]
- Updated dependencies [84a8934c]
- @eth-optimism/common-ts@0.3.0
## 0.2.0 ## 0.2.0
### Minor Changes ### Minor Changes
- 982cb980: Release drippie-mon - 982cb980: Release drippie-mon
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/drippie-mon", "name": "@eth-optimism/drippie-mon",
"version": "0.2.0", "version": "0.3.0",
"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,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.2.10", "@eth-optimism/common-ts": "0.3.0",
"@eth-optimism/contracts-periphery": "0.1.2", "@eth-optimism/contracts-periphery": "0.1.2",
"@eth-optimism/core-utils": "0.8.6", "@eth-optimism/core-utils": "0.8.6",
"@eth-optimism/sdk": "1.1.8", "@eth-optimism/sdk": "1.1.8",
......
# @eth-optimism/fault-detector # @eth-optimism/fault-detector
## 0.2.0
### Minor Changes
- 84a8934c: BaseServiceV2 exposes service name and version as standard synthetic metric
### Patch Changes
- 37dfe4f6: Smarter starting height for fault-detector
- 6fe58eb2: Fix order in which a metric was bumped then emitted to fix off by one issue
- Updated dependencies [d9e39931]
- Updated dependencies [84a8934c]
- @eth-optimism/common-ts@0.3.0
## 0.1.1 ## 0.1.1
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/fault-detector", "name": "@eth-optimism/fault-detector",
"version": "0.1.1", "version": "0.2.0",
"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.2.8", "@eth-optimism/common-ts": "^0.3.0",
"@eth-optimism/contracts": "^0.5.24", "@eth-optimism/contracts": "^0.5.24",
"@eth-optimism/core-utils": "^0.8.5", "@eth-optimism/core-utils": "^0.8.5",
"@eth-optimism/sdk": "^1.1.6", "@eth-optimism/sdk": "^1.1.6",
......
# @eth-optimism/message-relayer # @eth-optimism/message-relayer
## 0.5.0
### Minor Changes
- 84a8934c: BaseServiceV2 exposes service name and version as standard synthetic metric
### Patch Changes
- Updated dependencies [d9e39931]
- Updated dependencies [84a8934c]
- @eth-optimism/common-ts@0.3.0
## 0.4.13 ## 0.4.13
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/message-relayer", "name": "@eth-optimism/message-relayer",
"version": "0.4.13", "version": "0.5.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",
...@@ -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.10", "@eth-optimism/common-ts": "0.3.0",
"@eth-optimism/core-utils": "0.8.6", "@eth-optimism/core-utils": "0.8.6",
"@eth-optimism/sdk": "1.1.8", "@eth-optimism/sdk": "1.1.8",
"ethers": "^5.6.8" "ethers": "^5.6.8"
......
# @eth-optimism/replica-healthcheck # @eth-optimism/replica-healthcheck
## 1.1.0
### Minor Changes
- 84a8934c: BaseServiceV2 exposes service name and version as standard synthetic metric
### Patch Changes
- Updated dependencies [d9e39931]
- Updated dependencies [84a8934c]
- @eth-optimism/common-ts@0.3.0
## 1.0.9 ## 1.0.9
### Patch Changes ### Patch Changes
......
{ {
"private": true, "private": true,
"name": "@eth-optimism/replica-healthcheck", "name": "@eth-optimism/replica-healthcheck",
"version": "1.0.9", "version": "1.1.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",
...@@ -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.2.10", "@eth-optimism/common-ts": "0.3.0",
"@eth-optimism/core-utils": "0.8.6", "@eth-optimism/core-utils": "0.8.6",
"@ethersproject/abstract-provider": "^5.6.1" "@ethersproject/abstract-provider": "^5.6.1"
}, },
......
# @eth-optimism/teleportr # @eth-optimism/teleportr
## 0.0.9
### Patch Changes
- 23dcba53: Better availability endpoint + retries
## 0.0.8 ## 0.0.8
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/teleportr", "name": "@eth-optimism/teleportr",
"version": "0.0.8", "version": "0.0.9",
"private": true, "private": true,
"devDependencies": {} "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