Commit a3173fe5 authored by github-actions[bot]'s avatar github-actions[bot] Committed by Liam Horne

Version Packages

parent a3dc5539
---
"@eth-optimism/contracts": patch
---
Ports OVM_ECDSAContractAccount to use optimistic-solc.
---
"@eth-optimism/batch-submitter": patch
"@eth-optimism/data-transport-layer": patch
---
Adds a release version to batch-submitter and data-transport-layer usage of Sentry
---
"@eth-optimism/data-transport-layer": patch
---
Allow the DTL to provide data from either L1 or L2, configurable via a query param sent by the client.
The config option `default-backend` can be used to specify the backend to be
used if the query param is not specified. This allows it to be backwards
compatible with how the DTL was previously used.
---
"@eth-optimism/contracts": patch
---
Fix bridge contracts upgradeability by changing `Abs_L1TokenGateway.DEFAULT_FINALIZE_DEPOSIT_L2_GAS` from a storage var to an internal constant.
Additionally, make some bridge functions virtual so they could be overriden in child contracts.
---
"@eth-optimism/l2geth": patch
---
Add batch API to rollup client
---
"@eth-optimism/l2geth": patch
"@eth-optimism/contracts": patch
---
Removes mockOVM_ECDSAContractAccount and OVM_ProxySequencerEntrypoint, two unused contracts.
---
"@eth-optimism/contracts": patch
---
Removed Lib_SafeExecutionManagerWrapper since it's no longer being used.
---
"@eth-optimism/contracts": patch
"@eth-optimism/hardhat-ovm": patch
---
Use optimistic-solc to compile the SequencerEntrypoint. Also introduces a cache invalidation mechanism for hardhat-ovm so that we can push new compiler versions.
---
"@eth-optimism/batch-submitter": patch
---
log errors for monotonicity violations
---
"@eth-optimism/contracts": patch
---
Port OVM_DeployerWhitelist to use optimistic-solc.
---
"@eth-optimism/contracts": patch
---
Ports OVM_ProxyEOA to use optimistic-solc instead of the standard solc compiler.
---
"@eth-optimism/l2geth": patch
---
Calculate data fees based on if a byte was zero or non-zero
---
"@eth-optimism/batch-submitter": patch
---
Correctly formatted error object to log exceptions
---
"@eth-optimism/batch-submitter": minor
"@eth-optimism/core-utils": patch
---
- Use raw transaction in batch submitter -- incompatible with L2Geth v0.1.2.1
- Pass through raw transaction in l2context
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
"clean": "rimraf cache artifacts artifacts-ovm cache-ovm" "clean": "rimraf cache artifacts artifacts-ovm cache-ovm"
}, },
"devDependencies": { "devDependencies": {
"@eth-optimism/contracts": "^0.2.5", "@eth-optimism/contracts": "^0.2.6",
"@eth-optimism/core-utils": "^0.3.0", "@eth-optimism/core-utils": "^0.3.1",
"@eth-optimism/hardhat-ovm": "^0.0.2", "@eth-optimism/hardhat-ovm": "^0.0.3",
"@ethersproject/providers": "^5.0.24", "@ethersproject/providers": "^5.0.24",
"@nomiclabs/hardhat-ethers": "^2.0.2", "@nomiclabs/hardhat-ethers": "^2.0.2",
"chai": "^4.3.3", "chai": "^4.3.3",
......
# Changelog # Changelog
## 0.2.4
### Patch Changes
- 7e9ca1e: Add batch API to rollup client
- 6e8fe1b: Removes mockOVM_ECDSAContractAccount and OVM_ProxySequencerEntrypoint, two unused contracts.
- 76c4ceb: Calculate data fees based on if a byte was zero or non-zero
## 0.2.3 ## 0.2.3
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/l2geth", "name": "@eth-optimism/l2geth",
"version": "0.2.3", "version": "0.2.4",
"private": true "private": true
} }
# Changelog # Changelog
## 0.2.0
### Minor Changes
- 5077441: - Use raw transaction in batch submitter -- incompatible with L2Geth v0.1.2.1
- Pass through raw transaction in l2context
### Patch Changes
- a3dc553: Adds a release version to batch-submitter and data-transport-layer usage of Sentry
- b95dc22: log errors for monotonicity violations
- c7bc0ce: Correctly formatted error object to log exceptions
- Updated dependencies [ce5d596]
- Updated dependencies [1a55f64]
- Updated dependencies [6e8fe1b]
- Updated dependencies [8d4aae4]
- Updated dependencies [c75a0fc]
- Updated dependencies [d4ee2d7]
- Updated dependencies [edb4346]
- Updated dependencies [5077441]
- @eth-optimism/contracts@0.2.6
- @eth-optimism/core-utils@0.3.1
## 0.1.12 ## 0.1.12
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/batch-submitter", "name": "@eth-optimism/batch-submitter",
"version": "0.1.12", "version": "0.2.0",
"private": true, "private": true,
"description": "[Optimism] Batch submission for sequencer & aggregators", "description": "[Optimism] Batch submission for sequencer & aggregators",
"main": "dist/index", "main": "dist/index",
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
"url": "https://github.com/ethereum-optimism/optimism-monorepo.git" "url": "https://github.com/ethereum-optimism/optimism-monorepo.git"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/contracts": "^0.2.5", "@eth-optimism/contracts": "^0.2.6",
"@eth-optimism/core-utils": "^0.3.0", "@eth-optimism/core-utils": "^0.3.1",
"@eth-optimism/ynatm": "^0.2.2", "@eth-optimism/ynatm": "^0.2.2",
"@ethersproject/abstract-provider": "^5.0.5", "@ethersproject/abstract-provider": "^5.0.5",
"@ethersproject/providers": "^5.0.14", "@ethersproject/providers": "^5.0.14",
......
# Changelog # Changelog
## 0.2.6
### Patch Changes
- ce5d596: Ports OVM_ECDSAContractAccount to use optimistic-solc.
- 1a55f64: Fix bridge contracts upgradeability by changing `Abs_L1TokenGateway.DEFAULT_FINALIZE_DEPOSIT_L2_GAS` from a storage var to an internal constant.
Additionally, make some bridge functions virtual so they could be overriden in child contracts.
- 6e8fe1b: Removes mockOVM_ECDSAContractAccount and OVM_ProxySequencerEntrypoint, two unused contracts.
- 8d4aae4: Removed Lib_SafeExecutionManagerWrapper since it's no longer being used.
- c75a0fc: Use optimistic-solc to compile the SequencerEntrypoint. Also introduces a cache invalidation mechanism for hardhat-ovm so that we can push new compiler versions.
- d4ee2d7: Port OVM_DeployerWhitelist to use optimistic-solc.
- edb4346: Ports OVM_ProxyEOA to use optimistic-solc instead of the standard solc compiler.
- Updated dependencies [5077441]
- @eth-optimism/core-utils@0.3.1
## 0.2.5 ## 0.2.5
### Patch Changes ### Patch Changes
......
{ {
"name": "@eth-optimism/contracts", "name": "@eth-optimism/contracts",
"version": "0.2.5", "version": "0.2.6",
"main": "dist/index", "main": "dist/index",
"files": [ "files": [
"dist/**/*.js", "dist/**/*.js",
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
"generate-markdown": "node scripts/generate-markdown.js" "generate-markdown": "node scripts/generate-markdown.js"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/core-utils": "^0.3.0", "@eth-optimism/core-utils": "^0.3.1",
"@eth-optimism/solc": "^0.6.12-alpha.1", "@eth-optimism/solc": "^0.6.12-alpha.1",
"@ethersproject/abstract-provider": "^5.0.8", "@ethersproject/abstract-provider": "^5.0.8",
"@ethersproject/contracts": "^5.0.5", "@ethersproject/contracts": "^5.0.5",
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
"glob": "^7.1.6" "glob": "^7.1.6"
}, },
"devDependencies": { "devDependencies": {
"@eth-optimism/hardhat-ovm": "^0.0.2", "@eth-optimism/hardhat-ovm": "^0.0.3",
"@eth-optimism/smock": "^1.0.2", "@eth-optimism/smock": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.1", "@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1", "@nomiclabs/hardhat-waffle": "^2.0.1",
......
# @eth-optimism/core-utils # @eth-optimism/core-utils
## 0.3.1
### Patch Changes
- 5077441: - Use raw transaction in batch submitter -- incompatible with L2Geth v0.1.2.1
- Pass through raw transaction in l2context
## 0.3.0 ## 0.3.0
### Minor Changes ### Minor Changes
......
{ {
"name": "@eth-optimism/core-utils", "name": "@eth-optimism/core-utils",
"version": "0.3.0", "version": "0.3.1",
"main": "dist/index", "main": "dist/index",
"files": [ "files": [
"dist/*" "dist/*"
......
# data transport layer # data transport layer
## 0.2.1
### Patch Changes
- a3dc553: Adds a release version to batch-submitter and data-transport-layer usage of Sentry
- 27f32ca: Allow the DTL to provide data from either L1 or L2, configurable via a query param sent by the client.
The config option `default-backend` can be used to specify the backend to be
used if the query param is not specified. This allows it to be backwards
compatible with how the DTL was previously used.
- Updated dependencies [ce5d596]
- Updated dependencies [1a55f64]
- Updated dependencies [6e8fe1b]
- Updated dependencies [8d4aae4]
- Updated dependencies [c75a0fc]
- Updated dependencies [d4ee2d7]
- Updated dependencies [edb4346]
- Updated dependencies [5077441]
- @eth-optimism/contracts@0.2.6
- @eth-optimism/core-utils@0.3.1
## 0.2.0 ## 0.2.0
### Minor Changes ### Minor Changes
......
{ {
"name": "@eth-optimism/data-transport-layer", "name": "@eth-optimism/data-transport-layer",
"version": "0.2.0", "version": "0.2.1",
"private": true, "private": true,
"main": "dist/index", "main": "dist/index",
"files": [ "files": [
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
"build": "tsc -p tsconfig.build.json" "build": "tsc -p tsconfig.build.json"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/contracts": "^0.2.5", "@eth-optimism/contracts": "^0.2.6",
"@eth-optimism/core-utils": "^0.3.0", "@eth-optimism/core-utils": "^0.3.1",
"@ethersproject/providers": "^5.0.21", "@ethersproject/providers": "^5.0.21",
"@sentry/node": "^6.2.5", "@sentry/node": "^6.2.5",
"@sentry/tracing": "^6.2.5", "@sentry/tracing": "^6.2.5",
......
# @eth-optimism/hardhat-ovm # @eth-optimism/hardhat-ovm
## 0.0.3
### Patch Changes
- c75a0fc: Use optimistic-solc to compile the SequencerEntrypoint. Also introduces a cache invalidation mechanism for hardhat-ovm so that we can push new compiler versions.
## 0.0.2 ## 0.0.2
### Patch Changes ### Patch Changes
- 5362d38: adds build files which were not published before to npm - 5362d38: adds build files which were not published before to npm
{ {
"name": "@eth-optimism/hardhat-ovm", "name": "@eth-optimism/hardhat-ovm",
"version": "0.0.2", "version": "0.0.3",
"main": "dist/index", "main": "dist/index",
"types": "dist/index", "types": "dist/index",
"files": [ "files": [
......
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