Skip to content

Commit 63e5702

Browse files
committed
Merge branch 'master' of github.com:relab/gorums
2 parents 14f09d1 + 74fcd86 commit 63e5702

File tree

1 file changed

+230
-0
lines changed

1 file changed

+230
-0
lines changed

release-notes.txt

Lines changed: 230 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,230 @@
1+
# github.com/relab/gorums
2+
## incompatible changes
3+
(*RawNode).RPCCall: removed
4+
(*RawNode).Unicast: removed
5+
Async: changed from Async to Async[Resp any]
6+
CallData: removed
7+
ConfigOption: removed
8+
Correctable: changed from Correctable to Correctable[Resp any]
9+
CorrectableCallData: removed
10+
E_Async: removed
11+
E_Correctable: removed
12+
E_CustomReturnType: removed
13+
E_PerNodeArg: removed
14+
Incomplete: removed
15+
NewRawConfiguration: removed
16+
NewRawManager: removed
17+
NewRawNode: removed
18+
NewRawNodeWithID: removed
19+
QuorumCallData: removed
20+
RawConfiguration: removed
21+
RawManager: removed
22+
RawNode: removed
23+
TestSetup: removed
24+
WithGrpcDialOptions: removed
25+
WithNoConnect: removed
26+
WithNoSendWaiting: removed
27+
callOptions: old is comparable, new is not
28+
## compatible changes
29+
(*Node).Context: added
30+
ClientCtx: added
31+
Closer: added
32+
ConfigContext: added
33+
Configuration: added
34+
EchoServerFn: added
35+
ErrIncomplete: added
36+
ErrSendFailure: added
37+
ErrTypeMismatch: added
38+
IgnoreErrors: added
39+
InsecureDialOptions: added
40+
Interceptors: added
41+
Manager: added
42+
MapRequest: added
43+
MapResponse: added
44+
Multicast: added
45+
NewConfig: added
46+
NewConfiguration: added
47+
NewCorrectable: added
48+
NewManager: added
49+
NewRequestMessage: added
50+
NewResponses: added
51+
NewSystem: added
52+
Node: added
53+
NodeContext: added
54+
NodeResponse: added
55+
Option: added
56+
QuorumCall: added
57+
QuorumCallError.Cause: added
58+
QuorumCallError.NodeErrors: added
59+
QuorumCallError.Unwrap: added
60+
QuorumCallStream: added
61+
QuorumInterceptor: added
62+
RPCCall: added
63+
Range: added
64+
ResponseSeq: added
65+
Responses: added
66+
StreamBenchmarkServerFn: added
67+
StreamServerFn: added
68+
System: added
69+
TestConfiguration: added
70+
TestContext: added
71+
TestNode: added
72+
TestOption: added
73+
TestQuorumCallError: added
74+
TestServers: added
75+
Unicast: added
76+
WithDialOptions: added
77+
WithManager: added
78+
WithPreConnect: added
79+
WithStopFunc: added
80+
81+
# github.com/relab/gorums/benchmark
82+
## incompatible changes
83+
AsyncEcho: changed from AsyncEcho to *github.com/relab/gorums.Async[*Echo]
84+
BenchmarkClient: removed
85+
BenchmarkServer.AsyncQuorumCall: removed
86+
Configuration: changed from Configuration to github.com/relab/gorums.Configuration
87+
ConfigurationFromRaw: removed
88+
GetBenchmarks: changed from func(*Configuration) []Bench to func(Configuration) []Bench
89+
Manager: changed from Manager to github.com/relab/gorums.Manager
90+
MemoryStatList: removed
91+
MemoryStatList_builder: removed
92+
NewManager: changed from func(...github.com/relab/gorums.ManagerOption) *Manager to func(...github.com/relab/gorums.ManagerOption) *Manager
93+
Node: changed from Node to github.com/relab/gorums.Node
94+
QSpec: removed
95+
QuorumSpec: removed
96+
RunBenchmarks: changed from func(*regexp.Regexp, Options, *Configuration) ([]*Result, error) to func(*regexp.Regexp, Options, Configuration) ([]*Result, error)
97+
## compatible changes
98+
AsyncMemoryStat: added
99+
AsyncResult: added
100+
AsyncStartResponse: added
101+
CorrectableEcho: added
102+
CorrectableMemoryStat: added
103+
CorrectableResult: added
104+
CorrectableStartResponse: added
105+
Multicast: added
106+
NewConfig: added
107+
NewConfiguration: added
108+
QuorumCall: added
109+
SlowServer: added
110+
StartBenchmark: added
111+
StartServerBenchmark: added
112+
StopBenchmark: added
113+
StopServerBenchmark: added
114+
StopServerBenchmarkQF: added
115+
116+
# github.com/relab/gorums/cmd/protoc-gen-gorums/dev
117+
## incompatible changes
118+
AsyncEmpty: changed from AsyncEmpty to *github.com/relab/gorums.Async[*google.golang.org/protobuf/types/known/emptypb.Empty]
119+
AsyncMyResponse: removed
120+
AsyncResponse: changed from AsyncResponse to *github.com/relab/gorums.Async[*Response]
121+
Configuration: changed from Configuration to github.com/relab/gorums.Configuration
122+
ConfigurationFromRaw: removed
123+
CorrectableEmpty: changed from CorrectableEmpty to *github.com/relab/gorums.Correctable[*google.golang.org/protobuf/types/known/emptypb.Empty]
124+
CorrectableMyResponse: removed
125+
CorrectableResponse: changed from CorrectableResponse to *github.com/relab/gorums.Correctable[*Response]
126+
CorrectableStreamEmpty: removed
127+
CorrectableStreamMyResponse: removed
128+
CorrectableStreamResponse: removed
129+
Manager: changed from Manager to github.com/relab/gorums.Manager
130+
NewManager: changed from func(...github.com/relab/gorums.ManagerOption) *Manager to func(...github.com/relab/gorums.ManagerOption) *Manager
131+
Node: changed from Node to github.com/relab/gorums.Node
132+
QuorumSpec: removed
133+
ZorumsServiceClient: removed
134+
ZorumsServiceNodeClient: removed
135+
ZorumsServiceServer.Correctable: removed
136+
ZorumsServiceServer.CorrectableCombo: removed
137+
ZorumsServiceServer.CorrectableCustomReturnType: removed
138+
ZorumsServiceServer.CorrectableEmpty2: removed
139+
ZorumsServiceServer.CorrectableEmpty: removed
140+
ZorumsServiceServer.CorrectablePerNodeArg: removed
141+
ZorumsServiceServer.CorrectableStream: removed
142+
ZorumsServiceServer.CorrectableStreamCombo: removed
143+
ZorumsServiceServer.CorrectableStreamCustomReturnType: removed
144+
ZorumsServiceServer.CorrectableStreamEmpty2: removed
145+
ZorumsServiceServer.CorrectableStreamEmpty: removed
146+
ZorumsServiceServer.CorrectableStreamPerNodeArg: removed
147+
ZorumsServiceServer.MulticastPerNodeArg: removed
148+
ZorumsServiceServer.QuorumCallAsync2: removed
149+
ZorumsServiceServer.QuorumCallAsync: removed
150+
ZorumsServiceServer.QuorumCallAsyncCombo: removed
151+
ZorumsServiceServer.QuorumCallAsyncCustomReturnType: removed
152+
ZorumsServiceServer.QuorumCallAsyncEmpty2: removed
153+
ZorumsServiceServer.QuorumCallAsyncEmpty: removed
154+
ZorumsServiceServer.QuorumCallAsyncPerNodeArg: removed
155+
ZorumsServiceServer.QuorumCallCombo: removed
156+
ZorumsServiceServer.QuorumCallCustomReturnType: removed
157+
ZorumsServiceServer.QuorumCallPerNodeArg: removed
158+
ZorumsServiceServer.QuorumCallStream: added
159+
ZorumsServiceServer.QuorumCallStreamWithEmpty2: added
160+
ZorumsServiceServer.QuorumCallStreamWithEmpty: added
161+
## compatible changes
162+
GRPCCall: added
163+
Multicast2: added
164+
Multicast3: added
165+
Multicast4: added
166+
Multicast: added
167+
NewConfig: added
168+
NewConfiguration: added
169+
QuorumCall: added
170+
QuorumCallEmpty2: added
171+
QuorumCallEmpty: added
172+
QuorumCallStream: added
173+
QuorumCallStreamWithEmpty2: added
174+
QuorumCallStreamWithEmpty: added
175+
Unicast2: added
176+
Unicast: added
177+
178+
# github.com/relab/gorums/ordering
179+
## incompatible changes
180+
(*Metadata).GetMessageID: removed
181+
(*Metadata).SetMessageID: removed
182+
Metadata_builder.MessageID: removed
183+
## compatible changes
184+
(*Metadata).GetMessageSeqNo: added
185+
(*Metadata).SetMessageSeqNo: added
186+
Metadata_builder.MessageSeqNo: added
187+
188+
# github.com/relab/gorums/tests/config
189+
## incompatible changes
190+
package removed
191+
192+
# github.com/relab/gorums/tests/correctable
193+
## incompatible changes
194+
package removed
195+
196+
# github.com/relab/gorums/tests/dummy
197+
## incompatible changes
198+
package removed
199+
200+
# github.com/relab/gorums/tests/metadata
201+
## incompatible changes
202+
package removed
203+
204+
# github.com/relab/gorums/tests/mock
205+
## incompatible changes
206+
package removed
207+
208+
# github.com/relab/gorums/tests/oneway
209+
## incompatible changes
210+
package removed
211+
212+
# github.com/relab/gorums/tests/ordering
213+
## incompatible changes
214+
package removed
215+
216+
# github.com/relab/gorums/tests/qf
217+
## incompatible changes
218+
package removed
219+
220+
# github.com/relab/gorums/tests/tls
221+
## incompatible changes
222+
package removed
223+
224+
# github.com/relab/gorums/tests/unresponsive
225+
## incompatible changes
226+
package removed
227+
228+
# summary
229+
Inferred base version: v0.10.0
230+
Suggested version: v0.11.0

0 commit comments

Comments
 (0)