You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix download URLs containing invalid characters on Windows (e.g. the ? character in `?full_index=1`) [#5921 @dra27]
25
+
* Harden the CRLF stripping when using cygcheck [#5993 @dra27]
26
+
* Fix extraction of tarballs on Windows which contain symlinks both when those symlinks can't be created or if they point to files which don't exist [#5953 @dra27]
27
+
* Fix curl failures - the progress meter can become interleaved with the status code on Windows [#5984 @dra27 @kit-ty-kate @rjbou]
28
+
* stop hiding the Windows specific arguments of opam init on non-Windows platforms [#6003 @rjbou @kit-ty-kate]
29
+
* Improve the Git-for-Windows menu shown during opam init [#5963 @dra27 - fix #5835]
30
+
* For the `Cygwin` internal operator, don't allow `make.exe` to become shadowed [#5996 @dra27]
31
+
* Fix incorrect quoting rule for `MANPATH` [#5972 @dra27]
32
+
* Do not special case the rewriting rule for the PKG_CONFIG_PATH environment variable [#6002 @kit-ty-kate - fix #5923]
33
+
* Pass --symlink-type native to Cygwin setup if symlinks are available [#5830 @dra27]
34
+
* Pass --no-version-check to Cygwin setup (suppresses a message box if setup needs updating) [#5830 @dra27]
35
+
* Pass --quiet-mode noinput to stop the user interrupting the setup GUI [#5830 @dra27]
36
+
* Always pass --no-write-registry to the Cygwin installer, not just on first installation [#5995 @dra27]
37
+
* Various other fixes:
38
+
* Fix rounding error when displaying the timestamp in debug mode [#5912 @kit-ty-kate - fix #5910]
39
+
* Relaxed warning 41 in opam lint to not trigger on uses of package variables which are guarded by a package:installed filter [#5927 @dra27]
40
+
* Move last-env `OPAM_LAST_ENV` files outside the switch to be in `$OPAMROOT` [#5962 @moyodiallo - fix #5823]
41
+
* Fix a typo in the variable description returned by "opam var" [#5961 @jmid]
42
+
* (*) Display lock hold/release messages on stderr instead of stdout [#5999 @kit-ty-kate - fix #5990]
* Extracted `OpamSolution.install_sys_packages` from `OpamSolution.install_depexts` [#5994 @dra27]
55
+
* `OpamDownload.download_command`: separate output from stdout and stderr [#5984 @kit-ty-kate]
56
+
* `OpamPath`: remove `OpamPath.Switch.last_env` function in favor to `OpamPath.last_env` as the files are no more stored in switch directory [#5962 @moyodiallo - fix #5823]
57
+
* `OpamFilter.map_up`: correct handling of FDefined [#5983 @dra27]
58
+
* `OpamFilter.fold_down_left`: correct handling of FDefined and FUndef [#5983 @dra27]
59
+
* `OpamStd.String`: add `split_quoted` that preserves quoted separator [#5935 @dra27]
60
+
* `OpamSystem.copy_dir` and `OpamSystem.mv` may display a warning on Windows if an invalid symlink (e.g. an LXSS Junction) is found [#5953 @dra27]
61
+
* `OpamStubs.getVersionInfo`: on Windows, retrives the version information block of an executable/library [#5963 @dra27]
62
+
* `OpamStubs.readRegistry`: on Windows, complements `OpamStubs.writeRegistry` [#5963 @dra27]
63
+
* `OpamStubs.get_initial_environment`: on Windows, returns the pristine environment for new shells [#5963 @dra27]
* `OpamConsole.menu` now supports up to 35 menu items [#5992 @dra27]
66
+
* `OpamStd.Sys.resolve_command`: extracted the logic from `OpamSystem.resolve_command`, without the default environment handling from OpamProcess. [#5991 @dra27]
67
+
* `OpamStd.Sys.resolve_in_path`: split the logic of `OpamStd.Sys.resolve_command` to allow searching for an arbitrary file in the search path [#5991 @dra27]
68
+
* `OpamProcess.run_background`: name the stderr output file have the .err extension when cmd_stdout is given [#5984 @kit-ty-kate]
69
+
6
70
2.2.0~beta2:
7
71
* Changes necessary to be able to open the PR adding support for Windows in
* Move last-env `OPAM_LAST_ENV` files outside the switch to be in the `opam root`[#5962@moyodiallo - fix #5823]
46
32
47
33
## Pin
48
34
@@ -53,66 +39,38 @@ users)
53
39
## Var/Option
54
40
55
41
## Update / Upgrade
56
-
*[BUG] Stop triggering "Undefined filter variable variable" warning for `?variable`[#5983@dra27]
57
42
58
43
## Tree
59
-
*[BUG] Fix `opam tree --with-*` assigning the `with-*` variables to unrequested packages [#5919@kit-ty-kate@rjbou - fix #5755]
60
-
*[BUG] Fix combinations of `opam tree --with-*` and `--no-switch`[#5919@kit-ty-kate@rjbou - fix #5920]
61
44
62
45
## Exec
63
46
64
47
## Source
65
-
* Fix extraction of tarballs on Windows which contain symlinks both when those symlinks can't be created or if they point to files which don't exist [#5953@dra27]
66
48
67
49
## Lint
68
-
* W41: Relax warning 41 not to trigger on uses of package variables which are guarded by a package:installed filter [#5927@dra27]
* Extracted `OpamSolution.install_sys_packages` from `OpamSolution.install_depexts`[#5994@dra27]
173
112
174
113
## opam-repository
175
-
*`OpamDownload.download_command`: separate output from stdout and stderr [#5984@kit-ty-kate]
176
114
177
115
## opam-state
178
116
179
117
## opam-solver
180
118
181
119
## opam-format
182
-
*`OpamPath`: remove `OpamPath.Switch.last_env` function in favor to `OpamPath.last_env` as the files are no more stored in switch directory [#5962@moyodiallo - fix #5823]
183
-
*`OpamFilter.map_up`: correct handling of FDefined [#5983@dra27]
184
-
*`OpamFilter.fold_down_left`: correct handling of FDefined and FUndef [#5983@dra27]
185
120
186
121
## opam-core
187
-
*`OpamStd.String`: add `split_quoted` that preserves quoted separator [#5935@dra27]
188
-
*`OpamSystem.copy_dir` and `OpamSystem.mv` may display a warning on Windows if an invalid symlink (e.g. an LXSS Junction) is found [#5953@dra27]
189
-
*`OpamStubs.getVersionInfo`: on Windows, retrives the version information block of an executable/library [#5963@dra27]
190
-
*`OpamStubs.readRegistry`: on Windows, complements `OpamStubs.writeRegistry`[#5963@dra27]
191
-
*`OpamStubs.get_initial_environment`: on Windows, returns the pristine environment for new shells [#5963@dra27]
*`OpamConsole.menu` now supports up to 35 menu items [#5992@dra27]
194
-
*`OpamStd.Sys.resolve_command`: extracted the logic from `OpamSystem.resolve_command`, without the default environment handling from OpamProcess. [#5991@dra27]
195
-
*`OpamStd.Sys.resolve_in_path`: split the logic of `OpamStd.Sys.resolve_command` to allow searching for an arbitrary file in the search path [#5991@dra27]
196
-
*`OpamProcess.run_background`: name the stderr output file have the .err extension when cmd_stdout is given [#5984@kit-ty-kate]
Copy file name to clipboardexpand all lines: opam-devel.opam
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
opam-version: "2.0"
2
-
version: "2.2.0~beta3~dev"
2
+
version: "2.2.0~beta3"
3
3
synopsis: "Bootstrapped development binary for opam 2.2"
4
4
description: """
5
5
This package compiles (bootstraps) opam. For consistency and safety of the installation, the binaries are not installed into the PATH, but into lib/opam-devel, from where the user can manually install them system-wide.
Copy file name to clipboardexpand all lines: opam-installer.opam
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
opam-version: "2.0"
2
-
version: "2.2.0~beta3~dev"
2
+
version: "2.2.0~beta3"
3
3
synopsis: "Installation of files to a prefix, following opam conventions"
4
4
description: """
5
5
opam-installer is a small tool that can read *.install files, as defined by opam [1], and execute them to install or remove package files without going through opam.
0 commit comments