| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-08-11 | std.ArrayList: make unmanaged the default | Andrew Kelley | |
| 2025-04-13 | std: eradicate u29 and embrace std.mem.Alignment | Andrew Kelley | |
| 2024-12-14 | argon2: bail out if m < 8p (#22232) | Frank Denis | |
| Fixes #22231 | |||
| 2024-07-07 | std.crypto.pwhash: Add recommended parameters (#20527) | Shun Sakai | |
| These parameters according to the OWASP cheat sheet. | |||
| 2023-11-19 | lib: correct unnecessary uses of 'var' | mlugg | |
| 2023-11-03 | x86_64: fix std test failures | Jacob Young | |
| 2023-10-31 | std.builtin.Endian: make the tags lower case | Andrew Kelley | |
| Let's take this breaking change opportunity to fix the style of this enum. | |||
| 2023-10-31 | mem: fix ub in writeInt | Jacob Young | |
| Use inline to vastly simplify the exposed API. This allows a comptime-known endian parameter to be propogated, making extra functions for a specific endianness completely unnecessary. | |||
| 2023-10-23 | x86_64: implement enough to pass unicode tests | Jacob Young | |
| * implement vector comparison * implement reduce for bool vectors * fix `@memcpy` bug * enable passing std tests | |||
| 2023-10-22 | Revert "Revert "Merge pull request #17637 from jacobly0/x86_64-test-std"" | Jacob Young | |
| This reverts commit 6f0198cadbe29294f2bf3153a27beebd64377566. | |||
| 2023-10-22 | Revert "Merge pull request #17637 from jacobly0/x86_64-test-std" | Andrew Kelley | |
| This reverts commit 0c99ba1eab63865592bb084feb271cd4e4b0357e, reversing changes made to 5f92b070bf284f1493b1b5d433dd3adde2f46727. This caused a CI failure when it landed in master branch due to a 128-bit `@byteSwap` in std.mem. | |||
| 2023-10-21 | x86_64: fix bugs and disable erroring tests | Jacob Young | |
| 2023-06-24 | all: migrate code to new cast builtin syntax | mlugg | |
| Most of this migration was performed automatically with `zig fmt`. There were a few exceptions which I had to manually fix: * `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten * `@truncate`'s fixup is incorrect for vectors * Test cases are not formatted, and their error locations change | |||
| 2023-06-19 | all: zig fmt and rename "@XToY" to "@YFromX" | Eric Joldasov | |
| Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me> | |||
| 2023-04-28 | std: update to use `@memcpy` directly | Andrew Kelley | |
| 2023-04-28 | update codebase to use `@memset` and `@memcpy` | Andrew Kelley | |
| 2023-03-14 | Argon2: properly handle outputs > 64 bytes in blake2Long() (#14914) | Frank Denis | |
| Fixes #14912 | |||
| 2023-02-18 | update std lib and compiler sources to new for loop syntax | Andrew Kelley | |
| 2022-06-20 | std.crypto: fix invalid pass by value | Veikka Tuominen | |
| 2022-06-12 | std: disable failing tests, add zig2 build test-std to CI | Veikka Tuominen | |
| 2022-04-05 | zig fmt: remove trailing whitespace on doc comments | Damien Firmenich | |
| Fixes #11353 The renderer treats comments and doc comments differently since doc comments are parsed into the Ast. This commit adds a check after getting the text for the doc comment and trims whitespace at the end before rendering. The `a = 0,` in the test is here to avoid a ParseError while parsing the test. | |||
| 2021-11-30 | allocgate: std Allocator interface refactor | Lee Cannon | |
| 2021-11-15 | add argon2 kdf (#9756) | lucky | |
