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
- 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))
- Added new PasswordStrength Component
- Added tests
- PR Grumbles
- icarus -> update, increase web timeout. ([#4165](https://github.com/paritytech/parity/pull/4165))
- Fix estimate gas
- Fix token images // Error in Contract Queries ([#4169](https://github.com/paritytech/parity/pull/4169))
- Fix dapps not loading ([#4170](https://github.com/paritytech/parity/pull/4170))
- Add secure to dappsreg
- Remove trailing slash // fix dapps
- Bumping hyper [#4168](https://github.com/paritytech/parity/pull/4168)
- Bumping hyper
- Bumping again
- Backporting to beta [#4158](https://github.com/paritytech/parity/pull/4158)
- Remove onSubmit of current (no auto-change on password edit) ([#4151](https://github.com/paritytech/parity/pull/4151))
- Remove onSubmit from current password
- Remove onSubmit from hint
- Pull in console dapp as builtin ([#4145](https://github.com/paritytech/parity/pull/4145))
- Copy static dapps from static (no build)
- Console sources
- Add console to builtins
- Remove console assets
- Disable eslint on console.js
- Enable eslint after disable
- Webpack copy
- Backporting to beta [#4152](https://github.com/paritytech/parity/pull/4152)
- Fix broken transfer total balance ([#4127](https://github.com/paritytech/parity/pull/4127))
- Add proper label to method decoding inputs ([#4136](https://github.com/paritytech/parity/pull/4136))
- Another minor estimation fix ([#4133](https://github.com/paritytech/parity/pull/4133))
- 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)