filesystems/rubygem-winrm-fs: fix regression from 5ff12f2c24a1ac6b91d994474f2201623f035077
===> rubygem-winrm-fs-1.3.5 depends on package: rubygem-rubyzip>=2.0<3 - not found
*** Error code 1
[AArch64][NFC] Use compact enum table for feature strings (#206084)
Although this is not exactly an enum, the same data structure can be
used to compactly store the feature strings without dynamic relactions.
As a side effect, this also slightly reduces the size of the table.
[llvm-readobj][NFC] Use compact enums (except for ELF) (#206075)
In principle straight-forward replacement, but clang-format is
deliberately non-helpful here..
ELFDumper is a separate patch due to the size of the changes.
[X86][NFC] Use compact enum to store ternlog comments (#206089)
Instead of storing a StringRef (StringLiteral is essentially a
StringRef) with 16 bytes and one dynamic relocation for each of the 256
entries (4kiB total) and, use the new compact enum tables to store each
entry with 4 bytes and without relocations.
Switch the default TLS cipher set from "compat" to "secure"
The "secure" keyword only allows TLSv1.3 and the TLSv1.2 AEAD ciphers
that have forward secrecy (ECDHE/DHE). See tls_config_set_ciphers(3)
for details. This is stricter than "HIGH:!aNULL" and drops older
ciphers without AEAD or forward secrecy.
Also update the ciphers text in httpd.conf.5 with the clearer wording
from smtpd.conf.5.
Old peers that need these older ciphers may no longer connect.
idea from Mischa, ok kirill@ ok tb@
Switch the default TLS cipher set from "HIGH:!aNULL" to "secure"
The "secure" keyword only allows TLSv1.3 and the TLSv1.2 AEAD ciphers
that have forward secrecy (ECDHE/DHE). See tls_config_set_ciphers(3)
for details. This is stricter than "HIGH:!aNULL" and drops older
ciphers without AEAD or forward secrecy.
Also update the ciphers text in relayd.conf.5 with the clearer wording
from smtpd.conf.5.
Old peers that need these older ciphers may no longer connect.
idea from Mischa, ok kirill@ ok tb@
bats-core: update to 1.13.0
Added
* use the syntax parser directive to declare the Dockerfile syntax version
* Negative test filtering via --negative-filter - tests matching the
filter are excluded
* fail-fast flag --abort to stop test suite execution on first failure
Fixed:
* unset output, stderr, lines, stderr_lines at the start of run to avoid
crosstalk
* between successive invocations
* junit:
* XML escape fully removes ANSI sequences, e.g. color codes, cursor
movements
* fix retried tests being listed multiple times
* fix crash when setup_suite fails
[10 lines not shown]
iosevka-*: update to 34.7.0
* Add et-flat-bottom and flat-top-serifed variants for Ampersand (&).
* Make Make Latin/Cyrillic Iota (Ɩ, ɩ, Ꙇ, ꙇ) follow variants of i (cv44).
* Make Greek Lower Iota/Tau (ι, τ) use flat-tailed variants under upright.
* Add Characters:
* LEFT SIDEWAYS U BRACKET (U+2E26).
* RIGHT SIDEWAYS U BRACKET (U+2E27).
* LATIN CAPITAL LETTER TRESILLO (U+A72A) ... LATIN SMALL LETTER CUATRILLO
WITH COMMA (U+A72F).
* Refine shape of the following characters:
* LATIN SMALL LETTER EZH REVERSED (U+0189).
* LATIN SMALL LETTER EZH WITH TAIL (U+01BA).
* LATIN SMALL LETTER EZH WITH CARON (U+01EF).
* LATIN SMALL LETTER LEZH (U+026E).
* LATIN SMALL LETTER EZH (U+0292).
* LATIN SMALL LETTER EZH WITH CURL (U+0293).
* LATIN SMALL LETTER DEZH DIGRAPH (U+02A4).
* CYRILLIC SMALL LETTER ABKHASIAN DZE (U+04E1).
[7 lines not shown]
[clang-tidy] Fix invalid avoid-c-style-cast fix-it after keywords (#206239)
When a C-style cast immediately follows an identifier-like token, the
replacement could merge with the previous token, e.g. turning
`return(int)d` into `returnstatic_cast<int>(d)`. This patch fixes the
problem by adding a leading space to the replacement when needed.
Closes https://github.com/llvm/llvm-project/issues/97012
[FileCheck] Call out var captures on unmatched patterns
This patch is motivated by an #llvm IRC chat in 2019 with Aaron
Ballman, where he pointed out an example similar to following:
```
$ cat input
[[clang::optnone]] void foo() {
$ cat check
CHECK: [[clang::optnone]] void foo() {
$ FileCheck check < input |& tail -7
Input was:
<<<<<<
1: [[clang::optnone]] void foo() {
check:1'0 { } search range (exclusive bounds)
check:1'1 error: no match found
check:1'2 ? possible intended match
[21 lines not shown]
uvm_km_pgremove: pmap_update before freeing pages
Update the commentary in uvm_km_free to reflect this reality while here
Reviewd by skrll@
PR kern/60376