-
Notifications
You must be signed in to change notification settings - Fork 7
/
CHANGELOG
134 lines (78 loc) · 2.85 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
vagrant-auto_network
====================
1.0.3
-----
2018-06-01
This is a backwards compatible bugfix release.
* Add test coverage for Vagrant 2.0 and 2.1.
* Add thread safety and atomic writes to pool storage.
* Deprecated support for Vagrant versions older than 1.8.
1.0.2
-----
2014-06-21
This is a backwards compatible bugfix release.
* (GH-24) Fix improper allocations of IP addresses to machines that are not
using AutoNetwork. This regression was caused by the fix for GH-23 released
in version 1.0.1.
1.0.1
-----
2014-06-06
This is a backwards compatible bugfix release.
* (GH-23) Fix crashes occurring when a VM has a pre-allocated AutoNetwork IP
address.
* Fix errors raised when a machine exists in the `.vagrant` directory
but no longer has a config in the `Vagrantfile`.
1.0.0
-----
2014-05-21
This is a mostly-backwards compatible feature release.
For this release, serialization format has been completely re-written to add
support for multiple providers and to better manage global state and guard
against race conditions. Care has been taken to support existing AutoNetwork
environments, but it is possible that some breakage will occur.
Specifically, the following issues have been addressed:
* (GH-12) Support for more than just the VirtualBox provider. The
implementation has been tested against the VMware Fusion provider but
should be general enough to support other providers as well.
* (GH-2) The infamous `0.0.0.0` hack is no longer necessary when using
AutoNetwork.
* (GH-6) The IP address pools managed by AutoNetwork are now backed by a
storage mechanism that offers more resiliance to race conditions and data
loss from aborted actions.
The following features have been removed:
* (GH-14) Remove depreciated AutoNetwork mixin module.
1.0.0.rc1
---------
2014-05-12
Changes since 1.0.0.beta2:
* Addition of integration tests that check for interoperability between
AutoNetwork and Vagrant. Test suite automatically run by Travis CI.
* Internal refactoring and cleanup.
1.0.0.beta2
-----------
2014-05-09
Bug Fixes:
* (GH-20) Compatibility fixes for Vagrant 1.6
* Ensure directories exist when creating `pool.yaml` for the first time.
1.0.0.beta1
-----------
2014-05-05
First beta release of AutoNetwork 1.0.0.
0.2.2
-----
2014-03-19
This is a backwards compatible feature release
* (GH-7) Only use load_pool middleware when Vagrant environment is fully
initialized.
0.2.1
-----
2013-08-10
* Fix issue where running vagrant outside of an environment could cause
stacktraces.
0.2.0
-----
2013-08-07
This is a backwards compatible feature release. It reimplements the
auto_network functionality as part of the :private_network network config
method. It also implements persistent leases so that machines in different
Vagrant environments all have unique addresses.