Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
faboweb committed Jan 16, 2020
2 parents 4111ce5 + 369633f commit f417656
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 3 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,57 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

<!-- SIMSALA --> <!-- DON'T DELETE, used for automatic changelog updates -->

## [1.0.157] - 2020-01-10

### Added

- [#3362](https://github.com/cosmos/lunie/pull/3362) Adds "Back to Validators" button in PageValidator @Bitcoinera
- [#3358](https://github.com/cosmos/lunie/pull/3358) Adds the e-Money network icon @Bitcoinera
- [#3314](https://github.com/cosmos/lunie/issues/3314) Keep sessions per network @faboweb
- Allow address creation in all cosmos networks @faboweb
- [#3364](https://github.com/cosmos/lunie/pull/3364) Track failing transactions clientside in Sentry @faboweb
- Retry graphql fetches on failed attempts @faboweb
- [#3375](https://github.com/cosmos/lunie/pull/3375) Allow user to show address on Ledger Nano @faboweb
- added little x back to action modal @jbibla
- [#3345](https://github.com/cosmos/lunie/issues/3345) New tutorial component @mariopino

### Changed

- [#3313](https://github.com/cosmos/lunie/issues/3313) Now when Linux users go to sign in with Ledger they get a warning message with a link to the Ledger documentation to fix connection issues @Bitcoinera
- [#3289](https://github.com/cosmos/lunie/pull/3289) Now PageValidator handles empty fields more uniformly, always displaying `--` @Bitcoinera
- [#3398](https://github.com/cosmos/lunie/pull/3398) Replaces a phantom div in the "Back to Validators" button for padding, as it should have been from the beginning @Bitcoinera
- [#3366](https://github.com/cosmos/lunie/pull/3366) Fix link in ActionModal for lunie browser extension @Bitcoinera
- [#3371](https://github.com/cosmos/lunie/pull/3371) Strengthen the validation for cosmos addresses signin @Bitcoinera
- [#3349](https://github.com/cosmos/lunie/pull/3349) Now it is possible to also sign in with an Ethereum address @Bitcoinera
- [#3349](https://github.com/cosmos/lunie/pull/3349) Now the Undelegations component filters for only pending undelegations @Bitcoinera
- success screen icon is green instead of orange @jbibla
- delegation and undelegation are now "stake" and "unstake" @jbibla

### Fixed

- [#3384](https://github.com/cosmos/lunie/pull/3384) Now fees in action modals for all enabled networks work. Micro denoms are properly set @Bitcoinera
- [#3354](https://github.com/cosmos/lunie/pull/3354) Fix session per network so it signs in to the current network @Bitcoinera
- [#3323](https://github.com/cosmos/lunie/pull/3323) Fixes the userTransactionAdded subscription and deletes the double TmLoadingComponent @Bitcoinera
- [#3359](https://github.com/cosmos/lunie/pull/3359) Fixes address undefined for the "To address" in multisends @Bitcoinera
- [#3350](https://github.com/cosmos/lunie/pull/3350) Remove field not present in API schema @colw
- [#3351](https://github.com/cosmos/lunie/pull/3351) A typo @colw
- [#3390](https://github.com/cosmos/lunie/pull/3390) Fix ActionModal data being out of date if a live update of data happened @faboweb
- [#3364](https://github.com/cosmos/lunie/pull/3364) Improve handling of sequence querying in ActionModal @faboweb
- Show failing txs in action modal @faboweb
- there was a styling issue with the "show on ledger" button and it was being displayed for all signed in sessions, not just ledger sessions @jbibla
- [#3096](https://github.com/cosmos/lunie/issues/3096) Fix redelegation to and from fields @mariopino
- [#3277](https://github.com/cosmos/lunie/issues/3277) Update proposals every 10 blocks @mariopino
- [#3280](https://github.com/cosmos/lunie/issues/3280) Replace toggles in all and active buttons in validators page. @mariopino
- [#3328](https://github.com/cosmos/lunie/issues/3328) Fix error 404 in validator links from transactions in page block @mariopino
- [#3339](https://github.com/cosmos/lunie/issues/3339) Fix session modal validation triggers on closing @mariopino
- [#3376](https://github.com/cosmos/lunie/issues/3376) Round total rewards to 6 decimal places @mariopino

### Repository

- Merge back master into develop before releasing @faboweb
- Cleaned packages @faboweb
- Lint before push @faboweb

## [1.0.156] - 2020-01-08

### Added
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lunie",
"version": "1.0.156",
"version": "1.0.157",
"description": "Lunie is the staking and governance platform for proof-of-stake blockchains.",
"author": "Lunie International Software Systems Inc. <[email protected]>",
"scripts": {
Expand Down Expand Up @@ -142,4 +142,4 @@
"type": "git",
"url": "git+https://github.com/luniehq/lunie.git"
}
}
}
1 change: 1 addition & 0 deletions src/components/common/TmBalance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ export default {
},
/* istanbul ignore next */
result() {
/* istanbul ignore next */
this.$apollo.queries.overview.refetch()
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe(`DelegationModal`, () => {
expect(self.$refs.actionModal.validateChangeStep).toHaveBeenCalled()
})

it(`opens`, () => {
it.only(`opens`, () => {
const $refs = { actionModal: { open: jest.fn() } }
const $apollo = wrapper.vm.$apollo
DelegationModal.methods.open.call({ $refs, $apollo })
Expand Down
14 changes: 14 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,13 @@
dependencies:
tslib "^1.9.0"

"@capacitor/core@latest":
version "1.4.0"
resolved "https://registry.yarnpkg.com/@capacitor/core/-/core-1.4.0.tgz#4f6a1fd501687f1819e7be673b528cc3e8f7ce97"
integrity sha512-9cLk6f8A2BjSh9KTItAOXGFSS9ZsVReMUACWw+1lEHsSk5kdPbp0oQ8c1kOX36LlHeBKi/EPSs8dXNedNHyHQA==
dependencies:
tslib "^1.9.0"

"@capacitor/[email protected]":
version "1.3.0"
resolved "https://registry.yarnpkg.com/@capacitor/ios/-/ios-1.3.0.tgz#bb7df03e2a031a9def600946d7ede9681d8ea028"
Expand Down Expand Up @@ -3084,6 +3091,13 @@ canvas-renderer@~2.1.1:
resolved "https://registry.yarnpkg.com/canvas-renderer/-/canvas-renderer-2.1.1.tgz#d91fe9511ab48056ff9fa8a04514bede76535f55"
integrity sha512-/V0XetN7s1Mk3NO7x2wxPZYv0pLMQtGAhecuOuKR88beiYCUle1AbCcFZNLu+4NVzi9RVHS0rXtIgzPEaKidLw==

[email protected]:
version "0.2.2"
resolved "https://registry.yarnpkg.com/capacitor-intercom/-/capacitor-intercom-0.2.2.tgz#d201071316f8065e426336509ca32c8e1e797d5a"
integrity sha512-FY8NuXW5SbP9Hs/HVqoUaLgI1CqlJnEQPniv5SvNdos/W1zZIhU7yebjBdQdn5SuIobuaiWMddg9c/+UagaJKg==
dependencies:
"@capacitor/core" latest

capture-exit@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
Expand Down

0 comments on commit f417656

Please sign in to comment.