Skip to content

Commit

Permalink
Merge pull request #3476 from smartcontractkit/release/0.9.2
Browse files Browse the repository at this point in the history
Release/0.9.2
  • Loading branch information
tyrion70 authored Oct 15, 2020
2 parents 253f7ab + 6f2fccb commit 1f4517b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
0.9.2
3 changes: 2 additions & 1 deletion core/chainlink-sgx.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ FROM smartcontract/builder:1.0.36
WORKDIR /chainlink

COPY GNUmakefile VERSION ./
COPY tools/bin/ldflags ./tools/bin/
COPY tools/bin/ldflags tools/bin/ldflags
ARG COMMIT_SHA

# Do dep ensure in a cacheable step
ADD go.* ./
Expand Down
2 changes: 2 additions & 0 deletions core/chainlink.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ WORKDIR /chainlink
ENV PATH /go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

COPY GNUmakefile VERSION ./
COPY tools/bin/ldflags tools/bin/ldflags
ARG COMMIT_SHA

# Install yarn dependencies
COPY yarn.lock package.json .yarnrc ./
Expand Down
3 changes: 2 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0] - 2020-10-12
## [0.9.2] - 2020-10-15

### Added

Expand All @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Improve transaction manager architecture to be more compatible with `ETH_SECONDARY_URL` option (i.e. concurrent transaction submission to multiple different eth nodes). This also comes with some minor performance improvements in the tx manager and more correct handling of some extremely rare edge cases.
- As a side-effect, we now no longer handle the case where an external wallet used the chainlink ethereum private key to send a transaction. This use-case was already explicitly unsupported, but we made a best-effort attempt to handle it. We now make no attempt at all to handle it and doing this WILL result in your node not sending the data that it expected to be sent for the nonces that were used by an external wallet.
- Operator UI now shows booleans correctly

### Changed
- ETH_MAX_GAS_PRICE_WEI now 1500Gwei by default
Expand Down
2 changes: 1 addition & 1 deletion operator_ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@chainlink/json-api-client": "0.0.2",
"@chainlink/local-storage": "0.0.2",
"@chainlink/redux": "0.0.2",
"@chainlink/styleguide": "0.0.2",
"@chainlink/styleguide": "0.0.4",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^4.5.1",
"autobind-decorator": "^2.4.0",
Expand Down
4 changes: 2 additions & 2 deletions operator_ui/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ module.exports = {
template: path.resolve(__dirname, 'src/index.html'),
}),
new EnvironmentPlugin({
CHAINLINK_VERSION: null,
CHAINLINK_BASEURL: null,
CHAINLINK_VERSION: process.env.CHAINLINK_VERSION,
CHAINLINK_BASEURL: process.env.CHAINLINK_BASEURL,
}),
],
devtool: isDev ? 'eval-source-map' : false,
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2235,10 +2235,10 @@
redux-devtools-extension "^2.13.8"
redux-logger "^3.0.6"

"@chainlink/[email protected].2":
version "0.0.2"
resolved "https://registry.npmjs.org/@chainlink/styleguide/-/styleguide-0.0.2.tgz#c88a110dc8bc60d093c2cd56b3dc48811d5d2752"
integrity sha512-U9mKO1LSQGblOEWnlSp0shFDkqtxOOK70F6BYxNdi99aeK8AYFwpUbZnoQGleGFH6sBc6JlLz8EF2WIDn4nSDw==
"@chainlink/[email protected].4":
version "0.0.4"
resolved "https://registry.npmjs.org/@chainlink/styleguide/-/styleguide-0.0.4.tgz#1bb0eb6fd0d0e0ad49704903c9485e5e8d7fd0e2"
integrity sha512-5IMtdJVFRnZDgw2h7pwvbRE8pNtu7UxGyx5GhcPhB3xenUMSpeOvHW9diOEw0S5ymEkW4qmwh9YUkpCdyN/2mA==
dependencies:
"@material-ui/core" "^3.9.2"
change-case "^4.1.1"
Expand Down

0 comments on commit 1f4517b

Please sign in to comment.