2022-12-07 19:19:49 +08:00
|
|
|
What's new:
|
|
|
|
-----------
|
|
|
|
|
|
|
|
- Drop support for Windows 7, Windows 8, Server 2008 R2 and Server 2012.
|
|
|
|
|
2022-12-22 22:15:32 +08:00
|
|
|
- The console device gets accessible from other terminals such as other
|
|
|
|
consoles and ptys. Thanks to this new feature, GNU screen and tmux
|
|
|
|
now work in the console.
|
2023-01-15 01:00:35 +08:00
|
|
|
|
|
|
|
- newgrp(1) tool.
|
2023-01-30 01:40:14 +08: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 21:22:26 +08:00
|
|
|
|
2023-03-01 18:49:52 +08: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-27 00:04:03 +08:00
|
|
|
|
2023-11-07 22:25:54 +08:00
|
|
|
- Introduce /dev/disk directory with subdirectories by-id and by-partuuid.
|
|
|
|
The by-id directory provides symlinks for each disk and its partitions:
|
|
|
|
BUSTYPE-[VENDOR_]PRODUCT_[SERIAL|HASH][-partN] -> ../../sdX[N].
|
|
|
|
The by-partuuid directory provides symlinks for each MBR and GPT disk
|
|
|
|
partition: MBR_SERIAL-OFFSET -> ../../sdXN, GPT_GUID -> ../../sdXN.
|
|
|
|
|
2023-02-27 00:04:03 +08: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-17 01:25:09 +08:00
|
|
|
|
|
|
|
- Add support for GB18030 codeset.
|
2023-04-19 06:34:36 +08:00
|
|
|
|
2023-08-09 23:21:54 +08:00
|
|
|
- Add support for lseek flags SEEK_DATA and SEEK_HOLE, a GNU extension.
|
|
|
|
|
2023-04-19 06:34:36 +08:00
|
|
|
- New API calls: posix_spawn_file_actions_addchdir_np,
|
|
|
|
posix_spawn_file_actions_addfchdir_np.
|
2023-04-20 03:04:49 +08:00
|
|
|
|
2023-08-02 22:55:52 +08:00
|
|
|
- New API calls: c8rtomb, c16rtomb, c32rtomb, mbrtoc8, mbrtoc16, mbrtoc32.
|
2023-08-01 04:38:28 +08:00
|
|
|
|
2023-09-01 16:41:10 +08:00
|
|
|
- Implement OSS-based sound mixer device (/dev/mixer).
|
|
|
|
|
2023-04-20 03:04:49 +08: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 22:59:18 +08:00
|
|
|
|
|
|
|
- FIFOs now also work over NFS.
|