forked from conda/constructor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
274 lines (209 loc) · 7.92 KB
/
CHANGELOG.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
2019-11-04 2.3.0:
-------------------
* COMMON:
- Drop redundant code in install.py
- Fix bug in size computation for pkgs built with older conda build
* NSIS:
- Allow configuring the uninstaller name
- Always pass absolute path to makensis
* SHELL:
- Add new line to bash config before modifying it
2018-09-30 2.2.0:
-------------------
* COMMON:
- Refactor constructor internals to use conda 4.5.x APIs
- Create and add <pkg>/info/repodata_record.json for each $pkg to preconda
- Use 'conda init' equivalent for modifying bashrc/bash_profile
- Rename parameter `add_to_path_default` to `initialize_by_default`
* NSIS:
- Replace hardcoded 'Anaconda' with ${NAME}
- Disallow ',' character in the installation path
- Check if $INSTDIR is writable before proceeding to install
* PKG:
- Fix wording in installer README
2018-07-14 2.1.1:
-------------------
* NSIS:
- Don't fail when index cache is empty (local channels)
* SHELL:
- Fix wording for force/update on an existing installation
2018-06-06 2.1.0:
-------------------
* COMMON:
- Populate conda-meta/history file properly
- Remove references to free channel
- Replace references to continuum.io with anaconda.com
- Officially drop support for 'packages' key
- Fix compatibility with newer version of ruamel.yaml
* NSIS:
- Disallow ^, %, ! and = characters in the installation path
- Restrict PATH env variable to a minimal required set
* PKG:
- Add fix for marking .app bundles non relocatable
2018-04-03 2.0.3:
-------------------
* COMMON:
- Fix incompatibility with conda 4.5.x
- Decouple doc generation from source code, templatize it
2018-02-01 2.0.2:
-------------------
* COMMON:
- Document platform selectors and new keys
- Drop usage of libconda
- Improve compatibility with Conda 4.4
- Don't assume that attempt_hardlinks is always defined
- Fix double use of info as different types
* NSIS:
- Append suffix to GetTempFileName() before using it
* PKG:
- Change ownership back to $USER after updating dot profile
* SHELL:
- Add more os, arch checks to the shell installer
2017-11-16 2.0.1:
-------------------
* COMMON:
- Add CI testing for Travis and Appveyor
- Write basic system info to $PREFIX\pkgs\.constructor-build.info
- Ignore folders in tarballs while checking for duplicates
- Ensure approx_pkgs_size_kb is an integer
- Fix broken tests
2017-11-01 2.0.0:
-------------------
* COMMON:
- Add support for channel remapping
- Make sure $PREFIX/envs is created by the installers
- Fallback to cat if more is not available
- Allow company name to be specified in construct.yaml
- Add feature to check file duplicates across dists
- Switch requirements to conda, ruamel_yaml
- Add write_condarc option
- Don't assume that channel keys will always be available
- Parameterize installer name at various locations
- Add support for pre-populating repodata cache
- Introduce 'attempt_hardlinks' option
- Copy pkgs to conda-bld (local) channel and test from there
- Also add channels to .condarc
- Remove urljoin import
- Fix bug when downloading packages
- Prefer conda via conda_interface instead of libconda
- Add dry run option
- Switch to setuptools
- Remove eval from setup.py, use absolute paths
- Add customization for welcome and header image texts
- Add support and examples for aarch64
- Add basic jinja2 support
* NSIS:
- Compute an approx. size for installation
- Allow more than one vsXXXX runtime, but warn
- Fix registry key handling
- disallow installation when any files present in destination folder
- Fix 'all users/just me' installation handling
- Parameterize installation location for all users
- Improve spaces/non-ascii/unicode character handling in nsis installer
- Extract python and DLLs to %PREFIX%/%randomdir and ./.install from there
- Fix several aspects of PATH env var management
- Fix wording in Windows installer
- Change AddToPath to not be the default
- Add support for command line installation for Windows
- Use ctypes for creating hard links on win
- NSIS: Copy index cache directory
- Fix issue when using conda to solve on windows
- Add ability to make nsis verbose
- Remove menus of all conda envs during uninstall
- Add ability to provide defaults for custom options
* PKG:
- Add support for signing the pkg installer
- Flip enable_{anywhere,localSystem}
* SHELL:
- Warn user if PYTHONPATH env var is set
- Handle spaces in path to be patched
- Compress non tarball files into preconda.tar.bz2
- Standardise header.sh redirects
- Add -t option to test the installer
- Use getopt if available, fallback to getopts
- Add more tests for RUNNING_SHELL
- Remove bashisms from header.sh, using only POSIX, split tar and bunzip2
2017-08-XX 1.7.0:
-------------------
* add support for creating .pkg installers on OSX, #98
2017-??-?? 1.6.0:
-------------------
* ???
2017-03-30 1.5.5:
-------------------
* proved access to LD_LIBRARY_PATH in Linux install scripts by storing it
as OLD_LD_LIBRARY_PATH
* replace '//' by '/' for install.py --root-prefix option
* turn error about wrong menu_packages into warning
* add warning to shell installers when bzip2 is not executable
2017-02-16 1.5.4:
-------------------
* skip binary prefix replacement on Windows, #62
* add writing empty conda-meta/history upon installation
2017-01-31 1.5.3:
-------------------
* update Visual Studio version map to with with Python 3.6 on Windows
* add unicode line, update version comment, #61
* add --clean (cache) option
2017-01-12 1.5.2:
-------------------
* unlink files prior to writing with a new prefix, #58
* fix test against NSIS 3.01
2017-01-06 1.5.1:
-------------------
* add --cache-dir option, which defaults to CONSTRUCTOR_CACHE when set,
or ~/.conda/constructor otherwise
* fix typo
2016-11-07 1.5.0:
-------------------
* add -u (update) option to resulting .sh installer, see #46
2016-10-20 1.4.2:
-------------------
* allow '-' character in version
2016-10-19 1.4.1:
-------------------
* add simple check for valid name and version
2016-10-06 1.4.0:
-------------------
* add menu_packages key in construct.yaml
2016-09-15 1.3.4:
-------------------
* add -s option to shell installer to run without executing user-defined
scripts, basically #44
* allow NSIS 3 to be used to Windows
2016-09-12 1.3.3:
-------------------
* add support for 'noarch' packages
2016-08-11 1.3.2:
-------------------
* bug: allow '-' in package name, when using 'exlcude' key
2016-07-19 1.3.1:
-------------------
* add pkgs/urls.txt to be compatible with current conda
* add 'md5' and 'installed_by' keys to conda-meta/<dist>.json metadata
for installed packages
2016-07-08 1.3.0:
-------------------
* add ability to run `post-link` scripts (inside conda packages) on Windows
* add ability to run post install `.bat` scripts on Windows
* improve install logic on Unix, replace post.py by custom install.py,
which is independent of conda
* remove dependency on conda, we now use libconda, which also means that
constructor can be installed into a non-root environment
2016-06-24 1.2.1:
-------------------
* compatibility with conda 4.1, see #26
* include urls.txt in the pkgs, #27
* skip machine type check in batch mode (Unix)
2016-04-07 1.2.0:
-------------------
* ensure empty lists are handled correctly with selectors
* add keep_pkgs option to construct.yaml
2016-03-24 1.1.0:
-------------------
* add support for pre and post install scripts on Unix
* fix issues related to non x86 platforms
* add default_prefix support for Windows, see #7 and #14
2016-03-02 1.0.0:
-------------------
* initial release