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

Version Packages

parent a5d669ec
---
'@eth-optimism/core-utils': patch
---
Add encoding and hashing functions for bedrock
---
'@eth-optimism/contracts-bedrock': patch
---
Standardizes revert strings globally
---
'@eth-optimism/contracts-bedrock': patch
---
Fixes a bug in the L2 Bedrock genesis script
---
'@eth-optimism/contracts-bedrock': patch
---
Cleans linting errors in MerkleTrie.sol
---
'@eth-optimism/contracts-bedrock': patch
---
Adds a new event SentMessageExtension1 to the CrossDomainMessenger contract. Includes additional data that's being attached to messages sent after the Bedrock upgrade.
---
'@eth-optimism/contracts-bedrock': patch
---
Properly generates and exports ABI and artifact files that can be imported by client libraries
---
'@eth-optimism/contracts-periphery': patch
---
Update compiler version to 0.8.15
---
'@eth-optimism/contracts-bedrock': patch
---
Moves various legacy contracts into the legacy folder
---
'@eth-optimism/contracts-bedrock': patch
---
The output oracle's getL2Output function now reverts when no output is returned
---
'@eth-optimism/sdk': patch
---
Updates the CCM to throw a better error for missing or invalid chain IDs
---
'@eth-optimism/contracts-bedrock': patch
---
Bump to use solidity 0.8.15
---
'@eth-optimism/contracts-bedrock': patch
'@eth-optimism/core-utils': patch
---
Remove subversion byte from deposit tx
---
'@eth-optimism/ci-builder': patch
---
Trigger release to update foundry version
---
'@eth-optimism/core-utils': patch
---
Update deposit transaction serialization
---
'@eth-optimism/contracts': patch
---
Deploy goerli SCC to fix sccFaultProofWindowSeconds
---
'@eth-optimism/contracts-bedrock': patch
---
Naming improvements for functions and variables in the L2OutputOracle
---
'@eth-optimism/sdk': patch
---
Update the Goerli SCC's address
---
'@eth-optimism/contracts-periphery': patch
---
Add compiler 0.8.15
---
'@eth-optimism/contracts-bedrock': patch
'@eth-optimism/contracts-periphery': patch
---
Update forge-std
---
'@eth-optimism/contracts-bedrock': patch
---
Shortens library names
---
'@eth-optimism/contracts-bedrock': patch
---
Introduces Types.sol
---
'@eth-optimism/contracts-bedrock': patch
---
Semver contract updated to include a getter for the full version string
......@@ -29,10 +29,10 @@
},
"devDependencies": {
"@babel/eslint-parser": "^7.5.4",
"@eth-optimism/contracts": "^0.5.30",
"@eth-optimism/contracts-periphery": "^0.2.0",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/sdk": "1.3.0",
"@eth-optimism/contracts": "^0.5.31",
"@eth-optimism/contracts-periphery": "^0.2.1",
"@eth-optimism/core-utils": "0.9.2",
"@eth-optimism/sdk": "1.3.1",
"@ethersproject/abstract-provider": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/transactions": "^5.6.2",
......
# @eth-optimism/ci-builder
## 0.2.1
### Patch Changes
- 9bb6a152: Trigger release to update foundry version
## 0.2.0
### Minor Changes
......
{
"name": "@eth-optimism/ci-builder",
"version": "0.2.0",
"version": "0.2.1",
"scripts": {},
"license": "MIT",
"dependencies": {}
......
# @eth-optimism/common-ts
## 0.6.2
### Patch Changes
- Updated dependencies [0bf3b9b4]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- @eth-optimism/core-utils@0.9.2
## 0.6.1
### Patch Changes
......
{
"name": "@eth-optimism/common-ts",
"version": "0.6.1",
"version": "0.6.2",
"description": "[Optimism] Advanced typescript tooling used by various services",
"main": "dist/index",
"types": "dist/index",
......@@ -32,7 +32,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"dependencies": {
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/core-utils": "0.9.2",
"@sentry/node": "^6.3.1",
"bcfg": "^0.1.7",
"body-parser": "^1.20.0",
......
# @eth-optimism/contracts-bedrock
## 0.5.2
### Patch Changes
- 1a22e822: Standardizes revert strings globally
- 5e113137: Fixes a bug in the L2 Bedrock genesis script
- 177a9ea8: Cleans linting errors in MerkleTrie.sol
- 7d68f82f: Adds a new event SentMessageExtension1 to the CrossDomainMessenger contract. Includes additional data that's being attached to messages sent after the Bedrock upgrade.
- 90630336: Properly generates and exports ABI and artifact files that can be imported by client libraries
- 8bd7abde: Moves various legacy contracts into the legacy folder
- 7e6eb9b2: The output oracle's getL2Output function now reverts when no output is returned
- f243dacf: Bump to use solidity 0.8.15
- 8d26459b: Remove subversion byte from deposit tx
- fa9823f3: Naming improvements for functions and variables in the L2OutputOracle
- 0bf3b9b4: Update forge-std
- e764cbb7: Shortens library names
- 3a0271f8: Introduces Types.sol
- 5de373ea: Semver contract updated to include a getter for the full version string
- Updated dependencies [0bf3b9b4]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- @eth-optimism/core-utils@0.9.2
## 0.5.1
### Patch Changes
......
{
"name": "@eth-optimism/contracts-bedrock",
"version": "0.5.1",
"version": "0.5.2",
"description": "Contracts for Optimism Specs",
"main": "dist/index",
"types": "dist/index",
......@@ -35,7 +35,7 @@
"typechain": "typechain --target ethers-v5 --out-dir dist/types --glob 'artifacts/!(build-info)/**/+([a-zA-Z0-9_]).json'"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.9.1",
"@eth-optimism/core-utils": "^0.9.2",
"@ethereumjs/trie": "^5.0.0-beta.1",
"@ethereumjs/util": "^8.0.0-beta.1",
"@openzeppelin/contracts": "^4.5.0",
......
# @eth-optimism/contracts-periphery
## 0.2.1
### Patch Changes
- 93d3bd41: Update compiler version to 0.8.15
- bcfd1edc: Add compiler 0.8.15
- 0bf3b9b4: Update forge-std
## 0.2.0
### Minor Changes
......
{
"name": "@eth-optimism/contracts-periphery",
"version": "0.2.0",
"version": "0.2.1",
"description": "[Optimism] External (out-of-protocol) L1 and L2 smart contracts for Optimism",
"main": "dist/index",
"types": "dist/index",
......@@ -54,9 +54,9 @@
},
"devDependencies": {
"@defi-wonderland/smock": "^2.0.7",
"@eth-optimism/contracts": "^0.5.30",
"@eth-optimism/contracts-bedrock": "^0.5.0",
"@eth-optimism/core-utils": "^0.9.1",
"@eth-optimism/contracts": "^0.5.31",
"@eth-optimism/contracts-bedrock": "^0.5.2",
"@eth-optimism/core-utils": "^0.9.2",
"@eth-optimism/hardhat-deploy-config": "^0.2.1",
"@ethersproject/hardware-wallets": "^5.6.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
......
# Changelog
## 0.5.31
### Patch Changes
- 1de4f48e: Deploy goerli SCC to fix sccFaultProofWindowSeconds
- Updated dependencies [0bf3b9b4]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- @eth-optimism/core-utils@0.9.2
## 0.5.30
### Patch Changes
......
{
"name": "@eth-optimism/contracts",
"version": "0.5.30",
"version": "0.5.31",
"description": "[Optimism] L1 and L2 smart contracts for Optimism",
"main": "dist/index",
"types": "dist/index",
......@@ -57,7 +57,7 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"dependencies": {
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/core-utils": "0.9.2",
"@ethersproject/abstract-provider": "^5.6.1",
"@ethersproject/abstract-signer": "^5.6.2"
},
......
# @eth-optimism/core-utils
## 0.9.2
### Patch Changes
- 0bf3b9b4: Add encoding and hashing functions for bedrock
- 8d26459b: Remove subversion byte from deposit tx
- 4477fe9f: Update deposit transaction serialization
## 0.9.1
### Patch Changes
......
{
"name": "@eth-optimism/core-utils",
"version": "0.9.1",
"version": "0.9.2",
"description": "[Optimism] Core typescript utilities",
"main": "dist/index",
"types": "dist/index",
......
# data transport layer
## 0.5.40
### Patch Changes
- Updated dependencies [0bf3b9b4]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- Updated dependencies [1de4f48e]
- @eth-optimism/core-utils@0.9.2
- @eth-optimism/contracts@0.5.31
- @eth-optimism/common-ts@0.6.2
## 0.5.39
### Patch Changes
......
{
"private": true,
"name": "@eth-optimism/data-transport-layer",
"version": "0.5.39",
"version": "0.5.40",
"description": "[Optimism] Service for shuttling data from L1 into L2",
"main": "dist/index",
"types": "dist/index",
......@@ -36,9 +36,9 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"dependencies": {
"@eth-optimism/common-ts": "0.6.1",
"@eth-optimism/contracts": "0.5.30",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/common-ts": "0.6.2",
"@eth-optimism/contracts": "0.5.31",
"@eth-optimism/core-utils": "0.9.2",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/transactions": "^5.6.2",
"@sentry/node": "^6.3.1",
......
# @eth-optimism/drippie-mon
## 0.3.8
### Patch Changes
- Updated dependencies [0bf3b9b4]
- Updated dependencies [93d3bd41]
- Updated dependencies [680714c1]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- Updated dependencies [29830750]
- Updated dependencies [bcfd1edc]
- Updated dependencies [0bf3b9b4]
- @eth-optimism/core-utils@0.9.2
- @eth-optimism/contracts-periphery@0.2.1
- @eth-optimism/sdk@1.3.1
- @eth-optimism/common-ts@0.6.2
## 0.3.7
### Patch Changes
......
{
"private": true,
"name": "@eth-optimism/drippie-mon",
"version": "0.3.7",
"version": "0.3.8",
"description": "[Optimism] Service for monitoring Drippie instances",
"main": "dist/index",
"types": "dist/index",
......@@ -32,10 +32,10 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"dependencies": {
"@eth-optimism/common-ts": "0.6.1",
"@eth-optimism/contracts-periphery": "0.2.0",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/sdk": "1.3.0",
"@eth-optimism/common-ts": "0.6.2",
"@eth-optimism/contracts-periphery": "0.2.1",
"@eth-optimism/core-utils": "0.9.2",
"@eth-optimism/sdk": "1.3.1",
"ethers": "^5.6.8"
},
"devDependencies": {
......
......@@ -27,9 +27,9 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"devDependencies": {
"@eth-optimism/contracts": "0.5.30",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/sdk": "1.3.0",
"@eth-optimism/contracts": "0.5.31",
"@eth-optimism/core-utils": "0.9.2",
"@eth-optimism/sdk": "1.3.1",
"@ethersproject/abstract-provider": "^5.6.1",
"chai-as-promised": "^7.1.1",
"chai": "^4.3.4",
......
# @eth-optimism/message-relayer
## 0.5.7
### Patch Changes
- Updated dependencies [0bf3b9b4]
- Updated dependencies [680714c1]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- Updated dependencies [29830750]
- @eth-optimism/core-utils@0.9.2
- @eth-optimism/sdk@1.3.1
- @eth-optimism/common-ts@0.6.2
## 0.5.6
### Patch Changes
......
{
"private": true,
"name": "@eth-optimism/message-relayer",
"version": "0.5.6",
"version": "0.5.7",
"description": "[Optimism] Service for automatically relaying L2 to L1 transactions",
"main": "dist/index",
"types": "dist/index",
......@@ -31,9 +31,9 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"dependencies": {
"@eth-optimism/common-ts": "0.6.1",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/sdk": "1.3.0",
"@eth-optimism/common-ts": "0.6.2",
"@eth-optimism/core-utils": "0.9.2",
"@eth-optimism/sdk": "1.3.1",
"ethers": "^5.6.8"
},
"devDependencies": {
......
# @eth-optimism/replica-healthcheck
## 1.1.6
### Patch Changes
- Updated dependencies [0bf3b9b4]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- @eth-optimism/core-utils@0.9.2
- @eth-optimism/common-ts@0.6.2
## 1.1.5
### Patch Changes
......
{
"private": true,
"name": "@eth-optimism/replica-healthcheck",
"version": "1.1.5",
"version": "1.1.6",
"description": "[Optimism] Service for monitoring the health of replica nodes",
"main": "dist/index",
"types": "dist/index",
......@@ -32,8 +32,8 @@
"url": "https://github.com/ethereum-optimism/optimism.git"
},
"dependencies": {
"@eth-optimism/common-ts": "0.6.1",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/common-ts": "0.6.2",
"@eth-optimism/core-utils": "0.9.2",
"@ethersproject/abstract-provider": "^5.6.1"
},
"devDependencies": {
......
# @eth-optimism/sdk
## 1.3.1
### Patch Changes
- 680714c1: Updates the CCM to throw a better error for missing or invalid chain IDs
- 29830750: Update the Goerli SCC's address
- Updated dependencies [0bf3b9b4]
- Updated dependencies [8d26459b]
- Updated dependencies [4477fe9f]
- Updated dependencies [1de4f48e]
- @eth-optimism/core-utils@0.9.2
- @eth-optimism/contracts@0.5.31
## 1.3.0
### Minor Changes
......
{
"name": "@eth-optimism/sdk",
"version": "1.3.0",
"version": "1.3.1",
"description": "[Optimism] Tools for working with Optimism",
"main": "dist/index",
"types": "dist/index",
......@@ -46,8 +46,8 @@
"mocha": "^10.0.0"
},
"dependencies": {
"@eth-optimism/contracts": "0.5.30",
"@eth-optimism/core-utils": "0.9.1",
"@eth-optimism/contracts": "0.5.31",
"@eth-optimism/core-utils": "0.9.2",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.27",
"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