This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGES.txt
151 lines (88 loc) · 3.01 KB
/
CHANGES.txt
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
145
146
147
148
149
150
Changelog
=========
0.0.17 (unreleased)
-------------------
- Nothing changed yet.
0.0.16 (2013-01-23)
-------------------
- Support loading config from absolute paths.
0.0.15 (2012-10-05)
-------------------
- Update to support 1.6.4.
0.0.14 (2012-02-14)
-------------------
- Improve 1.4.3 support.
0.0.13 (2012-02-14)
-------------------
- Only reset variables that are actually in _raw.
0.0.12 (2012-02-14)
-------------------
- Fix packaging.
0.0.11 (2012-02-13)
-------------------
- The act of importing missingbits will monkey-patch the Options object to
give you get_bool and get_list helpers.
- Stack: Default buildout options are no longer chosen over values set in the
stack.
- Stack: More buildout section variables can now be reset from the stack,
in particular the 'unzip', 'allow-picked-versions', 'newest' and
'allowed-eggs-from-site-packages' options.
0.0.10 (2012-02-03)
-------------------
- Add a new recipe called Select. This can be used in conjuction with
isotoma.recipe.facts to customize your buildout based on the environment you
are running it in::
[facts]
recipe = isotoma.recipe.facts
[host-lucid]
somesetting = 1
[host-karmic]
somesetting = 2
[host]
recipe = missingbits:select
case = ${facts:lsb.codename}
0.0.9 (2012-01-30)
------------------
- Add a method for "peeking" at configruation files we haven't loaded yet. This
is useful if you have awkward inter-dependencies like your Plone config knows
its preferred version of Zope, but you can't load it till you have loaded
Zope!
You can use it like this::
value = stack.peek_unloaded("someconfig.cfg", "somesection", "somekey")
- Add a method for "peeking" into data that isn't fully evaluated - data that
is loaded but before you have called ``apply()``. You can use it like this::
value = stack.peek("somesection", "somekey")
0.0.8 (2011-09-21)
------------------
- Don't reset ``self.name`` when resetting things - this works around
``${:path}`` being invalid and the settings the stack uses shouldn't be changing
in flight - its just too weird!
0.0.7 (2011-09-15)
------------------
- Fix optional logic
0.0.6 (2011-09-15)
------------------
- Prior to the injection of any stack configuration, buildout._data is cleared
(with the exception of the buildout and versions parts), causing any already-
resolved parts to be re-resolved once the stack has been applied, and the
original configuration re-applied.
0.0.5 (2011-09-09)
------------------
- Optional config loading support
0.0.4 (2011-09-02)
------------------
- All stacks automatically get a 'path' variable that points to their assets
- Fix sibpath for namespaced modules
0.0.3 (2011-09-02)
------------------
- Add 'Stack': a utility for packaging buildout as an egg.
0.0.2 (2011-08-08)
------------------
- Fix commit missing from merge
- Fix python2.4 support
0.0.1 (2011-08-05)
------------------
- Add overlay recipe
0.0.0 (a long long time ago..)
------------------------------
- Initial release