f2b953d4f7
version: bump up to v3.1.0-rc.0+git
2016-10-14 14:53:13 -07:00
a81997ac3f
version: bump up to v3.1.0-rc.0
2016-10-14 14:21:32 -07:00
4c444df7a6
Revert "version: bump to v3.1.0-rc.0"
...
This reverts commit cb178a78ea
.
2016-10-14 14:20:33 -07:00
cb178a78ea
version: bump to v3.1.0-rc.0
2016-10-14 14:06:21 -07:00
15d268709e
version: bump to v3.1.0-alpha.1+git
2016-09-23 11:32:39 -07:00
2469a95685
version: bump to v3.1.0-alpha.1
2016-09-23 11:19:22 -07:00
0a8bf60a9d
version: bump to 3.1.0-alpha.0+git
2016-09-16 09:56:29 -07:00
c658fa62c5
version: bump to 3.1.0-alpha.0
2016-09-15 15:13:51 -07:00
f65e75e4b3
*: remove unnecessary data upgrade code
2016-07-11 15:11:56 -07:00
4cd834910e
version: bump to v3.0.0+git
2016-06-30 09:43:10 -07:00
ef44f71da9
*: update LICENSE header
2016-05-12 20:51:48 -07:00
ebaa54bf6e
*: bump to v3.0.0-beta.0+git
2016-05-06 14:04:01 -07:00
74ea9ea5cd
*: bump to 3.0.0-beta.0
2016-05-06 13:09:50 -07:00
ac9376ea16
*: bump to v2.3.0+git
2016-03-18 16:32:04 -07:00
7d5cedbf34
version: bump to 2.3
2016-03-18 09:44:54 -07:00
c792885952
version: bump to apha1
...
For https://github.com/coreos/etcd/issues/4652 .
2016-03-02 16:38:49 -08:00
20461ab11a
*: fix many typos
2016-01-31 21:42:39 -08:00
81229dbea9
*: add missing package descriptions
...
This adds and updates package descriptions in etcd projects.
And also deletes some duplicate LICENSE statements.
2015-11-17 20:54:10 -08:00
ab1d33b8bd
*: bump to v2.3.0-alpha.0+git
2015-11-06 09:16:03 -08:00
a2d4f85d33
*: bump to v2.3.0-alpha.0
2015-11-06 09:08:39 -08:00
b82c171f5f
version: update MinClusterVersion to v2.2.0
...
This is the preparation for bumping to v2.3.0-alpha
2015-11-04 14:30:04 -08:00
db0511e28c
*: bump to v2.2.0+git
2015-09-10 10:03:07 -07:00
e4561dd8cf
*: bump to v2.2.0
2015-09-10 10:02:45 -07:00
cba7c6a180
*: bump to v2.2.0-rc.0+git
2015-08-28 10:26:56 -07:00
dc3e027288
*: bump to v2.2.0-rc.0
2015-08-28 10:26:32 -07:00
f199a484af
*: only print out major.minor version for cluster version
2015-08-15 08:30:06 -07:00
fefb273389
*: bump to v2.2.0-alpha.1+git
2015-08-13 16:01:31 -07:00
201bb4b3d8
*: bump to v2.2.0-alpha.1
2015-08-13 16:01:09 -07:00
c9cca6a93b
*: update MinClusterVersion and supportedStream map
2015-08-13 13:05:14 -07:00
a46943548a
*: bump to v2.2.0-alpha.0+git
2015-08-13 10:21:36 -07:00
ab5a69cb18
*: bump to v2.2.0-alpha.0
2015-08-13 10:20:05 -07:00
2b8abeb093
*: remove migration related stuff from 2.2
2015-08-01 19:37:20 +08:00
147b14cfc0
*: bump to v2.1.1+git
2015-07-21 10:43:49 -07:00
6335fdc595
*: bump to v2.1.1
2015-07-21 10:41:26 -07:00
235aef5365
*: bump to v2.1.0-rc.0+git
2015-06-29 14:02:40 -07:00
00c32ef022
*: bump to v2.1.0-rc.0
2015-06-29 14:02:39 -07:00
d0f6432b51
*: bump to v2.1.0-alpha.1+git
2015-06-16 22:02:00 -07:00
c4a5088bbc
*: bump to v2.1.0-alpha.1
2015-06-16 22:00:17 -07:00
6296054ff6
etcdhttp: version endpoint also returns cluster version.
2015-05-13 15:48:10 -07:00
3914defd8a
version: added more version information
...
added more version information output to aid debugging
print etcd Version, Git SHA, Go runtime version, OS
and architecture
Fixes #2560
2015-05-09 03:21:10 +00:00
6699107f61
*: add cluster version and cluster version detection.
...
Cluster version is the min major.minor of all members in
the etcd cluster. Cluster version is set to the min version
that a etcd member is compatible with when first bootstrapp.
During a rolling upgrades, the cluster version will be updated
automatically.
For example:
```
Cluster [a:1, b:1 ,c:1] -> clusterVersion 1
update a -> 2, b -> 2
after a detection
Cluster [a:2, b:2 ,c:1] -> clusterVersion 1, since c is still 1
update c -> 2
after a detection
Cluster [a:2, b:2 ,c:2] -> clusterVersion 2
```
The API/raft component can utilize clusterVersion to determine if
it can accept a client request or a raft RPC.
We choose polling rather than pushing since we want to use the same
logic for cluster version detection and (TODO) cluster version checking.
Before a member actually joins a etcd cluster, it should check the version
of the cluster. Push does not work since the other members cannot push
version info to it before it actually joins. Moreover, we do not want our
raft RPC system (which is doing the heartbeat pushing) to coordinate cluster version.
2015-04-29 11:31:59 -07:00
0d25b20fc0
*: bump to v2.1.0-alpha.0+git
2015-04-23 15:02:51 -07:00
c1608bcdb4
*: bump to v2.1.0-alpha.0
2015-04-23 15:02:18 -07:00
5ad559b503
*: serve json version on both client and peer url
2015-04-20 16:23:51 -07:00
60efd4d96e
Revert "etcdhttp: add internalVersion"
...
This reverts commit a77bf97c14
.
Conflicts:
version/version.go
2015-03-27 16:53:55 -07:00
16183bc22b
version: not return err NotExist in Detect
2015-03-24 20:19:42 -07:00
5e0077cc0c
etcdserver: print out extra files in data dir instead of erroring
2015-03-24 18:56:22 -07:00
cea3448438
*: bump to v2.0.4+git
2015-02-27 12:25:50 -08:00
1a2c6d3f2f
*: bump to v2.0.4
2015-02-26 22:01:24 -08:00
4d728cc8c4
*: bump to v2.0.3
2015-02-13 15:27:24 -08:00