2022-12-07 12:19:49 +01:00
|
|
|
What's new:
|
|
|
|
-----------
|
|
|
|
|
|
|
|
- Drop support for Windows 7, Windows 8, Server 2008 R2 and Server 2012.
|
|
|
|
|
2024-01-17 12:39:50 +01:00
|
|
|
- Console devices (/dev/consN) are now accessible by processes attached
|
|
|
|
to other consoles or ptys. Thanks to this new feature, GNU screen and
|
|
|
|
tmux now work in the console.
|
2023-01-14 18:00:35 +01:00
|
|
|
|
|
|
|
- newgrp(1) tool.
|
2023-01-29 18:40:14 +01:00
|
|
|
|
|
|
|
- cygcheck has new options searching for available packages in the
|
|
|
|
cygwin distro, as well as getting extended info on available and
|
|
|
|
installed packages.
|
2023-02-15 14:22:26 +01:00
|
|
|
|
2023-03-01 11:49:52 +01:00
|
|
|
- fnmatch(3) and glob(3) now support named character classes, equivalence
|
|
|
|
class expressions, and collating symbols in the search pattern, i.e.,
|
|
|
|
[:alnum:], [=a=], [.aa.].
|
2023-02-26 17:04:03 +01:00
|
|
|
|
2023-11-17 18:41:08 +01:00
|
|
|
- Introduce /dev/disk directory with various by-* subdirectories which
|
|
|
|
provide symlinks to disk and partition raw devices:
|
|
|
|
by-drive/DRIVE_LETTER -> ../../sdXN
|
|
|
|
by-label/VOLUME_LABEL -> ../../sdXN
|
|
|
|
by-id/BUSTYPE-[VENDOR_]PRODUCT_[SERIAL|0xHASH][-partN] -> ../../sdX[N]
|
|
|
|
by-partuuid/MBR_SERIAL-OFFSET -> ../../sdXN
|
|
|
|
by-partuuid/GPT_GUID -> ../../sdXN
|
|
|
|
by-uuid/VOLUME_SERIAL -> ../../sdXN
|
|
|
|
by-voluuid/MBR_SERIAL-OFFSET -> ../../sdXN
|
|
|
|
by-voluuid/VOLUME_GUID -> ../../sdXN
|
|
|
|
The subdirectories by-drive and by-voluuid are Cygwin specific.
|
2023-11-07 15:25:54 +01:00
|
|
|
|
2023-02-26 17:04:03 +01:00
|
|
|
- Introduce /proc/codesets and /proc/locales with information on
|
|
|
|
supported codesets and locales for all interested parties. Locale(1)
|
|
|
|
opens these files and uses the info for printing locale info like any
|
|
|
|
other process could do.
|
2023-03-16 18:25:09 +01:00
|
|
|
|
|
|
|
- Add support for GB18030 codeset.
|
2023-04-19 00:34:36 +02:00
|
|
|
|
2023-08-09 17:21:54 +02:00
|
|
|
- Add support for lseek flags SEEK_DATA and SEEK_HOLE, a GNU extension.
|
|
|
|
|
2023-04-19 00:34:36 +02:00
|
|
|
- New API calls: posix_spawn_file_actions_addchdir_np,
|
|
|
|
posix_spawn_file_actions_addfchdir_np.
|
2023-04-19 21:04:49 +02:00
|
|
|
|
2023-08-02 16:55:52 +02:00
|
|
|
- New API calls: c8rtomb, c16rtomb, c32rtomb, mbrtoc8, mbrtoc16, mbrtoc32.
|
2023-07-31 22:38:28 +02:00
|
|
|
|
2024-01-15 12:13:30 +01:00
|
|
|
- New API call: close_range (available on FreeBSD and Linux).
|
|
|
|
|
2023-11-26 21:05:07 +01:00
|
|
|
- New API call: fallocate (Linux-specific).
|
|
|
|
|
2023-09-01 17:41:10 +09:00
|
|
|
- Implement OSS-based sound mixer device (/dev/mixer).
|
|
|
|
|
2023-04-19 21:04:49 +02:00
|
|
|
What changed:
|
|
|
|
-------------
|
|
|
|
|
|
|
|
- posix_spawnp no longer falls back to starting the shell for unrecognized
|
|
|
|
files as execvp. For the reasoning, see
|
|
|
|
https://www.austingroupbugs.net/view.php?id=1674
|
2023-08-26 16:59:18 +02:00
|
|
|
|
2024-01-17 12:39:50 +01:00
|
|
|
- FIFOs now also work on NFS filesystems.
|
2023-11-30 22:36:35 +01:00
|
|
|
|
|
|
|
- Enable automatic sparsifying of files on SSDs, independent of the
|
|
|
|
"sparse" mount mode.
|
2024-01-11 20:00:14 +00:00
|
|
|
|
|
|
|
- When RLIMIT_CORE is more than 1MB, a core dump file which can be loaded by gdb
|
|
|
|
is now written on a fatal error. Otherwise, if it's greater than zero, a text
|
|
|
|
format .stackdump file is written, as previously.
|
2024-01-09 14:12:31 +00:00
|
|
|
|
|
|
|
- The default RLIMIT_CORE is now 0, disabling the generation of core dump or
|
|
|
|
stackdump files.
|
2024-01-29 13:38:14 +01:00
|
|
|
|
|
|
|
Fixes:
|
|
|
|
------
|
|
|
|
|
|
|
|
- Fix arc4random reseeding after fork(2).
|
|
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2024-January/255245.html
|