Ben Wiederhake
Ben Wiederhake
Old behavior: Telegram user sends a huge 4096-byte message (the maximum permitted by Telegram), it gets clipped to 1950 bytes on Discord. New havior: Set `MessageSplitMaxCount=3` as config option of...
The underlying bug was the assumption that [`uft8.DecodeLastRuneInString`](https://pkg.go.dev/unicode/utf8#DecodeLastRuneInString) returns some kind of number of bytes that, when stripped from the end, leaves the string with a correct ending. In reality,...
Even more tests on MacOS CI are failing for some reason. This issue is about different tests than #6275, and also a different root cause, but might still be related....
This PR fixes multiple issues around multi-flags: - Many repeated flags used to be handled incorrectly; this is work toward #5998 - We used to accept the `--reference` argument, but...
If seems that there are many cases where we define self-conflicts, but GNU accepts repeated arguments. This is especially unnecessary for boolean flags. Let's fix that! This issue tracks progress...
This sounds like a feature that people probably use: ```console $ date --resolution 0.000000001 $ cargo run date --resolution error: unexpected argument '--resolution' found tip: a similar argument exists: '--version'...
Steps to reproduce: - Create two regular files, `README.md` and `good/README.md`, and an initially-empty directory `tmp/`. - Inside `tmp`, create an empty regular file `foo`, and a symlink `README.md` that...
Steps to reproduce: - Create two regular files, `README.md` and `good/README.md`, and a directory `target/` that does not contain anything named `README.md`. - chdir into `target/`. - Try to copy...
This probably affects other types/modes of copying, too, since we have a lot of shurt-cutting currently. Steps to reproduce: - Have two files that are hardlinks - Copy them with...
(Originally documented in #6202) On Linux, GNU 9.5 kill on Linux lists many RTMIN/RTMAX-related signals. procps kill does NOT list these signals. I'm not entirely sure what they mean, so...