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
151154: kvcoord: test that interceptors populate leaf state correctly r=yuzefovich a=DrewKimball
This commit adds a simple test for `txnPipeliner` and `txnWriteBuffer` to ensure that they correctly populate `roachpb.LeafTxnInputState`. This is a test-only change.
Fixes#151075
Release note: None
151636: settings: set MinPasswordLength to 14 for FIPS builds r=pritesh-lahoti,rickystewart,herkolategan a=rail
Previously, the minimum password length was 1 character. For FIPS 140-3 builds, if short passwords are allowed, this leads to server crashes when a short password is used. Under the hood, the FIPS implementation panics if a password is shorter than 14 characters. This aligns with the NIST recommendation that HMAC should have a key length of at least 112 bits, which translates to 14 ASCII characters.
This change sets the default minimum password length to 14 characters for FIPS builds.
Additionally, `cockroach demo` has been updated to ensure that the password length for the demo user is at least the minimum password length.
Epic: none
Release note (security update): Strengthened password policy controls for FIPS 140‑3 builds. The minimum allowed password length is now set to 14 characters (112 bits of entropy) in FIPS-compliant builds. This prevents crashes caused by shorter passwords, aligning with NIST key-length recommendations
151687: opt: lazily initialize helper data in join reordering r=mgartner a=mgartner
Some equivalence groups and column sets are used during join reordering
only when there are inner-join edges. These data structures are no
longer initialized if there are no inner-join edges.
Release note: None
Co-authored-by: Drew Kimball <[email protected]>
Co-authored-by: Rail Aliiev <[email protected]>
Co-authored-by: Marcus Gartner <[email protected]>
0 commit comments