Skip to content

Commit

Permalink
feat: merge latest v0.4 to master
Browse files Browse the repository at this point in the history
feat: merge latest v0.4 to master
  • Loading branch information
unnawut authored May 13, 2020
2 parents 6e178d2 + 31796a7 commit a3caa1b
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,11 @@ jobs:
command: |
if [ -n "$CIRCLE_TAG" ]; then
_tagged_version="${CIRCLE_TAG#*v}"
_tagged_version_ignoring_pre="${_tagged_version%%-pre.*}"
_filed_version="$(head -n 1 ./VERSION | sed 's/^[ \t]*//;s/[ \t]*$//')"
if [ "$_tagged_version" != "$_filed_version" ]; then
echo "The git tag \"${CIRCLE_TAG}\" expects the VERSION to be \"${_tagged_version}\". Got \"${_filed_version}\"."
if [ "$_tagged_version_ignoring_pre" != "$_filed_version" ]; then
echo "The git tag \"${CIRCLE_TAG}\" expects the VERSION to be \"${_tagged_version_ignoring_pre}\". Got \"${_filed_version}\"."
exit 1
fi
else
Expand Down
26 changes: 22 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,33 @@
# Changelog

## Unreleased
## v0.4.7 (Unreleased)

#### APIs
- None
- [Fixed] Proper error message when retrieving In-Flight Exit data for a spent deposit (#1397)

#### Core
- None
- [Added] Derive contract-related data from the contracts and add checks to prevent contract addresses changing (#1404)
- [Added] Build adapter to pull fees from the fee feed service (#1373)
- [Added] Observe the authority address balance on block submission (#1449)
- [Changed] Upgrade elixir to v1.10.2 (#1440)
- [Changed] Update default stall threshold to 300s (#1456)
- [Changed] Standardize OMG.Bus event and topic names (#1441)
- [Fixed] Add retries to gas cost retrieval (#1434)
- [Fixed] Broken logging in contract event consumer (#1460)
- [Fixed] Keep authority_addr naming for phash2 for backwards compatibility (#1457)

#### Miscellaneous
- None
- [Added] Missing tests for release task of setting fee claimer address (#1451)
- [Added] Load test merge_utxos() (#1446)
- [Added] More load test scenarios (#1403, #1429, #1433)
- [Added] Prevent adding more single pipes (#1462)
- [Changed] Update Spandex (tracing library) to 2.4.3 (#1432)
- [Changed] Modify the load test faucet to only deposit when necessary (#1445)
- [Changed] Move nightly build steps into PR's non-mandatory build steps (#1287)
- [Changed] Clean up documentation for ExitProcessor, OMG.State and RootChainCoordinator (#1410)
- [Changed] Update install docs for elixir 1.10 (#1461)
- [Fixed] Broken macos nightly build (#1458)
- [Fixed] Errors not reported due to misconfugration (#1489)

## [v0.4.6](https://github.com/omisego/elixir-omg/releases/tag/v0.4.6)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.6
0.4.7
4 changes: 2 additions & 2 deletions apps/omg_status/lib/omg_status/release_tasks/set_sentry.ex
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ defmodule OMG.Status.ReleaseTasks.SetSentry do
environment_name: app_env,
included_environments: [app_env],
server_name: hostname,
tags: [
tags: %{
application: release,
eth_network: get_env("ETHEREUM_NETWORK"),
eth_node: get_rpc_client_type(),
current_version: "vsn-#{current_version}",
app_env: "#{app_env}",
hostname: "#{hostname}"
]
}
]
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ defmodule OMG.Status.ReleaseTasks.SetSentryTest do
environment_name: yolo,
included_environments: [yolo],
server_name: server_name,
tags: [
tags: %{
application: :watcher,
eth_network: network,
eth_node: :geth,
current_version: "vsn-" <> current_version,
app_env: yolo,
hostname: server_name
]
}
]
]

Expand Down

0 comments on commit a3caa1b

Please sign in to comment.