Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
- Return 0 instead of error with out of gas on estimate_gas
- Fix stuff up.
- Another estimate gas fix.
- Alter balance to maximum possible rather than GP=0.
- Only increase to amount strictly necessary.
- Get rid of unsafe code in ethkey, propagate incorrect Secret errors. ([#4119](https://github.com/paritytech/parity/pull/4119))
- Implementing secret
- Fixing tests
- Refactor VoteCollector ([#4101](https://github.com/paritytech/parity/pull/4101))
- dir
- simple validator list
- stub validator contract
- make the engine hold Weak<Client> instead of IoChannel
- validator set factory
- register weak client with ValidatorContract
- check chain security
- add address array to generator
- register provider contract
- update validator set on notify
- add validator contract spec
- simple list test
- split update and contract test
- contract change
- use client in tendermint
- fix deadlock
- step duration in params
- adapt tendermint tests
- add storage fields to test spec
- constructor spec
- execute under wrong address
- create under correct address
- revert
- validator contract constructor
- move genesis block lookup
- add removal ability to contract
- validator contract adding validators
- fix basic authority
- validator changing test
- more docs
- update sync tests
- remove env_logger
- another env_logger
- cameltoe
- hold EngineClient instead of Client
- return error on misbehaviour
- nicer return
- sprinkle docs
- Reenable mainnet update server. ([#4137](https://github.com/paritytech/parity/pull/4137))
- basic tests for subscribeToEvents ([#4115](https://github.com/paritytech/parity/pull/4115))
- subscribeToEvent fixtures ✅
- subscribeToEvent tests ✅
- temporarily skip failing test ([#4138](https://github.com/paritytech/parity/pull/4138))
- Improvements and optimisations to estimate_gas ([#4142](https://github.com/paritytech/parity/pull/4142))
- Return 0 instead of error with out of gas on estimate_gas
- Fix stuff up.
- Another estimate gas fix.
- Alter balance to maximum possible rather than GP=0.
- Only increase to amount strictly necessary.
- Improvements and optimisations to estimate_gas.
- Introduce proper error type
- Avoid building costly traces
- Fix tests.
- Actually fix testsActually fix tests
- Use estimateGas error (as per updated implementation) ([#4131](https://github.com/paritytech/parity/pull/4131))
- EXCEPTION_ERROR as per #4142
- Better error log reporting & handling ([#4128](https://github.com/paritytech/parity/pull/4128))
- Don't pop-up notifications after network switch ([#4076](https://github.com/paritytech/parity/pull/4076))
- Better notifications
- Don't pollute with notifs if switched networks
- Better connection close/open events / No more notifs on change network
- PR Grumbles
- Add close and open events to HTTP // Add tests
- Fix tests
- WIP Signer Fix
- Fix Signer // Better reconnection handling
- PR Grumbles
- PR Grumbles
- Fixes wrong fetching of balances + Notifications
- Secure API WIP
- Updated Secure API Connection + Status
- Linting
- Updated Secure API Logic
- Proper handling of token updates // Fixing poping notifications
- PR Grumbles
- Fixing tests
- Trim spaces from InputAddress ([#4126](https://github.com/paritytech/parity/pull/4126))
- Trim spaces for addresses
- onSubmit has only value, not event
- onSubmit (again)
- Length check on trimmed value
- Remove bindActionCreators({}, dispatch) (empty) ([#4135](https://github.com/paritytech/parity/pull/4135))
- Backporting to beta [#4118](https://github.com/paritytech/parity/pull/4118)
- Ignore get_price_info test by default. ([#4112](https://github.com/paritytech/parity/pull/4112))
- Auto-detect hex encoded bytes in sha3 ([#4108](https://github.com/paritytech/parity/pull/4108))
- Using types/isHex
- Removing unused imports
- Use binary chop to estimate gas accurately ([#4100](https://github.com/paritytech/parity/pull/4100))
- Initial sketch.
- Building.
- Fix a few things.
- Fix issue, add tracing.
- Address grumbles
- Raise upper limit if needed
- Fix test.
- Fixing decoding API with signatures in names ([#4125](https://github.com/paritytech/parity/pull/4125))
- Fix call/estimate_gas ([#4121](https://github.com/paritytech/parity/pull/4121))
- Return 0 instead of error with out of gas on estimate_gas
- Fix stuff up.
- Current release: 1.3 -> 1.4 [#4183](https://github.com/paritytech/parity/pull/4183)
- Fix rebroadcast panic [#4084](https://github.com/paritytech/parity/pull/4084)
- Use shallow-only rendering in all tests [#4087](https://github.com/paritytech/parity/pull/4087)
- Sending transactions in chunks [#4089](https://github.com/paritytech/parity/pull/4089)
- Move to new auto-update server. [#4091](https://github.com/paritytech/parity/pull/4091)
- Fixing compilation without dapps. [#4088](https://github.com/paritytech/parity/pull/4088)
- Fix balances update [#4077](https://github.com/paritytech/parity/pull/4077)
- Key derivation in Worker [#4071](https://github.com/paritytech/parity/pull/4071)
- Display contract block creation [#4069](https://github.com/paritytech/parity/pull/4069)
- Improving logs for transactions sync and disable re-broadcasting while syncing [#4065](https://github.com/paritytech/parity/pull/4065)
- Passwords are valid by default [#4075](https://github.com/paritytech/parity/pull/4075)
- Show Origin label to events table [#4073](https://github.com/paritytech/parity/pull/4073)
- Fix tags not working [#4070](https://github.com/paritytech/parity/pull/4070)
- Zero-alloc trie lookups [#3998](https://github.com/paritytech/parity/pull/3998)
- Opening local dapp [#4041](https://github.com/paritytech/parity/pull/4041)
- Bringing back `js-sha3` to fix in-browser signing [#4063](https://github.com/paritytech/parity/pull/4063)
- Fix wrong transaction input for contract deployments [#4052](https://github.com/paritytech/parity/pull/4052)
- Re-broadcast transactions to few random peers on each new block. [#4054](https://github.com/paritytech/parity/pull/4054)
- Removing old transactions from the queue [#4046](https://github.com/paritytech/parity/pull/4046)
- Add block rewards to more Engines [#4055](https://github.com/paritytech/parity/pull/4055)
- Return old trie values on insert and remove [#4053](https://github.com/paritytech/parity/pull/4053)
- Let users open urls from dapps view [#4042](https://github.com/paritytech/parity/pull/4042)
- Util/validation update [#4051](https://github.com/paritytech/parity/pull/4051)
- Convert ShapeShift modal to store [#4035](https://github.com/paritytech/parity/pull/4035)
- Using local path on Windows [#4017](https://github.com/paritytech/parity/pull/4017)
- Fixing minGasLimit > ceil limit mining issue [#4018](https://github.com/paritytech/parity/pull/4018)
- Naive light client synchronization [#3892](https://github.com/paritytech/parity/pull/3892)
- Starting on homestead shows reload snackbar [#4043](https://github.com/paritytech/parity/pull/4043)
- Show contract parameters in MethodDecoding [#4024](https://github.com/paritytech/parity/pull/4024)
- UI component updates [#4010](https://github.com/paritytech/parity/pull/4010)
- Account view updates [#4008](https://github.com/paritytech/parity/pull/4008)
- Better error messages for PoA chains [#4034](https://github.com/paritytech/parity/pull/4034)
- Make some spec fields optional [#4019](https://github.com/paritytech/parity/pull/4019)
- Basic account type [#4021](https://github.com/paritytech/parity/pull/4021)
- Fix wallet in main net [#4038](https://github.com/paritytech/parity/pull/4038)
- Removing orphaned Cargo.toml [#4032](https://github.com/paritytech/parity/pull/4032)
- Address selector: support reverse lookup [#4033](https://github.com/paritytech/parity/pull/4033)
- Only fetch App when necessary [#4023](https://github.com/paritytech/parity/pull/4023)
- Connection UI cleanups & tests for prior PR [#4020](https://github.com/paritytech/parity/pull/4020)
- Unsubscribe error on ShapeShift modal close [#4005](https://github.com/paritytech/parity/pull/4005)
- Add ownership checks the Registry dApp [#4001](https://github.com/paritytech/parity/pull/4001)
- Refresh balances of contacts & contracts when syncing [#4022](https://github.com/paritytech/parity/pull/4022)
- Show message on new chain [#4016](https://github.com/paritytech/parity/pull/4016)
- Use TypedInputs in Contracts view [#4015](https://github.com/paritytech/parity/pull/4015)
- Fix focus on Modal [#4014](https://github.com/paritytech/parity/pull/4014)
- Fix newError noops when not bound to dispacher [#4013](https://github.com/paritytech/parity/pull/4013)
- Parse testnet chain as ropsten [#4004](https://github.com/paritytech/parity/pull/4004)
- Work on Portal Style [#4003](https://github.com/paritytech/parity/pull/4003)
- Make Wallet first-class citizens [#3990](https://github.com/paritytech/parity/pull/3990)
- Don't slice non-existent tags [#4000](https://github.com/paritytech/parity/pull/4000)
- Update dev dependencies and make Webpack less verbose [#3997](https://github.com/paritytech/parity/pull/3997)
- Correct log index in transaction receipt [#3995](https://github.com/paritytech/parity/pull/3995)
- Add Email and Registry lookups to Address Selector [#3992](https://github.com/paritytech/parity/pull/3992)
- Remove node journal: dead code [#3994](https://github.com/paritytech/parity/pull/3994)
- Cleanup AddContract with store [#3981](https://github.com/paritytech/parity/pull/3981)
- Store for EditPassword Modal [#3979](https://github.com/paritytech/parity/pull/3979)
- Additional fetch tests [#3983](https://github.com/paritytech/parity/pull/3983)
- Owning views of blockchain data [#3982](https://github.com/paritytech/parity/pull/3982)
- Make test network generic over peer type [#3974](https://github.com/paritytech/parity/pull/3974)
- Fetch tests (first batch) [#3977](https://github.com/paritytech/parity/pull/3977)
- Fetch certifiers only when needed [#3978](https://github.com/paritytech/parity/pull/3978)
- Visible accounts for dapps (default whitelist) [#3898](https://github.com/paritytech/parity/pull/3898)
- Remove some old (unused/duplicate) files [#3975](https://github.com/paritytech/parity/pull/3975)
- Port `try` macro to new `?` operator. [#3962](https://github.com/paritytech/parity/pull/3962)
- Small UI fixes [#3966](https://github.com/paritytech/parity/pull/3966)
- Fix wrong use of Icons [#3973](https://github.com/paritytech/parity/pull/3973)
- Updating dependencies [#3968](https://github.com/paritytech/parity/pull/3968)
- Web Based Dapps [#3956](https://github.com/paritytech/parity/pull/3956)
- Contract query: render false as false [#3971](https://github.com/paritytech/parity/pull/3971)
- Email verification: add Terms of Service [#3970](https://github.com/paritytech/parity/pull/3970)
- Fix method decoding [#3967](https://github.com/paritytech/parity/pull/3967)
- Store for EditMeta modal [#3959](https://github.com/paritytech/parity/pull/3959)
- Registry dapp: cleanup, support reverse entries [#3933](https://github.com/paritytech/parity/pull/3933)
- New Address Selector Component [#3829](https://github.com/paritytech/parity/pull/3829)
- Limiting accounts returned by parity_accountInfo [#3931](https://github.com/paritytech/parity/pull/3931)
- Unknown block error for RPC [#3965](https://github.com/paritytech/parity/pull/3965)
- Remove unused fields in informant [#3963](https://github.com/paritytech/parity/pull/3963)
- Allow contract constructors in chain spec [#3932](https://github.com/paritytech/parity/pull/3932)
- Sync reorg up to history size [#3874](https://github.com/paritytech/parity/pull/3874)
- Rising the limit for fetch [#3964](https://github.com/paritytech/parity/pull/3964)
- Bring integer arithmetic up to crates.io [#3943](https://github.com/paritytech/parity/pull/3943)
- Eslint rule for block curlies [#3955](https://github.com/paritytech/parity/pull/3955)
- Gas exception warnings on deployment [#3938](https://github.com/paritytech/parity/pull/3938)
- Move verification store into modal [#3951](https://github.com/paritytech/parity/pull/3951)
- Allow setting of minBlock on sending [#3921](https://github.com/paritytech/parity/pull/3921)
- Allow empty address [#3961](https://github.com/paritytech/parity/pull/3961)
- Fix default import [#3960](https://github.com/paritytech/parity/pull/3960)
- Display 0x00..00 as null [#3950](https://github.com/paritytech/parity/pull/3950)
- Global Fetch Service [#3915](https://github.com/paritytech/parity/pull/3915)
- Update babel-loader for WebPack 2.2-rc [#3953](https://github.com/paritytech/parity/pull/3953)
- Fix Webpack build [#3946](https://github.com/paritytech/parity/pull/3946)
- Fix manual input token [#3945](https://github.com/paritytech/parity/pull/3945)
- Update Webpack [#3952](https://github.com/paritytech/parity/pull/3952)
- Add missing Ethcore -> Parity headers [#3948](https://github.com/paritytech/parity/pull/3948)
- Code example: do start before register_protocol [#3947](https://github.com/paritytech/parity/pull/3947)
- Set CHAIN_ID for Classic [#3934](https://github.com/paritytech/parity/pull/3934)
- Fixed compile error. [#3940](https://github.com/paritytech/parity/pull/3940)
- Fix dapps not loading [#3935](https://github.com/paritytech/parity/pull/3935)
- Fix Secure API hangs [#3927](https://github.com/paritytech/parity/pull/3927)
- Parity_chainStatus RPC for block gap info [#3899](https://github.com/paritytech/parity/pull/3899)
- Custom attribute for binary serialization [#3922](https://github.com/paritytech/parity/pull/3922)
- Split intermediate stage into two. [#3926](https://github.com/paritytech/parity/pull/3926)
- Move release-registering to intermediate stage. [#3920](https://github.com/paritytech/parity/pull/3920)
- Blocktime format rounding [#3894](https://github.com/paritytech/parity/pull/3894)
- Ignore dapps_policy.json [#3919](https://github.com/paritytech/parity/pull/3919)
- Fixing Contract Development [#3912](https://github.com/paritytech/parity/pull/3912)
- Use rhash for non-native CI platforms and submit build. [#3911](https://github.com/paritytech/parity/pull/3911)
- Remove -Zorbit=off from rustflags on windows [#3907](https://github.com/paritytech/parity/pull/3907)
- Fixed upgrading keys on the first run [#3904](https://github.com/paritytech/parity/pull/3904)
- Fix deadlock in queue drop [#3903](https://github.com/paritytech/parity/pull/3903)
- Require only simpler methods on Provider [#3897](https://github.com/paritytech/parity/pull/3897)
- Fix grammar ("you try" -> "you tried" + article) [#3902](https://github.com/paritytech/parity/pull/3902)
- Remove light server capability temporarily [#3872](https://github.com/paritytech/parity/pull/3872)
- Allow retry for future blocks [#3896](https://github.com/paritytech/parity/pull/3896)
- Consistent engine and seal names [#3895](https://github.com/paritytech/parity/pull/3895)
- Update email certification ABI [#3893](https://github.com/paritytech/parity/pull/3893)
- Remove existence & length checks on passwords & phrases [#3854](https://github.com/paritytech/parity/pull/3854)
- Refresh certifications automatically [#3878](https://github.com/paritytech/parity/pull/3878)
- Fix Wallet Settings Modal [#3856](https://github.com/paritytech/parity/pull/3856)
- Fix difficulty adjustment. [#3884](https://github.com/paritytech/parity/pull/3884)
- Final fixups for updater [#3883](https://github.com/paritytech/parity/pull/3883)
- Attempt to fix windows CI. [#3882](https://github.com/paritytech/parity/pull/3882)
- Fixing racy test [#3881](https://github.com/paritytech/parity/pull/3881)
- Fix updater permissions [#3880](https://github.com/paritytech/parity/pull/3880)
- Delayed transactions [#3865](https://github.com/paritytech/parity/pull/3865)
- Don't log auth token [#3853](https://github.com/paritytech/parity/pull/3853)
- Loading default config from default path [#3875](https://github.com/paritytech/parity/pull/3875)
- New paths [#3877](https://github.com/paritytech/parity/pull/3877)
- Update tests, gitlabci [#3876](https://github.com/paritytech/parity/pull/3876)
- Base directory option [#3868](https://github.com/paritytech/parity/pull/3868)
- Auto-updating [#3505](https://github.com/paritytech/parity/pull/3505)
- Fix naming collision [#3873](https://github.com/paritytech/parity/pull/3873)
- Get rid of unecessary redirection while fetching content [#3858](https://github.com/paritytech/parity/pull/3858)
- Fix verification stores [#3864](https://github.com/paritytech/parity/pull/3864)
- Store subscriptionId, align with main subscription model [#3863](https://github.com/paritytech/parity/pull/3863)
- Additional RPCs for dapps accounts management [#3792](https://github.com/paritytech/parity/pull/3792)
- Add Ws Json rpc client and command line utils (take 2) [#3830](https://github.com/paritytech/parity/pull/3830)
- Fix typo in method call (broken contract interface) [#3862](https://github.com/paritytech/parity/pull/3862)
- Fix flaky test [#3860](https://github.com/paritytech/parity/pull/3860)
- Converting traces API to AutoArgs [#3844](https://github.com/paritytech/parity/pull/3844)
- Get certifications from BadgeReg, show them in accounts overview [#3768](https://github.com/paritytech/parity/pull/3768)
- New directory structure [#3828](https://github.com/paritytech/parity/pull/3828)
- First run: skip account creation if they already have accounts [#3827](https://github.com/paritytech/parity/pull/3827)
- Tendermint seal [#3857](https://github.com/paritytech/parity/pull/3857)
- Tendermint Engine [#3759](https://github.com/paritytech/parity/pull/3759)
- Expand lint to catch css issues [#3852](https://github.com/paritytech/parity/pull/3852)
- Inject exports both partiy & web3 [#3851](https://github.com/paritytech/parity/pull/3851)
- Let Webpack talk again [#3848](https://github.com/paritytech/parity/pull/3848)
- AuthorityRound seal and simplify Generic seal Spec [#3843](https://github.com/paritytech/parity/pull/3843)
- Signing transactions with rotating token [#3691](https://github.com/paritytech/parity/pull/3691)
- Bump dev chain [#3835](https://github.com/paritytech/parity/pull/3835)
- Spelling [#3839](https://github.com/paritytech/parity/pull/3839)
- Email verification [#3766](https://github.com/paritytech/parity/pull/3766)
- Network configuration for Ethereum Classic [#3812](https://github.com/paritytech/parity/pull/3812)
- Using jsonrpc-macros [#3831](https://github.com/paritytech/parity/pull/3831)
- Fixed bool dropdown in contract execution [#3823](https://github.com/paritytech/parity/pull/3823)
- Avoid broadcasting transactions to peers that send them [#3796](https://github.com/paritytech/parity/pull/3796)
- Eth_sign RPC now hashes given data instead of getting the hash [#3800](https://github.com/paritytech/parity/pull/3800)
- Add store for MethodDecoding [#3821](https://github.com/paritytech/parity/pull/3821)
- Add store for AddAddress [#3819](https://github.com/paritytech/parity/pull/3819)
- Fix React-Router in i18n locale change [#3815](https://github.com/paritytech/parity/pull/3815)
- Cache fetched Dapps [#3804](https://github.com/paritytech/parity/pull/3804)
- Authors & homepage => Parity [#3818](https://github.com/paritytech/parity/pull/3818)
- Rename Ethcore -> Parity Technologies [#3817](https://github.com/paritytech/parity/pull/3817)
- Allow editing of gasPrice & gas in Signer [#3777](https://github.com/paritytech/parity/pull/3777)
- I18n string dictionaries [#3532](https://github.com/paritytech/parity/pull/3532)
- Fix padding in App [#3813](https://github.com/paritytech/parity/pull/3813)
- Light server improvements and protocol adjustments [#3801](https://github.com/paritytech/parity/pull/3801)
- Tolerate errors in user_defaults [#3810](https://github.com/paritytech/parity/pull/3810)
- Block: enforce gas limit falls within engine bounds [#3809](https://github.com/paritytech/parity/pull/3809)
- Target Babel to latest Chrome Versions in dev [#3806](https://github.com/paritytech/parity/pull/3806)
- Lowercase npm packages [#3807](https://github.com/paritytech/parity/pull/3807)
- Extended publishing of libraries to npm [#3786](https://github.com/paritytech/parity/pull/3786)
- Several Fixes to the UI [#3799](https://github.com/paritytech/parity/pull/3799)
- Remove "s [#3805](https://github.com/paritytech/parity/pull/3805)
- Extract CSS to file in production builds [#3783](https://github.com/paritytech/parity/pull/3783)
- Notify user on transaction received [#3782](https://github.com/paritytech/parity/pull/3782)
- Removing all old entries from transaction queue [#3772](https://github.com/paritytech/parity/pull/3772)
- Status page updates [#3774](https://github.com/paritytech/parity/pull/3774)
- Allow modifications of gas when confirming in signer [#3798](https://github.com/paritytech/parity/pull/3798)
- Network connectivity fixes [#3794](https://github.com/paritytech/parity/pull/3794)
- Make *ID names consistent with std Rust (Id) [#3781](https://github.com/paritytech/parity/pull/3781)
- Update CI builds [#3780](https://github.com/paritytech/parity/pull/3780)
- Update AuthorityRound tests to new spec [#3790](https://github.com/paritytech/parity/pull/3790)
- Fixes to the Wallet UI [#3787](https://github.com/paritytech/parity/pull/3787)
- Add support for wallets without getOwner() interface [#3779](https://github.com/paritytech/parity/pull/3779)
- Update Material-UI [#3785](https://github.com/paritytech/parity/pull/3785)
- Fixes error in Transfer modal [#3788](https://github.com/paritytech/parity/pull/3788)
- LES Part 3: Event handlers and handling responses [#3755](https://github.com/paritytech/parity/pull/3755)
- Basic UI rendering tests [#3743](https://github.com/paritytech/parity/pull/3743)
- Network: process packets only after connection handler finishes [#3776](https://github.com/paritytech/parity/pull/3776)
- AuthorityRound network simulation test [#3778](https://github.com/paritytech/parity/pull/3778)
- GasPrice selection for contract execution [#3770](https://github.com/paritytech/parity/pull/3770)
- Reject existing transactions [#3762](https://github.com/paritytech/parity/pull/3762)
- Allow autoRemove from api.subscribe based on callback return values [#3752](https://github.com/paritytech/parity/pull/3752)
- Replace misplaced & with && in gitlab-ci.yml [#3753](https://github.com/paritytech/parity/pull/3753)
- Lower gas usage for creating a Multisig Wallet [#3773](https://github.com/paritytech/parity/pull/3773)
- Added IO service explicit stop [#3761](https://github.com/paritytech/parity/pull/3761)
- Be lenient around invalid owners map [#3764](https://github.com/paritytech/parity/pull/3764)
- GasEditor component [#3750](https://github.com/paritytech/parity/pull/3750)
- Cleanups [#3742](https://github.com/paritytech/parity/pull/3742)
- Update babel, fix CI build due to breaking changes [#3754](https://github.com/paritytech/parity/pull/3754)
- Small fixes to contract [#3751](https://github.com/paritytech/parity/pull/3751)
- Make engine hold AccountProvider [#3725](https://github.com/paritytech/parity/pull/3725)
- Properly delete addresses/contracts in addressbook [#3739](https://github.com/paritytech/parity/pull/3739)
- Display Wallet Owners Icons in Accounts list [#3741](https://github.com/paritytech/parity/pull/3741)
- Edit Multisig Wallet settings [#3740](https://github.com/paritytech/parity/pull/3740)
- Replace build directory completely [#3748](https://github.com/paritytech/parity/pull/3748)
- Add existing release files before merge [#3747](https://github.com/paritytech/parity/pull/3747)
- Release script back to using fetch/merge [#3746](https://github.com/paritytech/parity/pull/3746)
- Update with -X only for merge [#3745](https://github.com/paritytech/parity/pull/3745)
- Give accounts precedence over address_book entries [#3732](https://github.com/paritytech/parity/pull/3732)
- Enable Panic=abort [#3423](https://github.com/paritytech/parity/pull/3423)
- Cleanups on js-precompiled [#3738](https://github.com/paritytech/parity/pull/3738)
- Add parity_removeAddress RPC [#3735](https://github.com/paritytech/parity/pull/3735)
- Fix up the transaction JSON serialisation for RPC. [#3633](https://github.com/paritytech/parity/pull/3633)
- Queue: CLI for auto-scaling and num verifiers [#3709](https://github.com/paritytech/parity/pull/3709)
- Add functionalities to multi-sig wallet [#3729](https://github.com/paritytech/parity/pull/3729)
- PropTypes as function call [#3731](https://github.com/paritytech/parity/pull/3731)
- Unify proptypes in util/proptypes.js [#3728](https://github.com/paritytech/parity/pull/3728)
- Bump jsonrpc-ipc-server to fix windows build [#3730](https://github.com/paritytech/parity/pull/3730)
- LES Part 2 [#3527](https://github.com/paritytech/parity/pull/3527)
- First draft of the MultiSig Wallet [#3700](https://github.com/paritytech/parity/pull/3700)
- Engine block ordering [#3719](https://github.com/paritytech/parity/pull/3719)
- Use fdlimit utility crate from crates.io [#3716](https://github.com/paritytech/parity/pull/3716)
- Move decoding for contract deployment logic earlier [#3714](https://github.com/paritytech/parity/pull/3714)
- Possible fix for queue drop deadlock [#3702](https://github.com/paritytech/parity/pull/3702)
- Encode networkid as a u64. [#3713](https://github.com/paritytech/parity/pull/3713)
- Use valid RLP in generic genesis seal spec [#3717](https://github.com/paritytech/parity/pull/3717)
- Update JS dependencies [#3710](https://github.com/paritytech/parity/pull/3710)
- Use Webpack Aliases [#3711](https://github.com/paritytech/parity/pull/3711)
- Dapps-specific accounts [#3627](https://github.com/paritytech/parity/pull/3627)
- Signer method parameter decoding & destination info [#3671](https://github.com/paritytech/parity/pull/3671)
- Remove invalid slice test [#3712](https://github.com/paritytech/parity/pull/3712)
- React library update [#3704](https://github.com/paritytech/parity/pull/3704)
- New Loading Component for the UI [#3707](https://github.com/paritytech/parity/pull/3707)
- Refactoring Transfer Modal [#3705](https://github.com/paritytech/parity/pull/3705)
- Fix extra scrollbars in dapps [#3706](https://github.com/paritytech/parity/pull/3706)
- Indent state tests [#3431](https://github.com/paritytech/parity/pull/3431)
- Filter null transactions for display (not available on node) [#3698](https://github.com/paritytech/parity/pull/3698)
- Move recovery phrase print button [#3697](https://github.com/paritytech/parity/pull/3697)
- Fix padding bottom needed after fixed status [#3701](https://github.com/paritytech/parity/pull/3701)
- Don't share the snapshot while downloading old blocks [#3695](https://github.com/paritytech/parity/pull/3695)
- Button to print recovery phrase [#3694](https://github.com/paritytech/parity/pull/3694)
- Fix status bar to bottom of the screen [#3692](https://github.com/paritytech/parity/pull/3692)
- Splitting serialization of signTransaction and sendTransaction confirmation requests [#3642](https://github.com/paritytech/parity/pull/3642)
- Implement basic badges/certifications/flair [#3665](https://github.com/paritytech/parity/pull/3665)
- Simplify Container title rendering [#3680](https://github.com/paritytech/parity/pull/3680)
- Update loading splash to fit in with l&f [#3685](https://github.com/paritytech/parity/pull/3685)
- Safari UI fixes [#3678](https://github.com/paritytech/parity/pull/3678)
- Remove strict mode for DappReg (work-around for package upgrade) [#3681](https://github.com/paritytech/parity/pull/3681)
- Bumping clippy [#3654](https://github.com/paritytech/parity/pull/3654)
- Return of the Fat DB [#3636](https://github.com/paritytech/parity/pull/3636)
- Invalidate blocks from future [#3652](https://github.com/paritytech/parity/pull/3652)
- Make Modal always scrollable [#3667](https://github.com/paritytech/parity/pull/3667)
- Display local/completed transactions [#3630](https://github.com/paritytech/parity/pull/3630)
- Added build-essential dep to dockerfiles [#3666](https://github.com/paritytech/parity/pull/3666)
- Strict config parsing (uknown keys are rejected) [#3663](https://github.com/paritytech/parity/pull/3663)
- Strict deserialization [#3662](https://github.com/paritytech/parity/pull/3662)
- Disable peer if no common block found [#3655](https://github.com/paritytech/parity/pull/3655)
- Show snackbar on password change [#3661](https://github.com/paritytech/parity/pull/3661)
- Bring back PV62 support [#3660](https://github.com/paritytech/parity/pull/3660)
- Unlock expecting quantity [#3659](https://github.com/paritytech/parity/pull/3659)
- Update Webpack => v2 [#3643](https://github.com/paritytech/parity/pull/3643)
- Update SMS verification [#3579](https://github.com/paritytech/parity/pull/3579)
- Simplify tx confirmations display [#3559](https://github.com/paritytech/parity/pull/3559)
- Fixes overflow in Signer tx data [#3657](https://github.com/paritytech/parity/pull/3657)
- Fixed tab bar not updating [#3653](https://github.com/paritytech/parity/pull/3653)
- Set default min tx price to $0.0025 [#3617](https://github.com/paritytech/parity/pull/3617)
- Use accountsInfo instead of eth_accounts for first check [#3618](https://github.com/paritytech/parity/pull/3618)
- Fix Copy to Clipboard Snackbar [#3619](https://github.com/paritytech/parity/pull/3619)
- Manually add \r to Windows phrases pre 1.4.5 [#3615](https://github.com/paritytech/parity/pull/3615)
- Signer layouts to flexbox [#3600](https://github.com/paritytech/parity/pull/3600)
- Fixing wrong tokens type in Redux store [#3621](https://github.com/paritytech/parity/pull/3621)
- Add dappreg link to apps list [#3568](https://github.com/paritytech/parity/pull/3568)
- Smarter balance fetching [#3605](https://github.com/paritytech/parity/pull/3605)
- Dapp iframe allow forms, allow target=_blank [#3597](https://github.com/paritytech/parity/pull/3597)
- Align copy button to input field [#3604](https://github.com/paritytech/parity/pull/3604)
- Appending logs by default [#3609](https://github.com/paritytech/parity/pull/3609)
- Update test, fix number. [#3612](https://github.com/paritytech/parity/pull/3612)
- Fixing phrases generated on windows [#3614](https://github.com/paritytech/parity/pull/3614)
- Check for network ID for live/test matching [#3602](https://github.com/paritytech/parity/pull/3602)
- Always insert traces for genesis. [#3603](https://github.com/paritytech/parity/pull/3603)
- Real deleting accounts [#3540](https://github.com/paritytech/parity/pull/3540)
- Trim whitespace from input recovery phrase [#3599](https://github.com/paritytech/parity/pull/3599)
- Fix local tx requests [#3589](https://github.com/paritytech/parity/pull/3589)
- Fix CPU usage when idle [#3592](https://github.com/paritytech/parity/pull/3592)
- Don't fetch balances on every new block if syncing [#3591](https://github.com/paritytech/parity/pull/3591)
- Work around WS in UI [#3587](https://github.com/paritytech/parity/pull/3587)
- CLI option to disable ancient block downloading [#3573](https://github.com/paritytech/parity/pull/3573)
- Move Signer balance queries to store for component-wide re-use [#3531](https://github.com/paritytech/parity/pull/3531)
- Fix wrong method name in `contract.js` [#3580](https://github.com/paritytech/parity/pull/3580)
- Smarter Tokens fetching [#3546](https://github.com/paritytech/parity/pull/3546)
- Fix panic on importing own invalid transaction [#3550](https://github.com/paritytech/parity/pull/3550)
- Use an adaptive number of threads in the verification queue [#2445](https://github.com/paritytech/parity/pull/2445)
- Faster UI - React Tweaks [#3555](https://github.com/paritytech/parity/pull/3555)
- Send value & contract execute gas limit warnings [#3512](https://github.com/paritytech/parity/pull/3512)
- Add TxQueue visibility specifier (not added between merges) [#3566](https://github.com/paritytech/parity/pull/3566)
- DappRegistry [#3405](https://github.com/paritytech/parity/pull/3405)
- Import account message [#3552](https://github.com/paritytech/parity/pull/3552)
- --testnet set to ropsten [#3551](https://github.com/paritytech/parity/pull/3551)
- Fix flaky test [#3547](https://github.com/paritytech/parity/pull/3547)
- Sms verification code style [#3564](https://github.com/paritytech/parity/pull/3564)
- [Registry] Clear input and working buttons [#3563](https://github.com/paritytech/parity/pull/3563)
- Fix peers not displaying [#3561](https://github.com/paritytech/parity/pull/3561)
- New registry contract address for ropsten [#3549](https://github.com/paritytech/parity/pull/3549)
- Use contract Registry fee, not a hard-coded value [#3554](https://github.com/paritytech/parity/pull/3554)
- Don't query chain in Signer, use Redux isTest [#3524](https://github.com/paritytech/parity/pull/3524)
- Moving fetching of hash-addressed dapps/content to separate crate. [#3543](https://github.com/paritytech/parity/pull/3543)
- Ropsten network [#3539](https://github.com/paritytech/parity/pull/3539)
- Add simple one-line installer to README.md [#3534](https://github.com/paritytech/parity/pull/3534)
- Propagations & local transactions tracking [#3491](https://github.com/paritytech/parity/pull/3491)
- Correct format of eth_signTransaction [#3503](https://github.com/paritytech/parity/pull/3503)
- ABI can be empty and auto-fill contract name [#3518](https://github.com/paritytech/parity/pull/3518)
- Fix versions for NPM [#3516](https://github.com/paritytech/parity/pull/3516)
- Better GHH event display & tracking [#3498](https://github.com/paritytech/parity/pull/3498)
- Dapp section & visibility changes [#3438](https://github.com/paritytech/parity/pull/3438)
- Fix parity.js badly built [#3526](https://github.com/paritytech/parity/pull/3526)
- Updated the european warp bootnode addresses [#3528](https://github.com/paritytech/parity/pull/3528)
- Limit sync reorg to 20 blocks [#3519](https://github.com/paritytech/parity/pull/3519)
- Revert "Limit sync reorganization to 20 blocks" [#3517](https://github.com/paritytech/parity/pull/3517)
- Check transaction signature when adding to the queue [#3508](https://github.com/paritytech/parity/pull/3508)
- Limit sync reorganization to 20 blocks [#3509](https://github.com/paritytech/parity/pull/3509)
- Keep track of block gasLimit [#3506](https://github.com/paritytech/parity/pull/3506)
- Smarter Status Polling [#3504](https://github.com/paritytech/parity/pull/3504)
- Handle solc combined output [#3496](https://github.com/paritytech/parity/pull/3496)
- Wallet names shouldn't use UUID [#3481](https://github.com/paritytech/parity/pull/3481)
- Make parity.js usable by Node and Browser [#3475](https://github.com/paritytech/parity/pull/3475)
- Sms verification modal [#3336](https://github.com/paritytech/parity/pull/3336)
- Sudo -c is not supported on Mac [#3488](https://github.com/paritytech/parity/pull/3488)
- Add trace_{call, rawTransaction, replayTransaction} [#3492](https://github.com/paritytech/parity/pull/3492)
- Check for possible panics in scrypt key derivation [#3490](https://github.com/paritytech/parity/pull/3490)
- Sync traffic optimization [#3477](https://github.com/paritytech/parity/pull/3477)
- Wallet files shouldn't give away the address [#3378](https://github.com/paritytech/parity/pull/3378)
- Fixing tests, fixing refreshing precompiled [#3483](https://github.com/paritytech/parity/pull/3483)
- Better Errors Snackbar in UI [#3478](https://github.com/paritytech/parity/pull/3478)
- Handle Signer Rejection [#3476](https://github.com/paritytech/parity/pull/3476)
- Enhanced MethodDecoding in Transactions list [#3454](https://github.com/paritytech/parity/pull/3454)
- Signer new-token generates a link and opens browser [#3379](https://github.com/paritytech/parity/pull/3379)
- Make tokenreg dapp fast again [#3474](https://github.com/paritytech/parity/pull/3474)
- Build fix [#3470](https://github.com/paritytech/parity/pull/3470)
- Display deployed Basic token addresses [#3447](https://github.com/paritytech/parity/pull/3447)
- Export accounts as JSON or CSV [#2866](https://github.com/paritytech/parity/pull/2866)
- Set HF2 block number [#3466](https://github.com/paritytech/parity/pull/3466)
- Better word list for secret phrase generation [#3461](https://github.com/paritytech/parity/pull/3461)
- Drop spec when no longer useful [#3460](https://github.com/paritytech/parity/pull/3460)
- Add fallback check in ABI validation [#3459](https://github.com/paritytech/parity/pull/3459)
- Save sort order in LocalStorage [#3457](https://github.com/paritytech/parity/pull/3457)
- Adds onPaste event to Inputs [#3456](https://github.com/paritytech/parity/pull/3456)
- Update signer to take care of text overflows [#3450](https://github.com/paritytech/parity/pull/3450)
- Authority round consensus engine [#3426](https://github.com/paritytech/parity/pull/3426)
- Fix transfer token decimal calculation [#3445](https://github.com/paritytech/parity/pull/3445)
- Restrict max code size for EIP-150 and after. [#3363](https://github.com/paritytech/parity/pull/3363)
- Contract queries should display IdentityIcons [#3453](https://github.com/paritytech/parity/pull/3453)
- Use Babel in vendor when needed [#3451](https://github.com/paritytech/parity/pull/3451)
- Use signature of functions instead of names [#3448](https://github.com/paritytech/parity/pull/3448)
- Handle contract constructor inputs [#3430](https://github.com/paritytech/parity/pull/3430)
- Use Contract owner for unregistering Token [#3446](https://github.com/paritytech/parity/pull/3446)
- Create directories only if feature is enabled [#3442](https://github.com/paritytech/parity/pull/3442)
- Import AddresBook from exported JSON [#3433](https://github.com/paritytech/parity/pull/3433)
- Scrollable accounts in autocomplete [#3427](https://github.com/paritytech/parity/pull/3427)
- Bump ws-rs [#3428](https://github.com/paritytech/parity/pull/3428)
- Swap TokenReg dapp from base to decimals [#3425](https://github.com/paritytech/parity/pull/3425)
- Change beta builds to stable on Travis [#3421](https://github.com/paritytech/parity/pull/3421)
- Refactor copy to clipboard functionality [#3420](https://github.com/paritytech/parity/pull/3420)
- Dev chain [#3385](https://github.com/paritytech/parity/pull/3385)
- Fetch known code from the database during restoration [#3377](https://github.com/paritytech/parity/pull/3377)
- Fixing benches [#3422](https://github.com/paritytech/parity/pull/3422)
- Fix chainspec storage field. [#3406](https://github.com/paritytech/parity/pull/3406)
- Abort snapshot restoration faster [#3356](https://github.com/paritytech/parity/pull/3356)
- Remove addresses, display non-refundable warning on registries [#3403](https://github.com/paritytech/parity/pull/3403)
- Don't auto-unsubscribe when subscriber callback throws [#3401](https://github.com/paritytech/parity/pull/3401)
- Fix dapp account selection [#3399](https://github.com/paritytech/parity/pull/3399)
- Fix travis build: remove unused import [#3381](https://github.com/paritytech/parity/pull/3381)
- Optimize memory footprint [#3376](https://github.com/paritytech/parity/pull/3376)
- Fixing parsing passwords from file [#3367](https://github.com/paritytech/parity/pull/3367)
- Remove some unwraps from parity/helpers [#3364](https://github.com/paritytech/parity/pull/3364)
- Load external, builtin & local apps in parallel [#3340](https://github.com/paritytech/parity/pull/3340)
- Solidity Compiler in UI [#3279](https://github.com/paritytech/parity/pull/3279)
- Determine real-time HTTP connected status [#3335](https://github.com/paritytech/parity/pull/3335)
- Clarify error message about disabled Signer [#3359](https://github.com/paritytech/parity/pull/3359)
- Cater for home.parity hostname in dappsUrl [#3341](https://github.com/paritytech/parity/pull/3341)
- Make sure Token is ECR20 [#3347](https://github.com/paritytech/parity/pull/3347)
- [TokenReg dApp] Fixed Unregister for Contract Owner only [#3346](https://github.com/paritytech/parity/pull/3346)
- LES Part 1 [#3322](https://github.com/paritytech/parity/pull/3322)
- Make transactions load [#3348](https://github.com/paritytech/parity/pull/3348)
- Manual bump package.json [#3345](https://github.com/paritytech/parity/pull/3345)
- Windows app and installer fixes [#3338](https://github.com/paritytech/parity/pull/3338)
- Fix JS API test [#3342](https://github.com/paritytech/parity/pull/3342)
- Git pre-push checks for UI [#3072](https://github.com/paritytech/parity/pull/3072)
- Disarm the HF and add more bootnodes [#3323](https://github.com/paritytech/parity/pull/3323)
- Default contract type on UI [#3310](https://github.com/paritytech/parity/pull/3310)
- In-browser signing support [#3231](https://github.com/paritytech/parity/pull/3231)
- Handle redirects from /api/content on manifest.json gracefully [#3315](https://github.com/paritytech/parity/pull/3315)
- Dapps interface RPC [#3311](https://github.com/paritytech/parity/pull/3311)
- Additional snapshot sync checks [#3318](https://github.com/paritytech/parity/pull/3318)
- Fix spurious signer tests failures [#3312](https://github.com/paritytech/parity/pull/3312)
- Fix signer token updates [#3302](https://github.com/paritytech/parity/pull/3302)
- Update account recovery phrase hint [#3316](https://github.com/paritytech/parity/pull/3316)
- New transaction tests [#3313](https://github.com/paritytech/parity/pull/3313)
- Remove 127.0.0.1 references [#3303](https://github.com/paritytech/parity/pull/3303)
- Fix for opening UI after installation on mac [#3300](https://github.com/paritytech/parity/pull/3300)
- Fixed uncle query [#3299](https://github.com/paritytech/parity/pull/3299)
- Updated blance display with max decimals [#3266](https://github.com/paritytech/parity/pull/3266)
- Refactoring Signer to auto_args + eth_signTransaction [#3261](https://github.com/paritytech/parity/pull/3261)
- Fix typo [#3298](https://github.com/paritytech/parity/pull/3298)
- Change to more common focused spelling [#3264](https://github.com/paritytech/parity/pull/3264)
- Manual bump of package.json (recovery) [#3295](https://github.com/paritytech/parity/pull/3295)
- Fix initial token generation [#3289](https://github.com/paritytech/parity/pull/3289)
- Fixed IO service shutdown [#3286](https://github.com/paritytech/parity/pull/3286)
- Autostart setting for windows tray app [#3269](https://github.com/paritytech/parity/pull/3269)
- Fixes for 1.4 [#3260](https://github.com/paritytech/parity/pull/3260)
- Build tray app for x64 [#3255](https://github.com/paritytech/parity/pull/3255)
- Add secure flag back [#3244](https://github.com/paritytech/parity/pull/3244)
- Verify chunk hashes in cli restore [#3241](https://github.com/paritytech/parity/pull/3241)
- Load network apps manifests as contentHash (no coding) [#3235](https://github.com/paritytech/parity/pull/3235)
- Fixed some typos [#3236](https://github.com/paritytech/parity/pull/3236)
- Rename cli and config options signer->ui [#3232](https://github.com/paritytech/parity/pull/3232)
- Add store for dapps state [#3211](https://github.com/paritytech/parity/pull/3211)
- Fix first-time tagging of contracts [#3222](https://github.com/paritytech/parity/pull/3222)
- Fix /parity-utils/{web3,parity}.js webpack errors [#3221](https://github.com/paritytech/parity/pull/3221)
- Improve 'invalid raw key' error msg [#3219](https://github.com/paritytech/parity/pull/3219)
- Cleaning up polluted namespaces [#3143](https://github.com/paritytech/parity/pull/3143)
- Set passive mode for first run only [#3214](https://github.com/paritytech/parity/pull/3214)
- Parity configuration settings, i.e. mode [#3212](https://github.com/paritytech/parity/pull/3212)
- Ethash unsafety cleanup [#3210](https://github.com/paritytech/parity/pull/3210)
- Mode improvements for UI [#3109](https://github.com/paritytech/parity/pull/3109)
- Delay bomb for Classic (ECIP-1010) [#3179](https://github.com/paritytech/parity/pull/3179)
- Use ethcore_dappsPort when constructing URLs [#3139](https://github.com/paritytech/parity/pull/3139)
- Add copy address button to Contract deploy [#3199](https://github.com/paritytech/parity/pull/3199)
- Expose Parity api as window.secureApi [#3207](https://github.com/paritytech/parity/pull/3207)
- Add error for sendRawTransaction and estimateGas [#3194](https://github.com/paritytech/parity/pull/3194)
- Exposing engine extra info in block RPC [#3169](https://github.com/paritytech/parity/pull/3169)
- V1.5 [#3195](https://github.com/paritytech/parity/pull/3195)
- Remove dapp logos (GHH points to dapp-assets) [#3192](https://github.com/paritytech/parity/pull/3192)
- Fixing possible race in ethcore_hashContent [#3191](https://github.com/paritytech/parity/pull/3191)
- Bump package.json version (1.5 is master) [#3193](https://github.com/paritytech/parity/pull/3193)
## Parity [v1.4.10](https://github.com/paritytech/parity/releases/tag/v1.4.10) (2017-01-18)
Parity 1.4.10 is a first stable release of 1.4.x series. It includes a few minor networking fixes.
- Gas_limit for blocks, mined by Parity will be divisible by 37 (#4154) [#4179](https://github.com/paritytech/parity/pull/4179)
- 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
- Backporing to 1.4.10-stable [#4110](https://github.com/paritytech/parity/pull/4110)
- Bump to v1.4.10
- No reorg limit for ancient blocks
- Update registration after every write
## Parity [v1.4.9](https://github.com/paritytech/parity/releases/tag/v1.4.9) (2017-01-09)
This fixes an issue introduced in 1.4.8 that causes Parity to panic on propagating transactions in some cases.
- v1.4.9 in beta [#4097](https://github.com/paritytech/parity/pull/4097)
- Bump to v1.4.9
- Disable armv6 build
- beta Fix queue deadlock [#4095](https://github.com/paritytech/parity/pull/4095)
- Fix rebroadcast panic beta [#4085](https://github.com/paritytech/parity/pull/4085)
- fix compile
- fix backport
- clean up old method
- remove unnecessary reference
- simplify
- Fixing 'simplify'
## Parity [v1.4.8](https://github.com/paritytech/parity/releases/tag/v1.4.8) (2017-01-06)
Ethereum Classic Hard Fork ready release containing various bugfixes:
- Fix for excessive transactions propagation
- Fix for inconsistent `logIndex` in transaction receipts
See [full list of changes](https://github.com/paritytech/parity/compare/v1.4.7...v1.4.8):
- Beta backports [#4067](https://github.com/paritytech/parity/pull/4067)
- Re-broadcast transactions to few random peers on each new block. (#4054) [#4061](https://github.com/paritytech/parity/pull/4061)
- Tolerate errors in user_defaults [#4060](https://github.com/paritytech/parity/pull/4060)
- ETC Config change backport [#4056](https://github.com/paritytech/parity/pull/4056)
- [beta] Avoid re-broadcasting transactions on each block [#4047](https://github.com/paritytech/parity/pull/4047)
- Beta Backports [#4012](https://github.com/paritytech/parity/pull/4012)
## Parity [v1.4.7](https://github.com/paritytech/parity/releases/tag/v1.4.7) (2016-12-27)
This maintenance release fixes an issue with sync falling behind occasionally.
- Backporting to beta [#3980](https://github.com/paritytech/parity/pull/3980)
- [beta] enforce gas limit falls within engine bounds [#3816](https://github.com/paritytech/parity/pull/3816)
## Parity [v1.3.15](https://github.com/paritytech/parity/releases/tag/v1.3.15) (2016-12-10)
This patch release fixes an issue with syncing on the Ropsten test network.
- Backporting to stable [#3793](https://github.com/paritytech/parity/pull/3793)
## Parity [v1.4.6](https://github.com/paritytech/parity/releases/tag/v1.4.6) (2016-12-05)
This patch release fixes an issue with syncing on the Ropsten test network.
- Backporting to beta [#3718](https://github.com/paritytech/parity/pull/3718)
- [beta] scrollable contract deploy & execute modals [#3656](https://github.com/paritytech/parity/pull/3656)
## Parity [v1.4.5](https://github.com/paritytech/parity/releases/tag/v1.4.5) (2016-11-26)
1.4.5 release fixes a number of issues, notably:
- High CPU usage when idle.
- Key recovery phrases generated on windows now can be imported.
#### Configuration changes
- `--usd-per-tx` is now set to 0.0025 by default.
#### New features
- Support for Ropsten test network is introduced with `--chain=ropsten` or `--testnet`. Morden network is still available via `--chain=morden`
#### Full changes
- [beta] Pin package versions for React [#3628](https://github.com/paritytech/parity/pull/3628)
- Backporting to beta [#3623](https://github.com/paritytech/parity/pull/3623)
- [beta] Ropsten chain for UI [#3622](https://github.com/paritytech/parity/pull/3622)
## Parity [v1.3.14](https://github.com/paritytech/parity/releases/tag/v1.3.14) (2016-11-25)
Parity 1.3.14 fixes a few stability issues and adds support for the Ropsten testnet.
- Backporting to stable [#3616](https://github.com/paritytech/parity/pull/3616)
## Parity [v1.4.4](https://github.com/paritytech/parity/releases/tag/v1.4.4) (2016-11-18)
This is a maintenance release that fixes an issue with EIP-155 transactions being added to the transaction pool. It also improves syncing stability and resolved a number of UI issues.
Full changelog is available [here.](https://github.com/paritytech/parity/commit/3e0d033eaf789cfdf517f4a97effc500f1f9263b)
- [beta] apps typo fix [#3533](https://github.com/paritytech/parity/pull/3533)
- Backporting to beta [#3525](https://github.com/paritytech/parity/pull/3525)
## Parity [v1.3.13](https://github.com/paritytech/parity/releases/tag/v1.3.13) (2016-11-18)
This release fixes an issue with EIP-155 transactions being allowed into the transaction pool.
- [stable] Check tx signatures before adding to the queue. [#3521](https://github.com/paritytech/parity/pull/3521)
- Fix Stable Docker Build [#3479](https://github.com/paritytech/parity/pull/3479)
## Parity [v1.4.3](https://github.com/paritytech/parity/releases/tag/v1.4.3) (2016-11-16)
This release includes memory footprint optimization as well as a few fixes in the UI.
EIP-155/160/161/170 hardfork is enabled at block 2675000 (1885000 for test network).
Full changelog is available [here.](https://github.com/paritytech/parity/compare/v1.4.2...v1.4.3)
- [beta] EIP-170 [#3464](https://github.com/paritytech/parity/pull/3464)
- Backports to beta [#3465](https://github.com/paritytech/parity/pull/3465)
- Backport: additional fields on transaction and receipt [#3463](https://github.com/paritytech/parity/pull/3463)
- v1.4.3 in beta [#3424](https://github.com/paritytech/parity/pull/3424)
## Parity [v1.3.12](https://github.com/paritytech/parity/releases/tag/v1.3.12) (2016-11-16)
This stable release enables EIP-155/160/161/170 hardfork at block 2675000 (1885000 for test network).
- [stable] EIP-170 [#3462](https://github.com/paritytech/parity/pull/3462)
- #3035 Backport to stable [#3441](https://github.com/paritytech/parity/pull/3441)
## Parity [v1.3.11](https://github.com/paritytech/parity/releases/tag/v1.3.11) (2016-11-11)
This is a maintenance release for the stable series to delay the EIP-155/160/161 hard fork transition. **Update from 1.3.10 is mandatory**. It also deprecates and disables the old Parity UI.
- [stable] Disable HF and UI [#3372](https://github.com/paritytech/parity/pull/3372)
- [stable] EIP-155 update with Vitalik's new test vectors (#3166) [#3190](https://github.com/paritytech/parity/pull/3190)
- Backport EIP-150 to stable [#2672](https://github.com/paritytech/parity/pull/2672)
- Create gitlab-ci.yml for stable [#2517](https://github.com/paritytech/parity/pull/2517)
## Parity [v1.4.2](https://github.com/paritytech/parity/releases/tag/v1.4.2) (2016-11-10)
This release fixes a few additional issues:
- Parity now correctly handles external `--dapps-interface` and `--ui-interface` in the UI.
- Crash in `eth_getUncle*` has been fixed.
- macOS installer now includes an uninstall script.
- Security token input UI has been fixed.
- Correct display for tokens with minimum decimals.
And some additional minor changes. Full changelog is [available](https://github.com/paritytech/parity/compare/v1.4.1...v1.4.2)
- Backporting to beta [#3344](https://github.com/paritytech/parity/pull/3344)
- Backporting to beta [#3324](https://github.com/paritytech/parity/pull/3324)
## Parity [v1.4.1](https://github.com/paritytech/parity/releases/tag/v1.4.1) (2016-11-09)
This is a hotfix release to address a couple of issues with 1.4.0:
- UI token is requested instead of being supplied automatically.
- Running with `--geth` results in an error.
- Backporting to beta [#3293](https://github.com/paritytech/parity/pull/3293)
## Parity [v1.4.0](https://github.com/paritytech/parity/releases/tag/v1.4.0) (2016-11-07)
First beta release of the 1.4 series.
This includes the new Parity Wallet and Warp-Sync synchronisation as well as several optimisations and fixes.
- Add secure flag back [#3246](https://github.com/paritytech/parity/pull/3246)
- [BETA] verify chunk hashes in cli restore [#3242](https://github.com/paritytech/parity/pull/3242)
- Backporting to beta [#3239](https://github.com/paritytech/parity/pull/3239)
- UI fixes backporting [#3234](https://github.com/paritytech/parity/pull/3234)
- Backporting to beta [#3229](https://github.com/paritytech/parity/pull/3229)
- Beta branch cleanup [#3226](https://github.com/paritytech/parity/pull/3226)
- [beta] Set passive mode for first run only (#3214) [#3216](https://github.com/paritytech/parity/pull/3216)
- Mode configuration backported to beta [#3213](https://github.com/paritytech/parity/pull/3213)
- Backporting [#3198](https://github.com/paritytech/parity/pull/3198)
- [beta] EIP-155 update with Vitalik's new test vectors (#3166) [#3189](https://github.com/paritytech/parity/pull/3189)
- Backporting to beta [#3176](https://github.com/paritytech/parity/pull/3176)
- parity-ui-precompiled pinned to beta [#3168](https://github.com/paritytech/parity/pull/3168)
- EIP-155 update with Vitalik's new test vectors [#3166](https://github.com/paritytech/parity/pull/3166)
- Push precompiled for beta/stable, npm only master [#3163](https://github.com/paritytech/parity/pull/3163)
- Back to real root after npm publish [#3178](https://github.com/paritytech/parity/pull/3178)
- Remove extra cd js [#3177](https://github.com/paritytech/parity/pull/3177)
- Fixes Gas price selection bug [#3175](https://github.com/paritytech/parity/pull/3175)
- Exposing state root and logsBloom in RPC receipts [#3174](https://github.com/paritytech/parity/pull/3174)
- Exposing v,r,s from transaction signature in RPC [#3172](https://github.com/paritytech/parity/pull/3172)
- Enabling personal RPC over IPC by default [#3165](https://github.com/paritytech/parity/pull/3165)
- Gitlab CI badge [#3164](https://github.com/paritytech/parity/pull/3164)
- Dependencies in README [#3162](https://github.com/paritytech/parity/pull/3162)
- Make the footer a bit less ugly. [#3160](https://github.com/paritytech/parity/pull/3160)
- Linux build case sensitivity fix [#3161](https://github.com/paritytech/parity/pull/3161)
- abbreviated enode, `CopyToClipboard` component [#3131](https://github.com/paritytech/parity/pull/3131)
- EIPs 155, 160, 161 [#2976](https://github.com/paritytech/parity/pull/2976)
- beta reset to 1.4.0 [#3157](https://github.com/paritytech/parity/pull/3157)
- Fix histogram [#3150](https://github.com/paritytech/parity/pull/3150)
- Remove network label from TabBar [#3142](https://github.com/paritytech/parity/pull/3142)
- Speed up unresponsive Contract events & Account transactions [#3145](https://github.com/paritytech/parity/pull/3145)
- Better windows shortcut [#3147](https://github.com/paritytech/parity/pull/3147)
- Redirect content to the same address as requested [#3133](https://github.com/paritytech/parity/pull/3133)
- Fixed peer ping timeout [#3137](https://github.com/paritytech/parity/pull/3137)
- Fix for windows build [#3125](https://github.com/paritytech/parity/pull/3125)
- Fix AddessInput icon position [#3132](https://github.com/paritytech/parity/pull/3132)
- Fixed not scrollable accounts in tokenreg dapp [#3128](https://github.com/paritytech/parity/pull/3128)
- Returning cache headers for network content [#3123](https://github.com/paritytech/parity/pull/3123)
- Optimise contract events display [#3120](https://github.com/paritytech/parity/pull/3120)
- Add basic validation for contract execute values [#3118](https://github.com/paritytech/parity/pull/3118)
- Dapps errors embeddable on signer [#3115](https://github.com/paritytech/parity/pull/3115)
- Use enode RPC in UI [#3108](https://github.com/paritytech/parity/pull/3108)
- Windows tray app [#3103](https://github.com/paritytech/parity/pull/3103)
- Displaying CLI errors on stderr [#3116](https://github.com/paritytech/parity/pull/3116)
- new InputAddressSelect component [#3071](https://github.com/paritytech/parity/pull/3071)
- Bump mio [#3117](https://github.com/paritytech/parity/pull/3117)
- Minor typo fixed. [#3110](https://github.com/paritytech/parity/pull/3110)
- Sort by ETH balance and contract by date [#3107](https://github.com/paritytech/parity/pull/3107)
- Add RPC enode lookup [#3096](https://github.com/paritytech/parity/pull/3096)
- Initializing logger for each command [#3090](https://github.com/paritytech/parity/pull/3090)
- Allow registration of content bundles in GitHubHint [#3094](https://github.com/paritytech/parity/pull/3094)
- Add read-only inputs to UI plus Copy to Clipboard buttons [#3095](https://github.com/paritytech/parity/pull/3095)
- Allow boolean dropdowns for contract deploy [#3077](https://github.com/paritytech/parity/pull/3077)
- Add mac installer files [#2995](https://github.com/paritytech/parity/pull/2995)
- Fixing dapps sorting [#3086](https://github.com/paritytech/parity/pull/3086)
- Add a Gitter chat badge to README.md [#3092](https://github.com/paritytech/parity/pull/3092)
- Fixes webpack HTML loader [#3089](https://github.com/paritytech/parity/pull/3089)
- Redirecting /home to new UI [#3084](https://github.com/paritytech/parity/pull/3084)
- Allow GitHubHint content owner to update url [#3083](https://github.com/paritytech/parity/pull/3083)
- Remove token assets (moved to ethcore/dapps-assets) [#3082](https://github.com/paritytech/parity/pull/3082)
- Goodbye Gavcoin, Hello Gavcoin [#3080](https://github.com/paritytech/parity/pull/3080)
- Load network dapps [#3078](https://github.com/paritytech/parity/pull/3078)
- Swap account phrase input to normal (non-multiline) [#3060](https://github.com/paritytech/parity/pull/3060)
- Fix minor typo in informant [#3056](https://github.com/paritytech/parity/pull/3056)
- Warp sync status display [#3045](https://github.com/paritytech/parity/pull/3045)
- Enhance address input [#3065](https://github.com/paritytech/parity/pull/3065)
- Go to Accounts Page if Tooltips are displayed [#3063](https://github.com/paritytech/parity/pull/3063)
- Change contract Execute bool values & query bool value display [#3024](https://github.com/paritytech/parity/pull/3024)
- Update Parity logo [#3036](https://github.com/paritytech/parity/pull/3036)
- settings: replace background patterns (inline) [#3047](https://github.com/paritytech/parity/pull/3047)
- Multiple line description for dapps [#3058](https://github.com/paritytech/parity/pull/3058)
- Fix status log order [#3062](https://github.com/paritytech/parity/pull/3062)
- Graphical gas price selection [#2898](https://github.com/paritytech/parity/pull/2898)
- [Registry dApp] Actions not available before selecting accounts [#3032](https://github.com/paritytech/parity/pull/3032)
- apply post-consolidation migrations after consolidating [#3020](https://github.com/paritytech/parity/pull/3020)
- fix chain badge padding [#3046](https://github.com/paritytech/parity/pull/3046)
- Don't delete Tags input on blur (eg. tab) [#3044](https://github.com/paritytech/parity/pull/3044)
- Fixing last hashes for ethcall [#3043](https://github.com/paritytech/parity/pull/3043)
- Remove signer icons [#3039](https://github.com/paritytech/parity/pull/3039)
- execute periodic snapshot in new thread [#3029](https://github.com/paritytech/parity/pull/3029)
- fix background of embedded signer [#3026](https://github.com/paritytech/parity/pull/3026)
- registry dapp: fix reducer [#3028](https://github.com/paritytech/parity/pull/3028)
- Replace Execute by Query in contract button [#3031](https://github.com/paritytech/parity/pull/3031)
- Fixing GavCoin dApp overflow issues [#3030](https://github.com/paritytech/parity/pull/3030)
- execute contract function: validate address [#3013](https://github.com/paritytech/parity/pull/3013)
- Align tag inputs with other input boxes [#2965](https://github.com/paritytech/parity/pull/2965)
- Sweep panickers from IO and network [#3018](https://github.com/paritytech/parity/pull/3018)
- Terms & Conditions [#3019](https://github.com/paritytech/parity/pull/3019)
- open column families after reparing db corruption [#3017](https://github.com/paritytech/parity/pull/3017)
- Snapshot sync and block gap info in `eth_syncing` [#2948](https://github.com/paritytech/parity/pull/2948)
- personal_ RPCs to AutoArgs [#3000](https://github.com/paritytech/parity/pull/3000)
- RPCs for mode change [#3002](https://github.com/paritytech/parity/pull/3002)
- Fix a test sensitive to slow execution. [#3014](https://github.com/paritytech/parity/pull/3014)
- Fixes search filtering issues [#3011](https://github.com/paritytech/parity/pull/3011)
- Restart sync if no more peers with snapshots [#3007](https://github.com/paritytech/parity/pull/3007)
- Allow empty/non-existant input arrays for ABIs in contract view [#3001](https://github.com/paritytech/parity/pull/3001)
- Allow operation when no registry is available [#2980](https://github.com/paritytech/parity/pull/2980)
- Make JS lint & test run on Travis [#2894](https://github.com/paritytech/parity/pull/2894)
- Update account dropdowns [#2959](https://github.com/paritytech/parity/pull/2959)
- Modify gas price statistics [#2947](https://github.com/paritytech/parity/pull/2947)
- Fixes pending/mined transactions in registry dApp [#3004](https://github.com/paritytech/parity/pull/3004)
- Prevent connecting to self [#2997](https://github.com/paritytech/parity/pull/2997)
- Disable verbose in gitlab CI [#2999](https://github.com/paritytech/parity/pull/2999)
- Allow warnings in gitlab [#2998](https://github.com/paritytech/parity/pull/2998)
- Fix the brainwallet functionality. [#2994](https://github.com/paritytech/parity/pull/2994)
- Provided gas description update [#2993](https://github.com/paritytech/parity/pull/2993)
- Print messages to stderr [#2991](https://github.com/paritytech/parity/pull/2991)
- Networking and syncing tweaks [#2990](https://github.com/paritytech/parity/pull/2990)
- Allow build warnings [#2985](https://github.com/paritytech/parity/pull/2985)
- Display network status for finished Signer requests [#2983](https://github.com/paritytech/parity/pull/2983)
- Fixed rejecting transactions [#2984](https://github.com/paritytech/parity/pull/2984)
- mio version bump [#2982](https://github.com/paritytech/parity/pull/2982)
- Publish parity.js to npmjs registry [#2978](https://github.com/paritytech/parity/pull/2978)
- Import raw private key [#2945](https://github.com/paritytech/parity/pull/2945)
- refactor etherscan.io links [#2896](https://github.com/paritytech/parity/pull/2896)
- Use separate lock for code cache [#2977](https://github.com/paritytech/parity/pull/2977)
- Add favicon [#2974](https://github.com/paritytech/parity/pull/2974)
- Align password change dialog with create dialog ordering [#2970](https://github.com/paritytech/parity/pull/2970)
- WS bump [#2973](https://github.com/paritytech/parity/pull/2973)
- Discovery performance optimization [#2972](https://github.com/paritytech/parity/pull/2972)
- Pass gas & gasPrice to token transfers [#2964](https://github.com/paritytech/parity/pull/2964)
- Updating ws-rs [#2962](https://github.com/paritytech/parity/pull/2962)
- Run cargo with verbose flag when testing [#2943](https://github.com/paritytech/parity/pull/2943)
- Fixing clippy warnings take two [#2961](https://github.com/paritytech/parity/pull/2961)
- Snapshot sync improvements [#2960](https://github.com/paritytech/parity/pull/2960)
- Gavcoin event display updates [#2956](https://github.com/paritytech/parity/pull/2956)
- Eslint fixes [#2957](https://github.com/paritytech/parity/pull/2957)
- Add import of raw private key RPCs [#2942](https://github.com/paritytech/parity/pull/2942)
- Bring in styling queues from original Gavcoin [#2936](https://github.com/paritytech/parity/pull/2936)
- Validating minimal required gas for a transaction [#2937](https://github.com/paritytech/parity/pull/2937)
- Even more snapshot validity checks [#2935](https://github.com/paritytech/parity/pull/2935)
- Shared code cache [#2921](https://github.com/paritytech/parity/pull/2921)
- Updating bootnodes for ETC [#2938](https://github.com/paritytech/parity/pull/2938)
- More bootnodes [#2926](https://github.com/paritytech/parity/pull/2926)
- Revert hash updates until testable [#2925](https://github.com/paritytech/parity/pull/2925)
- Release.sh verbose output [#2924](https://github.com/paritytech/parity/pull/2924)
- additional release.sh debugging info [#2922](https://github.com/paritytech/parity/pull/2922)
- Pass the js-precompiled commit hash to cargo update [#2920](https://github.com/paritytech/parity/pull/2920)
- Next nonce RPC [#2917](https://github.com/paritytech/parity/pull/2917)
- Get rid of duplicated code in EVM [#2915](https://github.com/paritytech/parity/pull/2915)
- Transaction Queue banning [#2524](https://github.com/paritytech/parity/pull/2524)
- Revert to gas price ordering [#2919](https://github.com/paritytech/parity/pull/2919)
- Personal split [#2879](https://github.com/paritytech/parity/pull/2879)
- Fixing config values for pruning_history [#2918](https://github.com/paritytech/parity/pull/2918)
- Apply pending block details on commit [#2254](https://github.com/paritytech/parity/pull/2254)
- Fixed GetNodeData output [#2892](https://github.com/paritytech/parity/pull/2892)
- New sync protocol ID [#2912](https://github.com/paritytech/parity/pull/2912)
- Clippy bump [#2877](https://github.com/paritytech/parity/pull/2877)
- iconomi token images [#2906](https://github.com/paritytech/parity/pull/2906)
- Fixes too long description and Token balance value in Dapps/Accounts [#2902](https://github.com/paritytech/parity/pull/2902)
- Add missing images for local dapps [#2890](https://github.com/paritytech/parity/pull/2890)
- Fix Webpack, again [#2895](https://github.com/paritytech/parity/pull/2895)
- Enable suicide json test [#2893](https://github.com/paritytech/parity/pull/2893)
- More snapshot fixes and optimizations [#2883](https://github.com/paritytech/parity/pull/2883)
- Fixes CI JS precompiled build [#2886](https://github.com/paritytech/parity/pull/2886)
- Fix empty tags modification [#2884](https://github.com/paritytech/parity/pull/2884)
- Fix up informant. [#2865](https://github.com/paritytech/parity/pull/2865)
- Get rid of MemoryDB denote [#2881](https://github.com/paritytech/parity/pull/2881)
- Add inject to "bundle everything" list [#2871](https://github.com/paritytech/parity/pull/2871)
- Fixes signer and MUI errors throwing [#2876](https://github.com/paritytech/parity/pull/2876)
- Fix failing tests after log parsing updates [#2878](https://github.com/paritytech/parity/pull/2878)
- Sweep some more panics [#2848](https://github.com/paritytech/parity/pull/2848)
- Make GitLab js-precompiled really update Cargo.toml in main repo [#2869](https://github.com/paritytech/parity/pull/2869)
- IPC version bump [#2870](https://github.com/paritytech/parity/pull/2870)
- Snapshot sync fixes and optimizations [#2863](https://github.com/paritytech/parity/pull/2863)
- Add Check and Change Password for an Account [#2861](https://github.com/paritytech/parity/pull/2861)
- Output git fetch/push to log files [#2862](https://github.com/paritytech/parity/pull/2862)
- Align contract event log l&f with transactions [#2812](https://github.com/paritytech/parity/pull/2812)
- Nicer port in use errors [#2859](https://github.com/paritytech/parity/pull/2859)
- Remove personal_* calls from dapps [#2860](https://github.com/paritytech/parity/pull/2860)
- Token sorting, zero-ETH transfer & token decimals [#2805](https://github.com/paritytech/parity/pull/2805)
- Don't fail badly when no transactions in last 100 blocks. [#2856](https://github.com/paritytech/parity/pull/2856)
- Fixing home.parity address for new signer [#2851](https://github.com/paritytech/parity/pull/2851)
- Enabling UI build back [#2853](https://github.com/paritytech/parity/pull/2853)
- Remove eventName in unsubscribe API arguments [#2844](https://github.com/paritytech/parity/pull/2844)
- Don't return empty names as clickable titles [#2809](https://github.com/paritytech/parity/pull/2809)
- Auto-bump js-precompiled on release [#2828](https://github.com/paritytech/parity/pull/2828)
- Remove ethcore::common re-export module [#2792](https://github.com/paritytech/parity/pull/2792)
- Prevent database corruption on OOM [#2832](https://github.com/paritytech/parity/pull/2832)
- Download/Export Addressbook [#2847](https://github.com/paritytech/parity/pull/2847)
- Snapshot and blockchain stability improvements [#2843](https://github.com/paritytech/parity/pull/2843)
- Extended network options [#2845](https://github.com/paritytech/parity/pull/2845)
- fix failing master test build [#2846](https://github.com/paritytech/parity/pull/2846)
- Local dapps embeddable on signer port [#2815](https://github.com/paritytech/parity/pull/2815)
- Trigger accounts/contracts search on search input change [#2838](https://github.com/paritytech/parity/pull/2838)
- Move snapshot sync to a subprotocol [#2820](https://github.com/paritytech/parity/pull/2820)
- fix node log being reversed [#2839](https://github.com/paritytech/parity/pull/2839)
- Fixes currency symbol font size in Shapeshift modal [#2840](https://github.com/paritytech/parity/pull/2840)
- Disable personal APIs by default for security reasons [#2834](https://github.com/paritytech/parity/pull/2834)
- Clear cached content [#2833](https://github.com/paritytech/parity/pull/2833)
- Add ethcore_[dapps|signer]Port APIs [#2821](https://github.com/paritytech/parity/pull/2821)
- CLI option to skip seal check when importing [#2842](https://github.com/paritytech/parity/pull/2842)
- Fix case error in Dapps import [#2837](https://github.com/paritytech/parity/pull/2837)
- Double click on address in account detail view should select it [#2841](https://github.com/paritytech/parity/pull/2841)
- Bump js-precompiled to 20161022-223915 UTC [#2826](https://github.com/paritytech/parity/pull/2826)
- Adjust paths to handle CORS changes [#2816](https://github.com/paritytech/parity/pull/2816)
- RPC for dapps port and signer port [#2819](https://github.com/paritytech/parity/pull/2819)
- Update build to working version on pre-compiled repo [#2825](https://github.com/paritytech/parity/pull/2825)
- Adjust network name badge colours (darker) [#2823](https://github.com/paritytech/parity/pull/2823)
- Removing submodule in favour of rust crate [#2756](https://github.com/paritytech/parity/pull/2756)
- Return old-ish content even when syncing [#2757](https://github.com/paritytech/parity/pull/2757)
- fix Signer UI [#2750](https://github.com/paritytech/parity/pull/2750)
- USG, GBP, Euro & Yuan updates [#2818](https://github.com/paritytech/parity/pull/2818)
- Make locally installed apps available again (Fixes #2771) [#2808](https://github.com/paritytech/parity/pull/2808)
- Additional RPCs for password management [#2779](https://github.com/paritytech/parity/pull/2779)
- flush DB changes on drop [#2795](https://github.com/paritytech/parity/pull/2795)
- rename State::snapshot to checkpoint to avoid confusion [#2796](https://github.com/paritytech/parity/pull/2796)
- Missing changes required to make new UI work [#2793](https://github.com/paritytech/parity/pull/2793)
- Cleanup method decoding (Fixes #2811) [#2810](https://github.com/paritytech/parity/pull/2810)
- Use trace API for decentralized transaction list [#2784](https://github.com/paritytech/parity/pull/2784)
- Automatic compaction selection on Linux [#2785](https://github.com/paritytech/parity/pull/2785)
- Update token images [#2804](https://github.com/paritytech/parity/pull/2804)
- Hackergold token images [#2801](https://github.com/paritytech/parity/pull/2801)
- Additional token images [#2800](https://github.com/paritytech/parity/pull/2800)
- Additional token images [#2798](https://github.com/paritytech/parity/pull/2798)
- Resolve morden fork [#2773](https://github.com/paritytech/parity/pull/2773)
- Using SipHashes from crates.io [#2778](https://github.com/paritytech/parity/pull/2778)
- Fixed issues on Searchable Addresses [#2790](https://github.com/paritytech/parity/pull/2790)
- Currency icons [#2788](https://github.com/paritytech/parity/pull/2788)
- Update token images [#2783](https://github.com/paritytech/parity/pull/2783)
- Fix warning in master [#2775](https://github.com/paritytech/parity/pull/2775)
- Add empty account existence test from beta. [#2769](https://github.com/paritytech/parity/pull/2769)
- Update name of basiccoin manager [#2768](https://github.com/paritytech/parity/pull/2768)
- sweep most unwraps from ethcore crate, dapps crate [#2762](https://github.com/paritytech/parity/pull/2762)
- Check queue to determine major importing [#2763](https://github.com/paritytech/parity/pull/2763)
- Trace filtering fix [#2760](https://github.com/paritytech/parity/pull/2760)
- Update js precompiled to 20161020-141636 [#2761](https://github.com/paritytech/parity/pull/2761)
- Incrementally calculate verification queue heap size [#2749](https://github.com/paritytech/parity/pull/2749)
- Don't add empty accounts to bloom [#2753](https://github.com/paritytech/parity/pull/2753)
- fix contract deployments not showing up [#2759](https://github.com/paritytech/parity/pull/2759)
- Fixes a positioning issue in Address Selection component [#2754](https://github.com/paritytech/parity/pull/2754)
- fix linting issues [#2758](https://github.com/paritytech/parity/pull/2758)
- Making Trie.iter non-recursive [#2733](https://github.com/paritytech/parity/pull/2733)
- Block import optimization [#2748](https://github.com/paritytech/parity/pull/2748)
- Update js-precompiled to 20161020-110858 [#2752](https://github.com/paritytech/parity/pull/2752)
- Fixing small files fetching [#2742](https://github.com/paritytech/parity/pull/2742)
- Fixing stalled sync [#2747](https://github.com/paritytech/parity/pull/2747)
- refactor signer components [#2691](https://github.com/paritytech/parity/pull/2691)
- Png images with backgrounds (original svg) [#2740](https://github.com/paritytech/parity/pull/2740)
- Make address selection searchable [#2739](https://github.com/paritytech/parity/pull/2739)
- very basic dapp add/remove interface [#2721](https://github.com/paritytech/parity/pull/2721)
- Frontport commits from beta to master [#2743](https://github.com/paritytech/parity/pull/2743)
- Implements Trace API Formatter [#2732](https://github.com/paritytech/parity/pull/2732)
- bump parking_lot to 0.3.x series [#2702](https://github.com/paritytech/parity/pull/2702)
- Unify major syncing detection [#2699](https://github.com/paritytech/parity/pull/2699)
- Fixes gas/gasPrice change not reflected in transaction modal [#2735](https://github.com/paritytech/parity/pull/2735)
- Fixing build UI stuff along with Rust [#2726](https://github.com/paritytech/parity/pull/2726)
- Fixed Snackbar not showing and/or behind transactions (#2730) [#2731](https://github.com/paritytech/parity/pull/2731)
- Updating json tests to latest develop commit [#2728](https://github.com/paritytech/parity/pull/2728)
- dapps: show errors [#2727](https://github.com/paritytech/parity/pull/2727)
- node logs: break lines [#2722](https://github.com/paritytech/parity/pull/2722)
- Bumping JSON-RPC http server [#2714](https://github.com/paritytech/parity/pull/2714)
- Add ability to copy address to the clipboard [#2716](https://github.com/paritytech/parity/pull/2716)
- Sort tags when displaying ; use AND for search results [#2720](https://github.com/paritytech/parity/pull/2720)
- allow-same-origin for iframe [#2711](https://github.com/paritytech/parity/pull/2711)
- Update Registry address (mainnet) [#2713](https://github.com/paritytech/parity/pull/2713)
- Allow tags for Accounts, Addresses and Contracts [#2712](https://github.com/paritytech/parity/pull/2712)
- Correct parameters for eth_sign [#2703](https://github.com/paritytech/parity/pull/2703)
- Bump js-precompiled to 20161018-161705 [#2698](https://github.com/paritytech/parity/pull/2698)
- Add inject.js (for web3 exposed) [#2692](https://github.com/paritytech/parity/pull/2692)
- Remove obsolete dapps and update security headers [#2694](https://github.com/paritytech/parity/pull/2694)
- Snapshot sync part 2 [#2098](https://github.com/paritytech/parity/pull/2098)
- Fix issues with no ethereum test dir present (2382) [#2659](https://github.com/paritytech/parity/pull/2659)
- Apply UI PRs after master merge [#2690](https://github.com/paritytech/parity/pull/2690)
- Fix importing traces for non-canon blocks [#2683](https://github.com/paritytech/parity/pull/2683)
- Fixing random test failures [#2577](https://github.com/paritytech/parity/pull/2577)
- Disable IPC in default build for 1.4 [#2657](https://github.com/paritytech/parity/pull/2657)
- use pruning history in CLI snapshots [#2658](https://github.com/paritytech/parity/pull/2658)
- Fixing --no-default-features again and evmbin [#2670](https://github.com/paritytech/parity/pull/2670)
- Settings > Proxy for proxy.pac setup instructions [#2678](https://github.com/paritytech/parity/pull/2678)
- Re-instate transaitions to allow updating busy indicator [#2682](https://github.com/paritytech/parity/pull/2682)
- signer: remove reject counter [#2685](https://github.com/paritytech/parity/pull/2685)
- Initial new UI source code import [#2607](https://github.com/paritytech/parity/pull/2607)
- Additional dapp logo images [#2677](https://github.com/paritytech/parity/pull/2677)
- Redirect from :8080 to :8180 [#2676](https://github.com/paritytech/parity/pull/2676)
- script to update js-precompiled [#2673](https://github.com/paritytech/parity/pull/2673)
- Styling in FF is not 100% [#2669](https://github.com/paritytech/parity/pull/2669)
- Don't allow gavcoin transfer with no balances [#2667](https://github.com/paritytech/parity/pull/2667)
- fix signer rejections [#2666](https://github.com/paritytech/parity/pull/2666)
- better text on unique background pattern [#2664](https://github.com/paritytech/parity/pull/2664)
- Adjust z-index for error overlay [#2662](https://github.com/paritytech/parity/pull/2662)
- Fix address selection for contract deployment [#2660](https://github.com/paritytech/parity/pull/2660)
- Add additional contract images [#2655](https://github.com/paritytech/parity/pull/2655)
- Update /api/* to point to :8080/api/* (first generation interface) [#2612](https://github.com/paritytech/parity/pull/2612)
- Initial import of new UI (compiled JS code) [#2220](https://github.com/paritytech/parity/pull/2220)
- Fixing evmbin compilation [#2652](https://github.com/paritytech/parity/pull/2652)
- Fix up ETC EIP-150 transition to 2,500,000. [#2636](https://github.com/paritytech/parity/pull/2636)
- Fixing compilation without default features [#2638](https://github.com/paritytech/parity/pull/2638)
- [frontport] CLI to specify queue ordering strategy (#2494) [#2623](https://github.com/paritytech/parity/pull/2623)
- Support for decryption in Signer [#2421](https://github.com/paritytech/parity/pull/2421)
- EIP150.1c [#2591](https://github.com/paritytech/parity/pull/2591)