CHANGELOG.md 299 KiB
Newer Older
Afri's avatar
Afri committed
## Parity [v1.6.7](https://github.com/paritytech/parity/releases/tag/v1.6.7) (2017-05-18)

This release addresses:

- potential usability issues with [import and recovery of existing accounts](https://blog.parity.io/restoring-blank-seed-phrase/).
- canceling scheduled transactions via RPC or UI.
- warp sync issues with the Kovan network.

Full changelog:

- Backporting to beta [#5657](https://github.com/paritytech/parity/pull/5657)
  - Add CHANGELOG.md [#5513](https://github.com/paritytech/parity/pull/5513)
  - Reorg into blocks before minimum history [#5558](https://github.com/paritytech/parity/pull/5558)
  - Bump to v1.6.7
- Cancel Transaction [#5656](https://github.com/paritytech/parity/pull/5656)
  - option to disable persistent txqueue [#5544](https://github.com/paritytech/parity/pull/5544)
  - Remove transaction RPC [#4949](https://github.com/paritytech/parity/pull/4949)
  - Cancel tx JS [#4958](https://github.com/paritytech/parity/pull/4958)
  - Updating documentation for RPCs [#5392](https://github.com/paritytech/parity/pull/5392)
- Backport Recover button [#5654](https://github.com/paritytech/parity/pull/5654)
  - Backport [#5645](https://github.com/paritytech/parity/pull/5645)
- Add monotonic step to Kovan [#5630](https://github.com/paritytech/parity/pull/5630)
  - Add monotonic transition to kovan [#5587](https://github.com/paritytech/parity/pull/5587)
- Fix ethsign [#5600](https://github.com/paritytech/parity/pull/5600)
- Registry backports [#5445](https://github.com/paritytech/parity/pull/5445)
  - Fixes to the Registry dapp [#4984](https://github.com/paritytech/parity/pull/4984)
  - Fix references to api outside of `parity.js` [#4981](https://github.com/paritytech/parity/pull/4981)

Afri's avatar
Afri committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
## Parity [v1.6.6](https://github.com/paritytech/parity/releases/tag/v1.6.6) (2017-04-11)

This release brings warp sync support for kovan network.

- Beta Backports [#5434](https://github.com/paritytech/parity/pull/5434)
  - Bump to v1.6.6
  - Strict validation transitions [#4988](https://github.com/paritytech/parity/pull/4988)
    - Ability to make validation stricter
    - Fix consensus
    - Remove logger
  - Fix eth_sign showing as wallet account [#5309](https://github.com/paritytech/parity/pull/5309)
    - DefaultProps for account
    - Pass signing account
    - Update tests for Connect(...)
  - Add new seed nodes [#5345](https://github.com/paritytech/parity/pull/5345)
  - Kovan warp sync fixed
- Aura eip155 validation transition [#5363](https://github.com/paritytech/parity/pull/5363)
  - Add eip155 validation
  - Add transition block
- Default eip155 validation [#5350](https://github.com/paritytech/parity/pull/5350)
- Backport syntax libs update [#5316](https://github.com/paritytech/parity/pull/5316)

## Parity [v1.6.5](https://github.com/paritytech/parity/releases/tag/v1.6.5) (2017-03-28)

This release contains the following changes:

- Warp sync snapshot format improvements.
- Fix for Firefox UI issues.
- Fix for restoring from a file snapshot.
- Fix for auto-updater error handling.
- Updated configuration for [Ropsten revival](https://github.com/ethereum/ropsten/blob/master/revival.md). Make sure to delete old Ropsten blockchain first with `parity db kill --chain ropsten`. After that you can sync normally with `parity --chain ropsten`.

Full changes:

- Beta Backports [#5299](https://github.com/paritytech/parity/pull/5299)
  - Fix FireFox overflows [#5000](https://github.com/paritytech/parity/pull/5000)
    - Max width for container
    - Set min-width
  - Switching ValidatorSet [#4961](https://github.com/paritytech/parity/pull/4961)
    - Add multi validator set
    - Nicer comment
    - Validate in constructor
    - Reporting
  - Avoid clogging up tmp when updater dir has bad permissions. [#5024](https://github.com/paritytech/parity/pull/5024)
  - Force earliest era set in snapshot restore [#5021](https://github.com/paritytech/parity/pull/5021)
  - Bumb to v1.6.5
  - Fine grained snapshot chunking
  - Ropsten revival
- Fix validator contract syncing [#4789](https://github.com/paritytech/parity/pull/4789) [#5011](https://github.com/paritytech/parity/pull/5011)
  - Make validator set aware of various states
  - Fix updater build
  - Clean up contract call
  - Failing sync test
  - Adjust tests
  - Nicer indent
  - Revert bound divisor

## Parity [v1.5.12](https://github.com/paritytech/parity/releases/tag/v1.5.12) (2017-03-27)

Stable release that adds support for a new warp sync snapshot format.

- Stable Backports [#5297](https://github.com/paritytech/parity/pull/5297)
  - Bump to v1.5.12
  - Fine grained snapshot chunking

## Parity [v1.6.4](https://github.com/paritytech/parity/releases/tag/v1.6.4) (2017-03-22)

A number of issues fixed in this release:

- Ledger device connectivity issues for some users on Windows.
- Improved vault usability.
- Stratum mining no longer requires `--force-sealing`.
- `evm` binary has been renamed to `parity-evm` to avoid conflict with cpp-ethereum package.

Full Changes:

- Backporting to beta [#4995](https://github.com/paritytech/parity/pull/4995)
  - Bump to v1.6.4
  - Ensure sealing work enabled if notifier registed
  - Fix condition check
  - Always send full chunks [#4960](https://github.com/paritytech/parity/pull/4960)
  - Bump nanomsg [#4965](https://github.com/paritytech/parity/pull/4965)
  - Renaming evm binary to avoid conflicts. [#4899](https://github.com/paritytech/parity/pull/4899)
- Beta UI backports [#4993](https://github.com/paritytech/parity/pull/4993)
  - Update js-precompiled 20170314-121823
  - Attach hardware wallets already in addressbook [#4912](https://github.com/paritytech/parity/pull/4912)
    - Attach hardware wallets already in addressbook
    - Only set values changed
  - Add Vaults logic to First Run [#4894](https://github.com/paritytech/parity/issues/4894) [#4914](https://github.com/paritytech/parity/pull/4914)
  - Add ability to configure Secure API (for [#4885](https://github.com/paritytech/parity/issues/4885)) [#4922](https://github.com/paritytech/parity/pull/4922)
  - Add z-index to small modals as well [#4923](https://github.com/paritytech/parity/pull/4923)
  - Eth_sign where account === undefined [#4964](https://github.com/paritytech/parity/pull/4964)
    - Update for case where account === undefined
    - Update tests to not mask account === undefined
    - Default account = {} where undefined (thanks [@tomusdrw](https://github.com/tomusdrw))
  - Fix Password Dialog forms style issue [#4968](https://github.com/paritytech/parity/pull/4968)


## Parity [v1.6.3](https://github.com/paritytech/parity/releases/tag/v1.6.3) (2017-03-14)

This release fixes issue compatibility with Safari on MacOS.

- Safari fixes [#4902](https://github.com/paritytech/parity/pull/4902)
  - Add intitial max-width to sections
  - Move background z-index to -1

## Parity [v1.5.11](https://github.com/paritytech/parity/releases/tag/v1.5.11) (2017-03-14)

Parity 1.5.11 Includes a patch for a more comprehensive block verification.

- Bump to v1.5.11
- Additional kovan params
- Recalculate receipt roots in close_and_lock
- Bump to v1.5.10

## Parity [v1.6.2](https://github.com/paritytech/parity/releases/tag/v1.6.2) (2017-03-13)

A major release introducing a few new features:

- Revamped UI.
- Account Vaults.
- Support for Ledger hardware wallet devices.
- Stratum protocol for PoW mining.
- A new MacOS installer. Parity for MacOS now includes a Menu Bar icon that allows controlling Parity service.
- Disk backed transaction store. Pending transactions are now saved to disk and won't get lost when Parity is restarted.
- Improved memory management.

See the [blog post](https://blog.parity.io/announcing-parity-1-6/) for more details.

Full Changes:

- Fix auto-updater beta [#4868](https://github.com/paritytech/parity/pull/4868)
- Beta UI backports [#4855](https://github.com/paritytech/parity/pull/4855)
  - Added React Hot Reload to dapps + TokenDeplpoy fix ([#4846](https://github.com/paritytech/parity/pull/4846))
  - Fix method decoding ([#4845](https://github.com/paritytech/parity/pull/4845))
    - Fix contract deployment method decoding in Signer
    - Linting
  - Fix TxViewer when no `to` (contract deployment) ([#4847](https://github.com/paritytech/parity/pull/4847))
    - Added React Hot Reload to dapps + TokenDeplpoy fix
    - Fixes to the LocalTx dapp
    - Don't send the nonce for mined transactions
    - Don't encode empty to values for options
  - Pull steps from actual available steps ([#4848](https://github.com/paritytech/parity/pull/4848))
  - Wait for the value to have changed in the input ([#4844](https://github.com/paritytech/parity/pull/4844))
  - Backport Regsirty changes from [#4589](https://github.com/paritytech/parity/pull/4589)
  - Test fixes for [#4589](https://github.com/paritytech/parity/pull/4589)
- Beta Simple score [#4852](https://github.com/paritytech/parity/pull/4852)
  - Simple score
  - Ignore part of a test
- Backporting to beta [#4840](https://github.com/paritytech/parity/pull/4840)
  - Fixes to the Registry dapp ([#4838](https://github.com/paritytech/parity/pull/4838))
    - Fix wrong ABI methods
    - Fix comparison
  - Bump to v1.6.1
- Show token icons on list summary pages ([#4826](https://github.com/paritytech/parity/pull/4826)) [#4827](https://github.com/paritytech/parity/pull/4827)
  - Adjust balance overlay margins (no jumps)
  - Img only balances, small verifications
  - Invalid tests removed
  - Always wrap display (Thanks [@ngotchac](https://github.com/ngotchac))
  - Update tests to reflect reality
- Beta Engine backports [#4806](https://github.com/paritytech/parity/pull/4806)
  - Calibrate before rejection
  - Change flag name
  - Add eip155
  - Make network_id default
- Beta UI backports [#4823](https://github.com/paritytech/parity/pull/4823)
  - Better logic for contract deployments ([#4821](https://github.com/paritytech/parity/pull/4821))
- Beta UI backports [#4818](https://github.com/paritytech/parity/pull/4818)
  - Update the key ([#4817](https://github.com/paritytech/parity/pull/4817))
  - Adjust selection colours/display ([#4811](https://github.com/paritytech/parity/pull/4811))
    - Adjust selection colours to match with mui
    - allow -> disable (simplify selections)
    - Only use top-border
    - Overlay selection line
    - Slightly more muted unselected
    - Restore address icon
  - Fix default values for contract queries
- Beta UI backports [#4809](https://github.com/paritytech/parity/pull/4809)
  - Update Wallet to new Wallet Code ([#4805](https://github.com/paritytech/parity/pull/4805))
    - Update Wallet Version
    - Update Wallet Library
    - Update Wallets Bytecodes
    - Typo
    - Separate Deploy in Contract API
    - Use the new Wallet ABI // Update wallet code
    - WIP .// Deploy from Wallet
    - Update Wallet contract
    - Contract Deployment for Wallet
    - Working deployments for Single Owned Wallet contracts
    - Linting
    - Create a Wallet from a Wallet
    - Linting
    - Fix Signer transactions // Add Gas Used for transactions
    - Deploy wallet contract fix
    - Fix too high gas estimate for Wallet Contract Deploys
    - Final piece ; deploying from Wallet owned by wallet
    - Update Wallet Code
    - Updated the Wallet Codes
    - Fixing Wallet Deployments
    - Add Support for older wallets
    - Linting
  - SMS Faucet ([#4774](https://github.com/paritytech/parity/pull/4774))
    - Faucet
    - Remove flakey button-index testing
    - Only display faucet when sms verified (mainnet)
    - Simplify availability checks
    - WIP
    - Resuest from verified -> verified
    - Update endpoint, display response text
    - Error icon on errors
    - Parse hash text response
    - Use /api/:address endpoint
    - Hash -> data
    - Adjust sms-certified message
  - Fix SectionList hovering issue ([#4749](https://github.com/paritytech/parity/pull/4749))
    - Fix SectionList Items hover when <3 items
    - Even easier...
  - Lint (new)
- Update ETC bootnodes [#4794](https://github.com/paritytech/parity/pull/4794)
- Update comments and reg ABI [#4787](https://github.com/paritytech/parity/pull/4787)
- Optimize signature for fallback function. [#4780](https://github.com/paritytech/parity/pull/4780)
- Rephrasing token generation screen. [#4777](https://github.com/paritytech/parity/pull/4777)
- Etherscan links based on netVersion identifier [#4772](https://github.com/paritytech/parity/pull/4772)
- Update README.md  [#4762](https://github.com/paritytech/parity/pull/4762)
- Fix invalid props to verification code [#4766](https://github.com/paritytech/parity/pull/4766)
- Extend authority round consensus test [#4756](https://github.com/paritytech/parity/pull/4756)
- Revert last hyper "fix" [#4752](https://github.com/paritytech/parity/pull/4752)
- Vault Management UI (round 3) [#4652](https://github.com/paritytech/parity/pull/4652)
- Update SelectionList indicators [#4736](https://github.com/paritytech/parity/pull/4736)
- Update testnet detection [#4746](https://github.com/paritytech/parity/pull/4746)
- Fix Portal in Portal ESC issue [#4745](https://github.com/paritytech/parity/pull/4745)
- Update wiki [#4743](https://github.com/paritytech/parity/pull/4743)
- Account selector close operations [#4728](https://github.com/paritytech/parity/pull/4728)
- Fix Account Selection in Signer [#4744](https://github.com/paritytech/parity/pull/4744)
- Support both V1 & V2 DataChanged events in registry [#4734](https://github.com/paritytech/parity/pull/4734)
- Add info on forks. [#4733](https://github.com/paritytech/parity/pull/4733)
- Add registry addr [#4732](https://github.com/paritytech/parity/pull/4732)
- UI support for hardware wallets [#4539](https://github.com/paritytech/parity/pull/4539)
- S/delete/forget/ for wallets [#4729](https://github.com/paritytech/parity/pull/4729)
- New chains [#4720](https://github.com/paritytech/parity/pull/4720)
- Enable --warp by default [#4719](https://github.com/paritytech/parity/pull/4719)
- Update Uglify (fix to 2.8.2) to fix binary builds [#4723](https://github.com/paritytech/parity/pull/4723)
- Extract i18n strings in modals/* [#4706](https://github.com/paritytech/parity/pull/4706)
- Provide uncle size where available in RPC [#4713](https://github.com/paritytech/parity/pull/4713)
- EC math functions [#4696](https://github.com/paritytech/parity/pull/4696)
- Add registrar fields [#4716](https://github.com/paritytech/parity/pull/4716)
- Extract i18n strings in views/* [#4695](https://github.com/paritytech/parity/pull/4695)
- Removing network=disable from config files [#4715](https://github.com/paritytech/parity/pull/4715)
- Fast in-place migration for adding and removing column families [#4687](https://github.com/paritytech/parity/pull/4687)
- Display badges on summary view [#4689](https://github.com/paritytech/parity/pull/4689)
- Consistent file uploads [#4699](https://github.com/paritytech/parity/pull/4699)
- Rename https://mkr.market -> https://oasisdex.com [#4701](https://github.com/paritytech/parity/pull/4701)
- Stop copy & clickthrough from list summaries [#4700](https://github.com/paritytech/parity/pull/4700)
- Display ... for address summary overflows [#4691](https://github.com/paritytech/parity/pull/4691)
- Less agressive grayscale/opacity in SelectionList [#4688](https://github.com/paritytech/parity/pull/4688)
- Propagate trie errors upwards from State [#4655](https://github.com/paritytech/parity/pull/4655)
- Generic state backend [#4632](https://github.com/paritytech/parity/pull/4632)
- Enhance dialog layouts (round 1) [#4637](https://github.com/paritytech/parity/pull/4637)
- Vault Management UI (round 2) [#4631](https://github.com/paritytech/parity/pull/4631)
- Fix Portal broad event stopper [#4674](https://github.com/paritytech/parity/pull/4674)
- Custom dev chain presets [#4671](https://github.com/paritytech/parity/pull/4671)
- Max gas limit and min gas price [#4661](https://github.com/paritytech/parity/pull/4661)
- Align list displays with SectionList (UI consistency) [#4621](https://github.com/paritytech/parity/pull/4621)
- Add SelectionList component to DRY up [#4639](https://github.com/paritytech/parity/pull/4639)
- I18n NL linting updates [#4662](https://github.com/paritytech/parity/pull/4662)
- Misc. small UI fixes [#4657](https://github.com/paritytech/parity/pull/4657)
- More CLI settings for IPFS API [#4608](https://github.com/paritytech/parity/pull/4608)
- Fix Tendermint deadlock [#4654](https://github.com/paritytech/parity/pull/4654)
- Nl translations [#4649](https://github.com/paritytech/parity/pull/4649)
- Update transaction condition documentation [#4659](https://github.com/paritytech/parity/pull/4659)
- Bump hyper versions [#4645](https://github.com/paritytech/parity/pull/4645)
- Sane updater [#4658](https://github.com/paritytech/parity/pull/4658)
- Remainder of RPC APIs implemented for the light client [#4594](https://github.com/paritytech/parity/pull/4594)
- Preserve vault meta when changing pwd [#4650](https://github.com/paritytech/parity/pull/4650)
- Fix Geth account import [#4641](https://github.com/paritytech/parity/pull/4641)
- Tweak some checks. [#4633](https://github.com/paritytech/parity/pull/4633)
- Attempt to fix subscribeToEvents test [#4638](https://github.com/paritytech/parity/pull/4638)
- Fix selection value from RadioButtons [#4636](https://github.com/paritytech/parity/pull/4636)
- Convert all remaining Modals to use Portal (UI consistency) [#4625](https://github.com/paritytech/parity/pull/4625)
- Default account selection update [#4609](https://github.com/paritytech/parity/pull/4609)
- Display ETH balance in overlay account selector [#4588](https://github.com/paritytech/parity/pull/4588)
- Fixed minor grammar mistake in readme [#4627](https://github.com/paritytech/parity/pull/4627)
- Extract newly available i18n strings [#4623](https://github.com/paritytech/parity/pull/4623)
- Save pending local transactions in the database [#4566](https://github.com/paritytech/parity/pull/4566)
- Bump CID version to allow compilation on all platforms [#4614](https://github.com/paritytech/parity/pull/4614)
- Vault Management UI (first round) [#4446](https://github.com/paritytech/parity/pull/4446)
- Let Engine decide if it seals internally [#4613](https://github.com/paritytech/parity/pull/4613)
- Show only known accounts/wallets/addresses on Home [#4612](https://github.com/paritytech/parity/pull/4612)
- Proper default accounts RPCs [#4580](https://github.com/paritytech/parity/pull/4580)
- Hash-fetch errors in case upstream returns non-200 [#4599](https://github.com/paritytech/parity/pull/4599)
- Added pending transaction info to eth_getTransactionByHash [#4570](https://github.com/paritytech/parity/pull/4570)
- Secret store - initial version [#4567](https://github.com/paritytech/parity/pull/4567)
- Handle invalid ABI retrieved from address_book gracefully [#4606](https://github.com/paritytech/parity/pull/4606)
- Optimize key directory reloads [#4583](https://github.com/paritytech/parity/pull/4583)
- Revert Double Click on Accounts to close in Signer Bar [#4590](https://github.com/paritytech/parity/pull/4590)
- IPFS MVP [#4545](https://github.com/paritytech/parity/pull/4545)
- Networking fixes [#4563](https://github.com/paritytech/parity/pull/4563)
- Remove eth_compile* RPCs [#4577](https://github.com/paritytech/parity/pull/4577)
- Ledger wallet signing fixed [#4578](https://github.com/paritytech/parity/pull/4578)
- Remove vertx from Webpack config [#4576](https://github.com/paritytech/parity/pull/4576)
- Better display of tags [#4564](https://github.com/paritytech/parity/pull/4564)
- Added vaults support to `ethstore-cli` [#4532](https://github.com/paritytech/parity/pull/4532)
- Fixed font URLs [#4579](https://github.com/paritytech/parity/pull/4579)
- Explicitly set seconds to 0 from selector [#4559](https://github.com/paritytech/parity/pull/4559)
- Fixes evmbin compilation and adding to standard build. [#4561](https://github.com/paritytech/parity/pull/4561)
- Alias for personal_sendTransaction [#4554](https://github.com/paritytech/parity/pull/4554)
- Key derivation in ethstore & rpc [#4515](https://github.com/paritytech/parity/pull/4515)
- Skip OOG check for simple transfers [#4558](https://github.com/paritytech/parity/pull/4558)
- Light Client transaction queue, initial LightDispatcher [#4501](https://github.com/paritytech/parity/pull/4501)
- Fixes BadgeReg Middleware [#4556](https://github.com/paritytech/parity/pull/4556)
- Fix pasting of value in Input fields [#4555](https://github.com/paritytech/parity/pull/4555)
- Tooltips with react-intl [#4549](https://github.com/paritytech/parity/pull/4549)
- Close on double-click for Signer Account selection [#4540](https://github.com/paritytech/parity/pull/4540)
- Signer provenance [#4477](https://github.com/paritytech/parity/pull/4477)
- Fix console dapp [#4544](https://github.com/paritytech/parity/pull/4544)
- Extract i18n string into i18n/_defaults (base of translations) [#4514](https://github.com/paritytech/parity/pull/4514)
- Fix contract queries bug [#4534](https://github.com/paritytech/parity/pull/4534)
- Fixing namespace of couple methods in console. [#4538](https://github.com/paritytech/parity/pull/4538)
- Home landing page [#4178](https://github.com/paritytech/parity/pull/4178)
- Bump JSON RPC crates versions [#4530](https://github.com/paritytech/parity/pull/4530)
- Update rust version in README [#4531](https://github.com/paritytech/parity/pull/4531)
- Lower default pruning history and memory [#4528](https://github.com/paritytech/parity/pull/4528)
- Serde 0.9 [#4508](https://github.com/paritytech/parity/pull/4508)
- Fixes to Token Deploy dapp [#4513](https://github.com/paritytech/parity/pull/4513)
- Fixed receipt decoding [#4521](https://github.com/paritytech/parity/pull/4521)
- Several fixes to the Wallet in general [#4504](https://github.com/paritytech/parity/pull/4504)
- Use the current contract name for Solidity compilation [#4510](https://github.com/paritytech/parity/pull/4510)
- Preparation for Light client RPC [#4485](https://github.com/paritytech/parity/pull/4485)
- Fix Dutch translation [#4509](https://github.com/paritytech/parity/pull/4509)
- Fixed a warning and bumped libusb-sys [#4507](https://github.com/paritytech/parity/pull/4507)
- Fix TnC overflows on small screens [#4505](https://github.com/paritytech/parity/pull/4505)
- Fix no data sent in TxQueue dapp [#4502](https://github.com/paritytech/parity/pull/4502)
- Ledger wallet support [#4486](https://github.com/paritytech/parity/pull/4486)
- Add new Componennt for Token Images [#4498](https://github.com/paritytech/parity/pull/4498)
- Fix address and accounts links [#4491](https://github.com/paritytech/parity/pull/4491)
- Fix Token Reg Dapp issues in Firefox [#4489](https://github.com/paritytech/parity/pull/4489)
- Parity.js interfaces for vaults [#4497](https://github.com/paritytech/parity/pull/4497)
- Initial Dutch translations [#4484](https://github.com/paritytech/parity/pull/4484)
- Fix key.meta.vault for root dir keys && read vault.meta without vault key [#4482](https://github.com/paritytech/parity/pull/4482)
- Arbitrary labels for extended keys (u32, H256 built-in) [#4438](https://github.com/paritytech/parity/pull/4438)
- Fix ethstore build [#4492](https://github.com/paritytech/parity/pull/4492)
- Fixed compilation of ethstore-cli [#4493](https://github.com/paritytech/parity/pull/4493)
- Build embedded Parity JS properly and separatly  [#4426](https://github.com/paritytech/parity/pull/4426)
- Static link for snappy [#4487](https://github.com/paritytech/parity/pull/4487)
- Work with string numbers in contract (Fixes #4472) [#4478](https://github.com/paritytech/parity/pull/4478)
- Metadata support for vaults [#4475](https://github.com/paritytech/parity/pull/4475)
- Sort gas price corpus when hitting genesis [#4470](https://github.com/paritytech/parity/pull/4470)
- Fixing CORS headers for parity.web3.site [#4461](https://github.com/paritytech/parity/pull/4461)
- Make signing compatible with geth. [#4468](https://github.com/paritytech/parity/pull/4468)
- Handle registry not found errors [#4465](https://github.com/paritytech/parity/pull/4465)
- Fix Portal scrolling getting stuck [#4455](https://github.com/paritytech/parity/pull/4455)
- Fix AccountCard stretch to 100% [#4450](https://github.com/paritytech/parity/pull/4450)
- Include total difficulty in CHTs and hide implementation details from consumers [#4428](https://github.com/paritytech/parity/pull/4428)
- Fix RLP encoding for types recursively calling `RlpStream::append` [#4362](https://github.com/paritytech/parity/pull/4362)
- Open popup without attempting inline [#4440](https://github.com/paritytech/parity/pull/4440)
- Fixing histogram again ([#4464](https://github.com/paritytech/parity/issues/4464)) port from beta [#4467](https://github.com/paritytech/parity/pull/4467)
- Vaults RPCs [#4366](https://github.com/paritytech/parity/pull/4366)
- Ethkey - extended keys [#4377](https://github.com/paritytech/parity/pull/4377)
- Use secure websocket from HTTPS clients [#4436](https://github.com/paritytech/parity/pull/4436)
- RPC middleware: Informant & Client.keep_alive [#4384](https://github.com/paritytech/parity/pull/4384)
- Fix eth_sign/parity_postSign [#4432](https://github.com/paritytech/parity/pull/4432)
- Web view with web3.site support [#4313](https://github.com/paritytech/parity/pull/4313)
- Extend Portal component with title, buttons & steps (as per Modal) [#4392](https://github.com/paritytech/parity/pull/4392)
- Extension installation overlay [#4423](https://github.com/paritytech/parity/pull/4423)
- Add block & timestamp conditions to Signer [#4411](https://github.com/paritytech/parity/pull/4411)
- Transaction timestamp condition [#4419](https://github.com/paritytech/parity/pull/4419)
- Poll for defaultAccount to update dapp & overlay subscriptions [#4417](https://github.com/paritytech/parity/pull/4417)
- Validate dapps accounts with address book [#4407](https://github.com/paritytech/parity/pull/4407)
- Dapps use defaultAccount instead of own selectors [#4386](https://github.com/paritytech/parity/pull/4386)
- Fix lock and rename tracing [#4403](https://github.com/paritytech/parity/pull/4403)
- Restarting fetch client every now and then [#4399](https://github.com/paritytech/parity/pull/4399)
- Perform a sync between Rust and JS when generating markdown instead of in spec tests [#4408](https://github.com/paritytech/parity/pull/4408)
- Registry dapp: make lookup use lower case [#4409](https://github.com/paritytech/parity/pull/4409)
- Available Dapp selection alignment with Permissions (Portal) [#4374](https://github.com/paritytech/parity/pull/4374)
- More permissive verification process [#4317](https://github.com/paritytech/parity/pull/4317)
- Fix ParityBar account selection overflows [#4405](https://github.com/paritytech/parity/pull/4405)
- Mac binaries signing [#4397](https://github.com/paritytech/parity/pull/4397)
- Revert "remove [ci skip]" [#4398](https://github.com/paritytech/parity/pull/4398)
- Registry, s/a the owner/the owner/ [#4391](https://github.com/paritytech/parity/pull/4391)
- Fixing invalid address in docs [#4388](https://github.com/paritytech/parity/pull/4388)
- Remove [ci skip] [#4381](https://github.com/paritytech/parity/pull/4381)
- Fixing estimate gas in case histogram is not available [#4387](https://github.com/paritytech/parity/pull/4387)
- Default Account selector in Signer overlay [#4375](https://github.com/paritytech/parity/pull/4375)
- Fixing web3 in console [#4382](https://github.com/paritytech/parity/pull/4382)
- Add parity_defaultAccount RPC (with subscription) [#4383](https://github.com/paritytech/parity/pull/4383)
- Full JSON-RPC docs + sync tests. [#4335](https://github.com/paritytech/parity/pull/4335)
- Expose util as Api.util [#4372](https://github.com/paritytech/parity/pull/4372)
- Dapp Account Selection & Defaults [#4355](https://github.com/paritytech/parity/pull/4355)
- Publish @parity/jsonrpc [#4365](https://github.com/paritytech/parity/pull/4365)
- Fix signing [#4363](https://github.com/paritytech/parity/pull/4363)
- Fixing embedded bar not closing in chrome extension [#4367](https://github.com/paritytech/parity/pull/4367)
- Update AccountCard for re-use [#4350](https://github.com/paritytech/parity/pull/4350)
- Add proper event listener to Portal [#4359](https://github.com/paritytech/parity/pull/4359)
- Optional from field in Transaction Requests [#4332](https://github.com/paritytech/parity/pull/4332)
- Rust 1.14 in README [ci-skip] [#4361](https://github.com/paritytech/parity/pull/4361)
- Fix JournalDB::earliest_era on empty database [#4316](https://github.com/paritytech/parity/pull/4316)
- Fixed race condition deadlock on fetching enode URL [#4354](https://github.com/paritytech/parity/pull/4354)
- Allow Portal to be used as top-level modal [#4338](https://github.com/paritytech/parity/pull/4338)
- Fix postsign [#4347](https://github.com/paritytech/parity/pull/4347)
- Renaming signAndSendTransaction to sendTransaction [#4351](https://github.com/paritytech/parity/pull/4351)
- Add api.util.encodeMethodCall to parity.js [#4330](https://github.com/paritytech/parity/pull/4330)
- Initial commit for vaults [#4312](https://github.com/paritytech/parity/pull/4312)
- Returning default account as coinbase + allow altering sender in signer [#4323](https://github.com/paritytech/parity/pull/4323)
- Persistent tracking of dapps [#4302](https://github.com/paritytech/parity/pull/4302)
- Exposing all RPCs over dapps port as CLI option [#4346](https://github.com/paritytech/parity/pull/4346)
- New macOS App [#4345](https://github.com/paritytech/parity/pull/4345)
- Display QrCode for accounts, addresses & contracts [#4329](https://github.com/paritytech/parity/pull/4329)
- Add QrCode & Copy to ShapeShift [#4322](https://github.com/paritytech/parity/pull/4322)
- Parity.js api.parity.chainStatus should handle { blockGap: null } [#4327](https://github.com/paritytech/parity/pull/4327)
- DeleteAccount & LoadContract modal updates [#4320](https://github.com/paritytech/parity/pull/4320)
- Split Tab from TabBar [#4318](https://github.com/paritytech/parity/pull/4318)
- Contracts interface expansion [#4307](https://github.com/paritytech/parity/pull/4307)
- HistoryStore for tracking relevant routes [#4305](https://github.com/paritytech/parity/pull/4305)
- Split Dapp icon into ui/DappIcon (re-use) [#4308](https://github.com/paritytech/parity/pull/4308)
- Add a Playground for the UI Components [#4301](https://github.com/paritytech/parity/pull/4301)
- Update CreateWallet with FormattedMessage [#4298](https://github.com/paritytech/parity/pull/4298)
- Update dates for new PRs missed [#4306](https://github.com/paritytech/parity/pull/4306)
- EIP-98: Optional transaction state root [#4296](https://github.com/paritytech/parity/pull/4296)
- Fix whitespace [#4299](https://github.com/paritytech/parity/pull/4299)
- Attempt to fix console. [#4294](https://github.com/paritytech/parity/pull/4294)
- Ui/SectionList component [#4292](https://github.com/paritytech/parity/pull/4292)
- Stratum up [#4233](https://github.com/paritytech/parity/pull/4233)
- Logging transaction duration [#4297](https://github.com/paritytech/parity/pull/4297)
- Generic engine utilities [#4258](https://github.com/paritytech/parity/pull/4258)
- JSON-RPC interfaces with documentation [#4276](https://github.com/paritytech/parity/pull/4276)
- Dont decode seal fields [#4263](https://github.com/paritytech/parity/pull/4263)
- Skip misbehaving test until properly fixed [#4283](https://github.com/paritytech/parity/pull/4283)
- Additional logs for own transactions [#4278](https://github.com/paritytech/parity/pull/4278)
- Ensure write lock isn't held when calling handlers [#4285](https://github.com/paritytech/parity/pull/4285)
- Feature selector [#4074](https://github.com/paritytech/parity/pull/4074)
- AccountCreate updates [#3988](https://github.com/paritytech/parity/pull/3988)
- Extended JS interface -> Markdown generator [#4275](https://github.com/paritytech/parity/pull/4275)
- Added 3 warpnodes for ropsten [#4289](https://github.com/paritytech/parity/pull/4289)
- Ledger Communication JS toolkit [#4268](https://github.com/paritytech/parity/pull/4268)
- ValidatorSet reporting [#4208](https://github.com/paritytech/parity/pull/4208)
- Add support for api.subscribe('parity_accountsInfo') [#4273](https://github.com/paritytech/parity/pull/4273)
- Display AccountCard name via IdentityName [#4235](https://github.com/paritytech/parity/pull/4235)
- Dapp visibility save/load tests [#4150](https://github.com/paritytech/parity/pull/4150)
- Fix wrong output format of peers [#4270](https://github.com/paritytech/parity/pull/4270)
- Chain scoring [#4218](https://github.com/paritytech/parity/pull/4218)
- Rust 1.14 for windows builds [#4269](https://github.com/paritytech/parity/pull/4269)
- Eslint formatting updates [#4234](https://github.com/paritytech/parity/pull/4234)
- Embeddable ParityBar [#4222](https://github.com/paritytech/parity/pull/4222)
- Update deb-build.sh to fix libssl dependency [#4260](https://github.com/paritytech/parity/pull/4260)
- Integration with zgp whitelist contract [#4215](https://github.com/paritytech/parity/pull/4215)
- Adjust the location of the signer snippet [#4155](https://github.com/paritytech/parity/pull/4155)
- Fix wrong token handling [#4254](https://github.com/paritytech/parity/pull/4254)
- Additional building-block UI components [#4239](https://github.com/paritytech/parity/pull/4239)
- Bump package.json to 0.3.0 (1.6 track) [#4244](https://github.com/paritytech/parity/pull/4244)
- Disable incoming ETH notifications [#4243](https://github.com/paritytech/parity/pull/4243)
- Memory-based pruning history size [#4114](https://github.com/paritytech/parity/pull/4114)
- Common EngineSigner [#4189](https://github.com/paritytech/parity/pull/4189)
- Verification: don't request a code twice [#4221](https://github.com/paritytech/parity/pull/4221)
- S/Delete Contract/Forget Contract/ [#4237](https://github.com/paritytech/parity/pull/4237)
- Light protocol syncing improvements [#4212](https://github.com/paritytech/parity/pull/4212)
- LES Peer Info [#4195](https://github.com/paritytech/parity/pull/4195)
- Don't panic on uknown git commit hash [#4231](https://github.com/paritytech/parity/pull/4231)
- Cache registry reverses in local storage [#4182](https://github.com/paritytech/parity/pull/4182)
- Update version numbers in README [#4223](https://github.com/paritytech/parity/pull/4223)
- CHT calculations for full nodes [#4181](https://github.com/paritytech/parity/pull/4181)
- Use single source of info for dapp meta (build & display) [#4217](https://github.com/paritytech/parity/pull/4217)
- Non-secure API for DappReg [#4216](https://github.com/paritytech/parity/pull/4216)
- Console now has admin [#4220](https://github.com/paritytech/parity/pull/4220)
- Verification: add mainnet BadgeReg ids [#4190](https://github.com/paritytech/parity/pull/4190)
- Fixing minimal transaction queue price [#4204](https://github.com/paritytech/parity/pull/4204)
- Remove unnecessary Engine method [#4184](https://github.com/paritytech/parity/pull/4184)
- Fixed --base-path on windows [#4193](https://github.com/paritytech/parity/pull/4193)
- Fixing etherscan price parsing [#4202](https://github.com/paritytech/parity/pull/4202)
- LES: Better timeouts + Track failed requests [#4093](https://github.com/paritytech/parity/pull/4093)
- ESLint additional rules [#4186](https://github.com/paritytech/parity/pull/4186)
- JsonRPC bump for IPC fix [#4200](https://github.com/paritytech/parity/pull/4200)
- Poll for upgrades as part of global status (long) [#4197](https://github.com/paritytech/parity/pull/4197)
- Updater fixes [#4196](https://github.com/paritytech/parity/pull/4196)
- Prevent duplicate incoming connections [#4180](https://github.com/paritytech/parity/pull/4180)
- Minor typo to ensure it updates only when synced. [#4188](https://github.com/paritytech/parity/pull/4188)
- Minor refactor for clarity [#4174](https://github.com/paritytech/parity/pull/4174)
- Secret - from hash function, also validate data [#4159](https://github.com/paritytech/parity/pull/4159)
- Gas_limit for blocks, mined by Parity will be divisible by 37 [#4154](https://github.com/paritytech/parity/pull/4154)
- Support HTML5-routed dapps [#4173](https://github.com/paritytech/parity/pull/4173)
- Fix subscribeToEvents test [#4166](https://github.com/paritytech/parity/pull/4166)
- Fix dapps not loading [#4170](https://github.com/paritytech/parity/pull/4170)
- Fix broken token images [#4169](https://github.com/paritytech/parity/pull/4169)
- Bumping hyper [#4167](https://github.com/paritytech/parity/pull/4167)
- Icarus -> update, increase web timeout. [#4165](https://github.com/paritytech/parity/pull/4165)
- Add a password strength component [#4153](https://github.com/paritytech/parity/pull/4153)
- Stop flickering + added loader in AddressSelector [#4149](https://github.com/paritytech/parity/pull/4149)
- On demand LES request [#4036](https://github.com/paritytech/parity/pull/4036)
- Ropsten fork detection [#4163](https://github.com/paritytech/parity/pull/4163)
- Pull in console dapp as builtin [#4145](https://github.com/paritytech/parity/pull/4145)
- Optimized hash lookups [#4144](https://github.com/paritytech/parity/pull/4144)
- UnverifiedTransaction type [#4134](https://github.com/paritytech/parity/pull/4134)
- Verification: check if server is running [#4140](https://github.com/paritytech/parity/pull/4140)
- Remove onSubmit of current (no auto-change on password edit) [#4151](https://github.com/paritytech/parity/pull/4151)
- Trim spaces from InputAddress [#4126](https://github.com/paritytech/parity/pull/4126)
- Don't pop-up notifications after network switch [#4076](https://github.com/paritytech/parity/pull/4076)
- Use estimateGas error (as per updated implementation) [#4131](https://github.com/paritytech/parity/pull/4131)
- Improvements and optimisations to estimate_gas [#4142](https://github.com/paritytech/parity/pull/4142)
- New jsonrpc-core with futures and metadata support [#3859](https://github.com/paritytech/parity/pull/3859)
- Reenable mainnet update server. [#4137](https://github.com/paritytech/parity/pull/4137)
- Temporarily skip failing test [#4138](https://github.com/paritytech/parity/pull/4138)
- Refactor VoteCollector [#4101](https://github.com/paritytech/parity/pull/4101)
- Another minor estimation fix [#4133](https://github.com/paritytech/parity/pull/4133)
- Add proper label to method decoding inputs [#4136](https://github.com/paritytech/parity/pull/4136)
- Remove bindActionCreators({}, dispatch) (empty, unneeded) [#4135](https://github.com/paritytech/parity/pull/4135)
- Better contract error log reporting & handling [#4128](https://github.com/paritytech/parity/pull/4128)
- Fix broken Transfer : total account balance [#4127](https://github.com/paritytech/parity/pull/4127)
- Test harness for lightsync [#4109](https://github.com/paritytech/parity/pull/4109)
- Fix call/estimate_gas [#4121](https://github.com/paritytech/parity/pull/4121)
- Fixing decoding ABI with signatures in names [#4125](https://github.com/paritytech/parity/pull/4125)
- Get rid of unsafe code in ethkey, propagate incorrect Secret errors. [#4119](https://github.com/paritytech/parity/pull/4119)
- Basic tests for subscribeToEvents [#4115](https://github.com/paritytech/parity/pull/4115)
- Auto-detect hex encoded bytes in sha3 [#4108](https://github.com/paritytech/parity/pull/4108)
- Use binary chop to estimate gas accurately [#4100](https://github.com/paritytech/parity/pull/4100)
- V1.6 in master [#4113](https://github.com/paritytech/parity/pull/4113)
- Ignore get_price_info test by default. [#4112](https://github.com/paritytech/parity/pull/4112)
- Fix wrong information logging [#4106](https://github.com/paritytech/parity/pull/4106)
- Avoid comms with not-yet-active release update server. [#4111](https://github.com/paritytech/parity/pull/4111)
- Update Transfer logic + Better logging [#4098](https://github.com/paritytech/parity/pull/4098)
- Fix Signer : wrong account on reload [#4104](https://github.com/paritytech/parity/pull/4104)
- Cache registry reverses, completion in address selector [#4066](https://github.com/paritytech/parity/pull/4066)
- Validator/authority contract [#3937](https://github.com/paritytech/parity/pull/3937)
- No reorg limit for ancient blocks [#4099](https://github.com/paritytech/parity/pull/4099)
- Update registration after every write [#4102](https://github.com/paritytech/parity/pull/4102)
- Default to no auto-update. [#4092](https://github.com/paritytech/parity/pull/4092)
- Don't remove out of date local transactions [#4094](https://github.com/paritytech/parity/pull/4094)

## Parity [v1.5.9](https://github.com/paritytech/parity/releases/tag/v1.5.9) (2017-03-11)

First stable release of 1.5.x series. This release enables EIP-161 transaction replay protection for PoA networks.

- Bump to v1.5.9
- Fix auto-updater stable [#4869](https://github.com/paritytech/parity/pull/4869)
- Fixing windows build script
- Bump js-precompiled 20170308-152339
- Force js update
- Stable Engine backports [#4807](https://github.com/paritytech/parity/pull/4807)
  - Calibrate before rejection
  - Change flag name
  - Add eip155
  - Fix build
  - Make network_id default
- Switch js branch to stable
- Bump to v1.5.8

## Parity [v1.5.7](https://github.com/paritytech/parity/releases/tag/v1.5.7) (2017-03-07)

This release resolves a single issue with failing auto-updates.

- Update ETC bootnodes [#4794](https://github.com/paritytech/parity/pull/4794)
- Bump to v1.5.7
- Sane updater [#4658](https://github.com/paritytech/parity/pull/4658)
  - Disable if files can't be moved.
  - Make updater avoid downloading earlier versions.

## Parity [v1.5.6](https://github.com/paritytech/parity/releases/tag/v1.5.6) (2017-03-06)

This release among various stability fixes adds support for a new [Kovan](https://github.com/kovan-testnet/proposal) testnet.

See [full list of changes.](https://github.com/paritytech/parity/compare/v1.5.4...v1.5.6):

- Beta Update comments and reg ABI [#4788](https://github.com/paritytech/parity/pull/4788)
  - Update comments.
  - Fix up new ABI.
- Bump to v1.5.6 in beta [#4786](https://github.com/paritytech/parity/pull/4786)
- Beta Optimize signature for fallback function. ([#4780](https://github.com/paritytech/parity/pull/4780)) [#4784](https://github.com/paritytech/parity/pull/4784)
- Beta Add registrar fields ([#4716](https://github.com/paritytech/parity/pull/4716)) [#4781](https://github.com/paritytech/parity/pull/4781)
- Beta Etherscan links ([#4772](https://github.com/paritytech/parity/pull/4772)) [#4778](https://github.com/paritytech/parity/pull/4778)
  - Etherscan links [#4772](https://github.com/paritytech/parity/pull/4772)
    - Use netVersion to determine external links
    - Update additional isTest references
  - Port tests
  - Update address links
  - Signer accountlink isTest
- Beta Fix invalid props [#4767](https://github.com/paritytech/parity/pull/4767)
- Backporting to beta [#4741](https://github.com/paritytech/parity/pull/4741)
  - New chains [#4720](https://github.com/paritytech/parity/pull/4720)
    - Add Kovan chain.
    - Fix up --testnet.
    - Fix tests.
  - Fix to UglifyJS 2.8.2 to fix app build issues [#4723](https://github.com/paritytech/parity/pull/4723)
  - Update classic bootnodes, ref #4717 [#4735](https://github.com/paritytech/parity/pull/4735)
  - Allow failure docker beta
  - Adjust pruning history default to 64 [#4709](https://github.com/paritytech/parity/pull/4709)
  - Backporting from master
    - Update docker-build.sh
    - Update gitlab.ci
    - Fix docker hub build
    - Update gitlab
    - Docker beta-release->latest
    - Add registry.
    - Add info on forks.
    - Fixed spec file
  - Support both V1 & V2 DataChanged events in registry [#4734](https://github.com/paritytech/parity/pull/4734)
    - Add info on forks.
    - Add new registry ABI
    - Import registry2 & fix exports
    - Select ABI based on code hash
    - Render new event types (owner not available)
    - New registry.
    - Rename old chain.
    - Fix test.
    - Another fix.
    - Finish rename.
  - Fixed fonts URLs [#4579](https://github.com/paritytech/parity/pull/4579)
  - Fix Token Reg Dapp issues in Firefox [#4489](https://github.com/paritytech/parity/pull/4489)
    - Fix overflow issues in Firefox [#4348](https://github.com/paritytech/parity/issues/4348)
    - Fix wrong Promise inferance
    - Revert "Add new Componennt for Token Images [#4496](https://github.com/paritytech/parity/issues/4496)"
    - Add new Componennt for Token Images [#4496](https://github.com/paritytech/parity/issues/4496)
  - Add StackEventListener [#4745](https://github.com/paritytech/parity/pull/4745)
  - Update testnet detection [#4746](https://github.com/paritytech/parity/pull/4746)
  - Fix Account Selection in Signer [#4744](https://github.com/paritytech/parity/pull/4744)
    - Can pass FormattedMessage to Input (eg. Status // RPC Enabled)
    - Simple fixed-width fix for Accoutn Selection in Parity Signer
- Beta backports [#4763](https://github.com/paritytech/parity/pull/4763)
  - Https://mkr-market -> https://oasisdex.com [#4701](https://github.com/paritytech/parity/pull/4701)
  - Wallet s/delete/forget/ [#4741](https://github.com/paritytech/parity/pull/4741)
- Update classic bootnodes [#4735](https://github.com/paritytech/parity/pull/4735)
- Engine backports [#4718](https://github.com/paritytech/parity/pull/4718)
  - Custom dev presets
  - Add registrar field
  - Use constructor for dev registrar
  - Fix test
- Beta Adjust pruning history default to 64 [#4709](https://github.com/paritytech/parity/pull/4709)
- Bump to v1.5.5

## Parity [v1.5.4](https://github.com/paritytech/parity/releases/tag/v1.5.4) (2017-02-23)

A couple of issue fixed in this release:

- Parity now allows uncles headers to have timestamp set to arbitrary future value.
- Importing keys from geth is now working again.

Changes:

- Beta Fix Geth account import [#4643](https://github.com/paritytech/parity/pull/4643)
  - Fix Geth import - actually pass addresses through
  - Fix geth accounts not displayed
  - Port saving of returned addresses (master MobX, beta state)
  - Log result -> importGethAccounts
- Beta Backporting ([#4633](https://github.com/paritytech/parity/pull/4633)) [#4640](https://github.com/paritytech/parity/pull/4640)
  - Tweak some checks.
  - Fixed build and added a difficulty test
  - Bump to v1.5.4

## Parity [v1.4.12](https://github.com/paritytech/parity/releases/tag/v1.4.12) (2017-02-22)

This stable release fixes an issue with block uncle validation. Parity now allows uncle headers to have timestamp set to arbitrary future value.

- Stable Backporting ([#4633](https://github.com/paritytech/parity/pull/4633)) [#4642](https://github.com/paritytech/parity/pull/4642)
  - Tweak some checks.
  - Fixed build and added a difficulty test
  - Bump to v1.4.12
- Add missing maxCodeSize [#4585](https://github.com/paritytech/parity/pull/4585)

## Parity [v1.5.3](https://github.com/paritytech/parity/releases/tag/v1.5.3) (2017-02-20)

This is a maintenance release that fixes a number of stability issues. Notably this resolves an issue where Parity would allow a pre EIP-155 transaction into the sealed block.

See [full list of changes](https://github.com/paritytech/parity/compare/v1.5.2...v1.5.3):

- Bump to v1.5.3 [#4611](https://github.com/paritytech/parity/pull/4611)
- Handle invalid ABI retrieved from address_book gracefully ([#4606](https://github.com/paritytech/parity/pull/4606)) [#4610](https://github.com/paritytech/parity/pull/4610)
  - Handle invalid ABI gracefully
  - Also include failed abi in log
- Backporting to beta [#4602](https://github.com/paritytech/parity/pull/4602)
  - Static link for snappy
  - added 3 warpnodes for ropsten ([#4289](https://github.com/paritytech/parity/pull/4289))
  - Fixed indentation
- Validate transaction before adding to the queue [#4600](https://github.com/paritytech/parity/pull/4600)
- Beta backports [#4569](https://github.com/paritytech/parity/pull/4569)
  - Fixing evmbin compilation and added standard build. ([#4561](https://github.com/paritytech/parity/pull/4561))
  - Alias for personal_sendTransaction ([#4554](https://github.com/paritytech/parity/pull/4554))
  - Fix console dapp ([#4544](https://github.com/paritytech/parity/pull/4544))
  - Fixing linting issues. Better support for console as secure app
  - Fixing linting issues
  - Fix no data sent in TxQueue dapp ([#4502](https://github.com/paritytech/parity/pull/4502))
  - Fix wrong PropType req for Embedded Signer
  - Fix wrong data for tx #4499
- Explicitly set seconds to 0 from selector ([#4559](https://github.com/paritytech/parity/pull/4559)) [#4571](https://github.com/paritytech/parity/pull/4571)
  - Explicitly set seconds/milli to 0
  - Use condition time & block setters consistently
  - Fix failing test
  - test for 0 ms & sec
  - It cannot hurt, clone date before setting
  - Prettier date test constants (OCD)
- Remove invalid expectation [#4542](https://github.com/paritytech/parity/pull/4542)
- Skip OOG check for simple transfers [#4558](https://github.com/paritytech/parity/pull/4558) [#4560](https://github.com/paritytech/parity/pull/4560)
 - Skip OOG check for simple transfers [#4558](https://github.com/paritytech/parity/pull/4558)
 - Fix failing test

## Parity [v1.4.11](https://github.com/paritytech/parity/releases/tag/v1.4.11) (2017-02-17)

This release corrects the Ropsten chain specification file.

- Bump to v1.4.11 [#4587](https://github.com/paritytech/parity/pull/4587)
- Fixing etherscan price parsing ([#4202](https://github.com/paritytech/parity/pull/4202)) [#4209](https://github.com/paritytech/parity/pull/4209)
 - Fixing etherscan price parsing
 - Handling all errors
- Removed pdbs
- Add missing maxCodeSize [#4585](https://github.com/paritytech/parity/pull/4585)

## Parity [v1.5.2](https://github.com/paritytech/parity/releases/tag/v1.5.2) (2017-02-08)

This release brings a few stability fixes along with a feature that allows queuing transactions that are activated and send out on selected date or block number.
- Debian packages have been updated to require `libssl1.0.0` for better compatibility.
- eth_sign (and parity_postSign) used to return concatenated r ++ s ++ v with v being 0 or 1. it now agrees with geth as v ++ r ++ s with v being 27 or 28.

Parity Wallet
- Accounts & ShapeShift integration now displays QR code for scanning from mobile wallets
- Dapp integration now allows for the selection of available accounts and the setting of the default account
- Transaction creation now allows for the selection of future blocks or timestamps after which the transaction is released

Parity Extension
- First release of the Parity Extension, allowing for Parity integration from web-based dapps

See [full list of changes](https://github.com/paritytech/parity/compare/v1.5.0...v1.5.2):
- Work with string numbers in contract (Fixes #4472) ([#4478](https://github.com/paritytech/parity/pull/4478)) [#4480](https://github.com/paritytech/parity/pull/4480)
- Eth_sign improvements backport [#4473](https://github.com/paritytech/parity/pull/4473)
  - Fix postsign ([#4347](https://github.com/paritytech/parity/pull/4347))
  - Fix whitespace.
  - Fix post sign.
  - Fix message.
  - Fix tests.
  - Rest of the problems.
  - All hail the linter and its omniscience.
  - ...and its divine omniscience.
  - Grumbles and wording.
  - Make signing compatible with geth. ([#4468](https://github.com/paritytech/parity/pull/4468))
- Sort gas price corpus when hitting genesis [#4471](https://github.com/paritytech/parity/pull/4471)
- Wallet dev chain fix [#4466](https://github.com/paritytech/parity/pull/4466)
- Fixing histogram again [#4464](https://github.com/paritytech/parity/pull/4464)
- Beta backports [#4462](https://github.com/paritytech/parity/pull/4462)
  - Support HTML5-routed dapps ([#4173](https://github.com/paritytech/parity/pull/4173))
  - Fix compilation on latest nightly
  - Updating precompiled
- Fix Portal scrolling getting stuck [#4456](https://github.com/paritytech/parity/pull/4456)
  - Fix Portal scrolling getting stuck
  - DappCard container flex
  - Container height to 100%
- Fix AccountCard stretch to 100% [#4451](https://github.com/paritytech/parity/pull/4451)
- Fix wrong output format of peers ([#4270](https://github.com/paritytech/parity/pull/4270)) [#4442](https://github.com/paritytech/parity/pull/4442)
  - Fix wrong output format of peers
  - Add outPeer tests
- Opening extension page without inline installation [#4441](https://github.com/paritytech/parity/pull/4441)
  - Open popup without attempting inline
  - Cater for all .web3.site addresses
- Fix svg extension image webpack inlining [#4437](https://github.com/paritytech/parity/pull/4437)
- Backporting to beta [#4434](https://github.com/paritytech/parity/pull/4434)
  - Bump to v1.5.2
  - Fix eth_sign/parity_postSign ([#4432](https://github.com/paritytech/parity/pull/4432))
  - Fix dispatch for signing.
  - Remove console log
  - Fix signing & tests.
- Returning default account as coinbase [#4431](https://github.com/paritytech/parity/pull/4431)
  - Returning first address as coinbase
  - Allowing sender alteration in signer
  - Adding default account RPC
- UI updates for 1.5.1 [#4429](https://github.com/paritytech/parity/pull/4429)
  - S/Delete Contract/Forget Contract/ ([#4237](https://github.com/paritytech/parity/pull/4237))
  - Adjust the location of the signer snippet ([#4155](https://github.com/paritytech/parity/pull/4155))
  - Additional building-block UI components ([#4239](https://github.com/paritytech/parity/pull/4239))
  - Currency WIP
  - Expand tests
  - Pass className
  - Add QrCode
  - Export new components in ~/ui
  - S/this.props.netSymbol/netSymbol/
  - Fix import case
  - Ui/SectionList component ([#4292](https://github.com/paritytech/parity/pull/4292))
  - Array chunking utility
  - Add SectionList component
  - Add TODOs to indicate possible future work
  - Add missing overlay style (as used in dapps at present)
  - Add a Playground for the UI Components ([#4301](https://github.com/paritytech/parity/pull/4301))
  - Playground // WIP
  - Linting
  - Add Examples with code
  - CSS Linting
  - Linting
  - Add Connected Currency Symbol
  - 2015-2017
  - Added `renderSymbol` tests
  - PR grumbles
  - Add Eth and Btc QRCode examples
  - 2015-2017
  - Add tests for playground
  - Fixing tests
  - Split Dapp icon into ui/DappIcon ([#4308](https://github.com/paritytech/parity/pull/4308))
  - Add QrCode & Copy to ShapeShift ([#4322](https://github.com/paritytech/parity/pull/4322))
  - Extract CopyIcon to ~/ui/Icons
  - Add copy & QrCode address
  - Default size 4
  - Add bitcoin: link
  - Use protocol links applicable to coin exchanged
  - Remove .only
  - Display QrCode for accounts, addresses & contracts ([#4329](https://github.com/paritytech/parity/pull/4329))
  - Allow Portal to be used as top-level modal ([#4338](https://github.com/paritytech/parity/pull/4338))
  - Portal
  - Allow Portal to be used in as both top-level and popover
  - Modal/popover variable naming
  - Export Portal in ~/ui
  - Properly handle optional onKeyDown
  - Add simple Playground Example
  - Add proper event listener to Portal ([#4359](https://github.com/paritytech/parity/pull/4359))
  - Display AccountCard name via IdentityName ([#4235](https://github.com/paritytech/parity/pull/4235))
  - Fix signing ([#4363](https://github.com/paritytech/parity/pull/4363))
  - Dapp Account Selection & Defaults ([#4355](https://github.com/paritytech/parity/pull/4355))
  - Add parity_defaultAccount RPC (with subscription) ([#4383](https://github.com/paritytech/parity/pull/4383))
  - Default Account selector in Signer overlay ([#4375](https://github.com/paritytech/parity/pull/4375))
  - Typo, fixes #4271 ([#4391](https://github.com/paritytech/parity/pull/4391))
  - Fix ParityBar account selection overflows ([#4405](https://github.com/paritytech/parity/pull/4405))
  - Available Dapp selection alignment with Permissions (Portal) ([#4374](https://github.com/paritytech/parity/pull/4374))
  - Registry dapp: make lookup use lower case ([#4409](https://github.com/paritytech/parity/pull/4409))
  - Dapps use defaultAccount instead of own selectors ([#4386](https://github.com/paritytech/parity/pull/4386))
  - Poll for defaultAccount to update dapp & overlay subscriptions ([#4417](https://github.com/paritytech/parity/pull/4417))
  - Poll for defaultAccount (Fixes #4413)
  - Fix nextTimeout on catch
  - Store timers
  - Re-enable default updates on change detection
  - Add block & timestamp conditions to Signer ([#4411](https://github.com/paritytech/parity/pull/4411))
  - Extension installation overlay ([#4423](https://github.com/paritytech/parity/pull/4423))
  - Extension installation overlay
  - Pr gumbles
  - Spelling
  - Update Chrome URL
  - Fix for non-included jsonrpc
  - Extend Portal component (as per Modal) [#4392](https://github.com/paritytech/parity/pull/4392)
- Transaction timestamp condition [#4427](https://github.com/paritytech/parity/pull/4427)
- Fixing embedded bar not closing in chrome extension [#4421](https://github.com/paritytech/parity/pull/4421)
- Backporting to beta [#4418](https://github.com/paritytech/parity/pull/4418)
  - Bump to 1.5.1
  - Disable notifications ([#4243](https://github.com/paritytech/parity/pull/4243))
  - Fix wrong token handling ([#4254](https://github.com/paritytech/parity/pull/4254))
  - Fixing wrong token displayed
  - Linting
  - Revert filtering out
  - Revert the revert
  - Don't panic on uknown git commit hash ([#4231](https://github.com/paritytech/parity/pull/4231))
  - Additional logs for own transactions ([#4278](https://github.com/paritytech/parity/pull/4278))
  - Integration with zgp whitelist contract ([#4215](https://github.com/paritytech/parity/pull/4215))
  - Zgp-transactions checker
  - Polishing
  - Rename + refactor
  - Refuse-service-transactions cl option
  - Fixed tests compilation
  - Renaming signAndSendTransaction to sendTransaction ([#4351](https://github.com/paritytech/parity/pull/4351))
  - Fixed deadlock in external_url ([#4354](https://github.com/paritytech/parity/pull/4354))
  - Fixing web3 in console ([#4382](https://github.com/paritytech/parity/pull/4382))
  - Fixing estimate gas in case histogram is not available ([#4387](https://github.com/paritytech/parity/pull/4387))
  - Restarting fetch client every now and then ([#4399](https://github.com/paritytech/parity/pull/4399))
- Embeddable ParityBar ([#4222](https://github.com/paritytech/parity/pull/4222)) [#4287](https://github.com/paritytech/parity/pull/4287)
  - Embeddable ParityBar
  - Replacing storage with store
  - Fixing  references.
  - Addressing style issues
  - Supporting parity background

## Parity [v1.5.0: "Nativity"](https://github.com/paritytech/parity/releases/tag/v1.5.0) (2017-01-19)

Major feature release including _Tendermint_ consensus engine, _Multisig wallet_ support, _badge/certification_ UI integration and _automatic updates_.

Directories:

- New XDG-informed Parity data directory structure. Base dir (`--base-path` or `-d`) that defaulted to `$HOME/.parity` is changed to:
  - `/Users/You/AppData/Roaming/Parity/Ethereum` on Windows
  - `/Users/you/Library/Application Support/io.parity.ethereum` on MacOS
  - `/home/you/.local/share/parity` on Linux/Unix
- Keys are now stored in chain-specific directories . On first run of 1.5, all keys will be moved into the key's directory of the chain you run. You'll need to move the wallet files between directories manually if you wish to split them between testnet/mainnet.
- `--db-path` option now controls the path just for the databases, not for keys (`--keys-path`) or dapps (`--dapps-path`).

Basics:

- Version tracking, consensus-protection, hypervised auto-updating:
  - Parity will ensure syncing is paused if its version cannot support an upcoming hard-fork (disable with `--no-consensus`).
  - Parity will automatically download the latest version and may be updated through Parity Wallet (disable with `--no-download`)
  - Parity can automatically update and seamlessly restart to later versions in the same release track (enable with `--auto-update=all` or `--auto-update=critical`).
  - Parity hypervisor will automatically run the latest version (disable with `--force-direct`).
- Fat database; to enable, sync the chain with the option `--fat-db`.
  - Accounts and storage entries can be enumerated.
  - Chain state can be exported to JSON for analysis with `parity export state`.
- CLI and config options renamed: all variants of `--signer` are renamed to `--ui`.
- Log files are appended by default rather than truncated (useful for daemon deployments).

Parity Wallet:

- Multisig wallet support: "New Wallet" button in the "Accounts" section allows you to create a new multisig wallet or import an existing one.
- Solidity compiler: "Develop Contract" button in the "Contracts" section allows you to write, edit, compile and deploy contracts.
- SMS & e-mail verification: Accounts can now be certified as verified using Parity's SMS and e-Mail verification/registration oracle.
- Badge/certification integration: The `BadgeReg` contract can be used to deploy additional certifications.
- Local transaction propagation tracking: "TxQueue Viewer" in the "Applications" section allows you to track and resubmit previously sent transactions.
- Contract executions can now have gas and gas-price configured.
- Signer can now alter the gas and gas-price of transactions at password-entry.
- The deprecated Chrome "Signer" extension is now incompatible.

[Proof of Authority](https://github.com/paritytech/parity/wiki/Proof-of-Authority-Chains):

- Authority Round consensus engine: `engine: authorityRound {...}`; this is a high-performance Proof-of-Authority consensus engine. It is not BFT under normal circumstances (however the `--force-sealing` flag can be used to ensure consensus even with Byzantine nodes).
- Tendermint Engine: `engine: tendermint {...}`; this is an experimental Proof-of-Authority consensus engine. BFT up to one third of the authorities and falling back to delayed finalization chain ordering (50% fault tolerant).
- Generic seal JSON spec includes engine-specific types (`seal: { generic: { rlp: "0x..." } }` becomes `seal: { authority_round { step: 0, signature: "0x..." } }`.
- To set a node as authority either `--engine-signer ADDRESS` should be used with `--password` or `parity_setEngineSigner(address, password)` RPC should be called. Unlocking the account permanently or using `--author` is now unnecessary.
- Set of authorities can now be specified using a [list or a contract](https://github.com/paritytech/parity/wiki/Consensus-Engines#validator-engines).

Chains:

- Dev chain: `--chain=dev`; instant seal engine (no mining needed). Great for development work.
- Ropsten chain (`--chain=ropsten` or `--chain=testnet`) configures for Ropsten, the new test net.
- Morden chain (`--chain=morden`) changed to "Classic" rules and stays as the Ethereum Classic test net.

RPCs/APIs:

- All JSON-RPC interfaces have strict JSON deserialization - no extra fields are allowed.
- `eth_sign` RPC now hashes given data instead of getting the hash.
- `signer_confirmRequestWithToken`: additional RPC for signing transactions with a rotating token, alleviating the need for keeping an account password in memory.
- `eth_signTransaction` now conforms to the specification, `eth_submitTransaction` is introduced.

Full changes:

- Backporting to beta [#4211](https://github.com/paritytech/parity/pull/4211)
  - JsonRPC bump for IPC fix
  - Fixing etherscan price parsing ([#4202](https://github.com/paritytech/parity/pull/4202))
  - Handling all errors
  - Fixed --base-path on windows ([#4193](https://github.com/paritytech/parity/pull/4193))
  - Add support for optional args with default text
  - Fixing minimal transaction queue price ([#4204](https://github.com/paritytech/parity/pull/4204))
  - Fixing tests
  - verification: add mainnet BadgeReg ids ([#4190](https://github.com/paritytech/parity/pull/4190))
  - verification: fetch contracts by name
  - verification: better wording
  - typo
  - reregistered badges
  - Console now has admin ([#4220](https://github.com/paritytech/parity/pull/4220))
  - Fixes [#4210](https://github.com/paritytech/parity/pull/4210)
  - Non-secure for DappReg ([#4216](https://github.com/paritytech/parity/pull/4216))
- Backporting to beta [#4203](https://github.com/paritytech/parity/pull/4203)
  - Minor typo to ensure it updates only when synced. ([#4188](https://github.com/paritytech/parity/pull/4188))
  - Updater fixes ([#4196](https://github.com/paritytech/parity/pull/4196))
  - Minor typo to ensure it updates only when synced.
  - Fix deadlock.
  - Skip unneeded arg in making list.
  - Allow auto-restart even when not running an update.
  - Fix trace.
  - Update update info on each loop.
  - Fix build.
  - Shutdown all sockets
  - Remove superfluous use.
  - Poll for upgrades as part of global status (long) ([#4197](https://github.com/paritytech/parity/pull/4197))
  - Fix path
  - Prevent duplicate incoming connections ([#4180](https://github.com/paritytech/parity/pull/4180))
- Gas_limit for blocks, mined by Parity will be divisible by 37 ([#4154](https://github.com/paritytech/parity/pull/4154)) [#4176](https://github.com/paritytech/parity/pull/4176)
  - gas_limit for new blocks will divide evenly by 13
  - increased PARITY_GAS_LIMIT_DETERMINANT to 37
  - separate method for marking mined block
  - debug_asserts(gas_limit within protocol range)
  - round_block_gas_limit method is now static
  - made round_block_gas_limit free-function
  - multiplier->multiple
- Backporting to beta [#4175](https://github.com/paritytech/parity/pull/4175)
  - verification: check if server is running ([#4140](https://github.com/paritytech/parity/pull/4140))
  - verification: check if server is running
  - See also ethcore/email-verification#67c6466 and ethcore/sms-verification#a585e42.
  - verification: show in the UI if server is running
  - verification: code style ✨, more i18n
  - fix i18n key
  - Optimized hash lookups ([#4144](https://github.com/paritytech/parity/pull/4144))
  - Optimize hash comparison
  - Use libc
  - Ropsten fork detection ([#4163](https://github.com/paritytech/parity/pull/4163))
  - Stop flickering + added loader in AddressSelector ([#4149](https://github.com/paritytech/parity/pull/4149))
  - Stop UI flickering + added loader to AddressSelector [#4103](https://github.com/paritytech/parity/pull/4103)
  - PR Grumbles
  - Add a password strength component ([#4153](https://github.com/paritytech/parity/pull/4153))