forked from ethereum/py-geth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
144 lines (92 loc) · 2.58 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
1.10.2
------
- Support for testing and installation of `geth==1.7.2`
1.10.1
------
- Support for testing and installation of `geth==1.7.0`
1.10.0
------
- Support and testing against `geth==1.6.1`
- Support and testing against `geth==1.6.2`
- Support and testing against `geth==1.6.3`
- Support and testing against `geth==1.6.4`
- Support and testing against `geth==1.6.5`
- Support and testing against `geth==1.6.6`
- Support and testing against `geth==1.6.7`
1.9.0
-----
- Rename `LiveGethProcess` to `MainnetGethProcess`. `LiveGethProcess` now raises deprecation warning when instantiated.
- Implement `geth` installation scripts and API
- Expand test suite to cover through `geth==1.6.6`
1.8.0
-----
- Bugfix for `--ipcapi` flag removal in geth 1.6.x
1.7.1
-----
- Bugfix for `ensure_path_exists` utility function.
1.7.0
-----
- Change to use `compat` instead of `async` since async is a keyword
- Change env variable for gevent threading to be `GETH_THREADING_BACKEND`
1.6.0
-----
- Remove hard dependency on gevent.
- Expand testing against 1.5.5 and 1.5.6
1.5.0
-----
- Deprecate the `--testnet` based chain.
- TestnetGethProcess now is an alias for whatever the current primary testnet is
- RopstenGethProcess now represents the current ropsten test network
- travis-ci geth version pinning.
1.4.1
-----
- Add `rpc_cors_domain` to supported arguments for running geth instances.
1.4.0
-----
- Add `shh` flag to wrapper to allow enabling of whisper in geth processes.
1.3.0
-----
- Bugfix for python3 when no contracts are found.
- Allow genesis configuration through constructor of GethProcess classes.
1.2.0
-----
- Add gevent monkeypatch for socket when using requests and urllib.
1.1.0
-----
- Fix websocket addition
1.0.0
-----
- Add Websocket interface to default list of interfaces that are presented by
geth.
0.9.0
-----
- Fix broken LiveGethProcess and TestnetGethProcess classes.
- Let DevGethProcesses use a local geth.ipc if the path is short enough.
0.8.0
-----
- Add `homesteadBlock`, `daoForkBlock`, and `doaForkSupport` to the genesis
config that is written for test chains.
0.7.0
-----
- Rename python module from `pygeth` to `geth`
0.6.0
-----
- Add `is_rpc_ready` and `wait_for_rpc` api.
- Add `is_ipc_ready` and `wait_for_ipc` api.
- Add `is_dag_generated` and `wait_for_dag` api.
- Refactor `LoggingMixin` core logic into base `InterceptedStreamsMixin`
0.5.0
-----
- Fix deprecated usage of `--genesis`
0.4.0
-----
- Fix broken loggin mixin (again)
0.3.0
-----
- Fix broken loggin mixin.
0.2.0
-----
- Add logging mixins
0.1.0
-----
- Initial Release