Releases: mozilla/sccache
v0.15.0
sccache 0.15.0
Summary
sccache 0.15.0 brings several notable improvements:
- Multi-tier caching: New support for layered caches with fallback and automatic backfilling between tiers (#2581).
- C++20 modules: Initial (partial) support for compiling C++20 modules (#2516).
- Expanded MSVC support: New flags handled including
d1nodatetime,await:strict(#2617),Y-,YI,Zf(#2663), and the default.pdbextension for/Fd(#2621). - New platforms: loongarch64 support (#2669) and
crt-staticfor riscv64 musl targets (#2683). - ccache interop: Avoid double-caching when ccache is also installed in
PATH(#2524). - Cargo integration:
CARGO_ENCODED_RUSTFLAGSis now excluded from the env var hash to prevent spurious cache misses (#2651), and dep-info handling correctly skips directories (#2676). - Distribution: cargo-binstall metadata for prebuilt binary installation (#2647).
- Reliability fixes: GCS initialization (#2637), Windows
Win32_Securityfeature (#2627), and retries for dist docker image builds (#2677).
This release also includes a large round of clippy-driven cleanups and several CI fixes. Welcome to 7 new contributors!
Features
- Avoid double-caching when ccache is installed in PATH by @avikivity in #2524
- partial c++20 module support by @TroyKomodo in #2516
- Add support for
d1nodatetime&await:strictMSVC flags by @AJIOB in #2617 - msvc: Append the default .pdb extension for the /Fd argument by @ikolomiko in #2621
- msvc: add support for Y-, YI, Zf flags by @AJIOB in #2663
- Implement multiple tiers caching with fallback and backfilling by @Felixoid in #2581
- feat: Add loongarch64 support by @wojiushixiaobai in #2669
- Add cargo-binstall metadata for prebuilt binary installation by @sylvestre in #2647
Fixes
- fix: add Win32_Security feature to windows-sys dependency by @JulienCote in #2627
- Fix GCS initialization by @msuozzo in #2637
- fix: exclude
CARGO_ENCODED_RUSTFLAGSfrom env var hash by @weihanglo in #2651 - fix: handle directories in dep-info source file hashing by @mmastrac in #2676
CI
- Revert "actions: add security audit workflow" by @sylvestre in #2603
- ci: fix artifact_failure action when target dir does not exist by @sylvestre in #2635
- ci: set crt-static for riscv64 musl targets by @wojiushixiaobai in #2683
- Add retry for dists docker image build by @Felixoid in #2677
Clippy & cleanup
- clippy: fix cloned_ref_to_slice_refs lint by @xtqqczze in #2602
- clippy: fix semicolon_if_nothing_returned lint by @xtqqczze in #2601
- clippy: fix cloned_instead_of_copied lint by @xtqqczze in #2605
- clippy: fix explicit_into_iter_loop lint by @xtqqczze in #2616
- clippy: fix unnecessary_semicolon lint by @xtqqczze in #2615
- clippy: fix manual_string_new lint by @xtqqczze in #2609
- clippy: fix ptr_as_ptr lint by @xtqqczze in #2611
- clippy: fix ref_option lint by @xtqqczze in #2608
- clippy: fix from_iter_instead_of_collect lint by @xtqqczze in #2614
- Move PreprocessorCacheModeConfig to src/config.rs by @xis19 in #2604
- Remove benchmark normalize_win_path_utf8 by @sylvestre in #2634
- Move cmake-modules to integration tests by @Felixoid in #2649
Docs
- docs(Rust.md): Add caveats from README by @TheJanzap in #2684
Dependencies
- chore: switch thirtyfour_sync to thirtyfour by @tottoto in #2613
- build(deps): bump actions/upload-artifact from 4 to 7 by @dependabot[bot] in #2632
- build(deps): bump actions/download-artifact from 5 to 8 by @dependabot[bot] in #2631
- chore(deps): update rust crate quinn-proto to v0.11.14 by @xtqqczze in #2645
New Contributors
- @ikolomiko made their first contribution in #2621
- @JulienCote made their first contribution in #2627
- @msuozzo made their first contribution in #2637
- @weihanglo made their first contribution in #2651
- @wojiushixiaobai made their first contribution in #2669
- @TheJanzap made their first contribution in #2684
- @mmastrac made their first contribution in #2676
Full Changelog: v0.14.0...v0.15.0
v0.14.0
Key improvements:
- New cloud storage: Added Tencent Cloud Object Storage support
- New feature: SCCACHE_BASEDIRS environment variable for configuring multiple base directories
- GCC/Clang: Distributed compilation now supports assembly and preprocessor outputs
- Objective-C: Added header file (.h) support for consistency
- Platform support: Added macOS 15 Intel prebuilt binaries, FreeBSD 15.0 CI, s390x fixes
- Nix: Added sccache-dist to flake.nix
- Snap: Updated to core24
- Testing infrastructure: Integration tests reorganized with coverage reporting to Codecov.io
What's Changed
- Add Objective C Header for consistency by @AJIOB in #2559
- Move integration tests related stuff to subdir by @Felixoid in #2565
- build(deps): bump opendal from 0.54.0 to 0.55.0 by @sylvestre in #2567
- feat: support for Tencent Cloud Object Storage by @RinChanNOWWW in #2563
- Integration tests by @Felixoid in #2564
- ci: add macos-15-intel for prebuilt binary by @linrongbin16 in #2555
- try to unbreak s390x by @sylvestre in #2568
- fix(ci): remove outdated analysis mode by @not-matthias in #2569
- chore: update to syslog 7 by @tottoto in #2572
- ci: show diff for toml_format by @xtqqczze in #2574
- Add
SCCACHE_BASEDIRSsupport by @Felixoid in #2521 - Revert "ci: show diff for toml_format" by @sylvestre in #2578
- Extract LazyDiskCache to a separated file by @xis19 in #2573
- remove unused declaration by @sylvestre in #2577
- Distributed compilation support for asm & preprocessor outputs by @AJIOB in #2557
- ci: update freebsd to 15.0 by @svmhdvn in #2586
- chore: update to tokio-serde 0.9 by @tottoto in #2585
- docs: add comments about auth token requirements by @jullanggit in #2583
- Add .rustfmt.toml for consistent style between
rustfmtandcargo fmtby @Felixoid in #2582 - snap: update to core24 by @soumyaDghosh in #2570
- add benches for normalize_win_path strip_basedirs by @sylvestre in #2588
- docs: fix examples showing an xz-compress toolchain archive by @jullanggit in #2587
- actions: add security audit workflow by @xtqqczze in #2594
- clippy: fix implicit_clone lint by @xtqqczze in #2584
- chore: Integration tests, feature gate,
cache_type_namemethod by @Felixoid in #2596 - chore: update to nix 0.30 by @tottoto in #2589
- Extract FileObjectSource, CacheRead and CacheWrite from cache.rs to cache_io.rs by @xis19 in #2580
- Add sccache-dist to flake.nix by @jullanggit in #2579
- chore: Simplify
storage_from_configby @Felixoid in #2597 - ci: Add coverage to integration tests, report it to Codecov.io by @Felixoid in #2598
- chore: update to toml 0.9 by @tottoto in #2599
- prepare the new release by @sylvestre in #2600
New Contributors
- @RinChanNOWWW made their first contribution in #2563
- @linrongbin16 made their first contribution in #2555
- @not-matthias made their first contribution in #2569
- @xtqqczze made their first contribution in #2574
- @xis19 made their first contribution in #2573
- @svmhdvn made their first contribution in #2586
- @jullanggit made their first contribution in #2583
- @soumyaDghosh made their first contribution in #2570
Full Changelog: v0.13.0...v0.14.0
v0.13.0
Key improvements:
- MSVC: MSBuild support improvements, forward slash output dir handling, better /Fo argument parsing
- GCC/Clang: Assembly language support, C preprocessor output support, pipe flag ignoring, improved save-temps detection
- Fixed Clang -parallel-jobs hashing and added -fexperimental-assignment-tracking support
- New architecture support: Added RISC-V 64 (riscv64) support
- Distributed compilation: Now prints hostname info for remote jobs that failed; improved compiler
package handling with /etc/ld.so.conf.d - Nix support: Added Nix flake with installation documentation
- Added benchmarking infrastructure with CodSpeed
What's Changed
- deps: update blake3 by @ognevny in #2472
- chore: update to env_logger 0.11 by @tottoto in #2471
- Configuration.md - note logging env variables by @Andrej730 in #2480
- Update directories to 6.0 by @musicinmybrain in #2486
- Use generator in
CMAKE_MSVC_DEBUG_INFORMATION_FORMATin README by @Andrej730 in #2479 - chore: update to itertools 0.14 by @tottoto in #2487
- chore: drop tower dependency by @tottoto in #2488
- msvc: handle '/FoRelease' command-line argument by @jimis in #2482
- docs: bump MSRV to 1.85.0 by @deckstose in #2498
- Clippy fixes by @kornelski in #2490
- Fix build on macOS which doesn't have separate 32-bit dirent by @kornelski in #2492
- Avoid unreliable assert_cmd::cargo::cargo_bin by @kornelski in #2489
- chore: switch once_cell crate to standard library by @tottoto in #2499
- no check cfg by @etaloof in #2507
- Fix new warnings in CI by @kornelski in #2513
- fix: make aarch64-pc-windows-msvc also zip not tar.gz by @burhankhanzada in #2514
- feat: Add riscv64 support by @ffgan in #2512
- cuda: try to unbreak the ci by @sylvestre in #2515
- Print hostname info for remote jobs that ran, but failed by @ahartmetz in #2511
- chore: update to fs-err 3 by @tottoto in #2501
- Switch from the unmaintained daemonize crate to a maintained fork by @decathorpe in #2500
- add a nix flake by @TroyKomodo in #2518
- Support clang -fexperimental-assignment-tracking option by @avikivity in #2517
- docs: add installation steps for nix by @TroyKomodo in #2523
- fix: don't hash -parallel-jobs in Clang by @GZGavinZhao in #2529
- Fix failing test_rlib_dep_reader_call for omit CARGO_HOME by @Felixoid in #2527
- Add CanBeConcatenated to ArgInfo::cmp by @2over12 in #2506
- MSVC: support forward slash as an output dir marker by @AJIOB in #2535
- Improve save-temps gcc flags detection by @AJIOB in #2540
- Add GCC pipe flag ignoring support by @AJIOB in #2539
- Add support for C preprocessor output by @AJIOB in #2538
- dedup some code by @sylvestre in #2543
- add benchmarks by @sylvestre in #2530
- Assembly language support by @AJIOB in #2545
- Add /etc/ld.so.conf.d (if present) to compiler package by @ahartmetz in #2546
- add high level benchmarks by @sylvestre in #2547
- codspeed: evaluate the memory benchmarking by @sylvestre in #2548
- build(deps): bump rsa from 0.9.6 to 0.9.10 by @dependabot[bot] in #2542
- chore: update to gzp 2 by @tottoto in #2502
- msvc: fix detect_showincludes_prefix with MSBuild by @AJIOB in #2544
- sccache: prepare a new release by @sylvestre in #2550
- github action: fix the syntax - fails in the ci by @sylvestre in #2553
New Contributors
- @Andrej730 made their first contribution in #2480
- @musicinmybrain made their first contribution in #2486
- @deckstose made their first contribution in #2498
- @etaloof made their first contribution in #2507
- @burhankhanzada made their first contribution in #2514
- @ffgan made their first contribution in #2512
- @decathorpe made their first contribution in #2500
- @TroyKomodo made their first contribution in #2518
- @avikivity made their first contribution in #2517
- @Felixoid made their first contribution in #2527
- @2over12 made their first contribution in #2506
Full Changelog: v0.12.0...v0.13.0
v0.12.0
What's Changed
- bump opendal to 0.54.0 & reqsign to 0.18.0 by @sylvestre in #2459
- bump to rustc 1.85 / edition 2024 by @sylvestre in #2459
- build(deps): bump object from 0.36.7 to 0.37.1 by @dependabot[bot] in #2407
- Don't use CARGO_BUILD_JOBS in hash keys by @fsouza in #2328
- Update README with winget installation instructions by @ahoarau in #2461
- prepare version 0.12.0 by @sylvestre in #2467
- github action: when creating a release, make it as draft before by @sylvestre in #2458
New Contributors
Full Changelog: v0.11.0...v0.12.0
v0.11.0
sccache v0.11.0 introduces improved compiler flag support (including -fsanitize-ignorelist and Xclang flags), S3 virtual host endpoints, better logging with millisecond precision, expanded CI coverage (including sccache-dist and new platforms like s390x), and numerous fixes for reproducibility, Android builds, and preprocessor cache behavior. It also replaces legacy crates (num_cpus, retry), updates major dependencies (tokio, openssl, clap, ring), cleans up old code, and improves documentation and test reliability. This release welcomes 14 new contributors and continues modernizing the build and CI infrastructure.
What's Changed
- Apply clippy fixes and bump ghac from
v2tov4bump by @drahnr in #2341 - Allow using S3 virtual host style endpoints by @brndnmtthws in #2329
- Remove Rust jobserver fd reference by @samuel-jimenez in #2336
- Update CI coverage: grcov/codecov by @samuel-jimenez in #2348
- chore: replace num_cpus crate with available_parallelism in standard library by @tottoto in #2342
- Expand coverage to sccache-dist tests by @samuel-jimenez in #2350
- Fix non-strict HIP device lib order by @Snektron in #2217
- Bail on
nvcc -timeandnvcc -fdevice-time-traceflags by @trxcllnt in #2355 - Improve the CARGO_INCREMENTAL checking by @anholt in #2364
- fix(tests): Remove executable bit from oauth.rs by @cryptomilk in #2375
- feat(utils): Add support for object >= 0.33 by @cryptomilk in #2374
- Add support for Xclang '-mrelax-all' and '-mconstructor-aliases' flags. by @Snektron in #2371
- Give the --dist-status user some information about when a retry wil happen by @anholt in #2377
- chore: fix some comments by @timesince in #2381
- CI: Expand/improve test coverage by @samuel-jimenez in #2357
- Update codecov badge in README.md by @samuel-jimenez in #2387
- github storage: force version 2 by @sylvestre in #2385
- Add support for -fsanitize-ignorelist by @res0nance in #2390
- chore: Remove not working mozilla code by @Xuanwo in #2395
- Reword and correct the preprocessor cache mode documentation by @ahartmetz in #2362
- check if we can use a specific version of rust to build grcov by @sylvestre in #2410
- chore: fix some minor issues in comments by @houpo-bob in #2427
- Fix preprocessor cache mode + (distributed compilation || -MD dependency scanning) by @ahartmetz in #2392
- Direct mode doc fixes 3 by @ahartmetz in #2434
- Display a more user-friendly error when compiling on Linux/arm64 by @rtyler in #2435
- add description to sccache-dist commands by @iTrooz in #2413
- Don't run tests using Clang as CUDA compiler on Windows by @ahartmetz in #2444
- Fix symbolic links to sccache on Linux by @ahartmetz in #2439
- Remove or replace "Windows 2019" CI config by @ahartmetz in #2448
- chore: replace retry crate with backon by @tottoto in #2447
- test: add s390x to ci.yaml by @iurly in #2437
- Fix build on Android (in Termux) by @dfaure in #2442
- Account for clippy-driver having extra prefix
rustcby @bobrik in #2438 - Fix documentation of azure configuration by @jorendorff in #2445
- Fix mtime for reproducable toolchains by @nigredon1991 in #2430
- Ignore
--diagnostic-widthargument when computing hash by @shadaj in #2424 - fix: in stats, Compare values AND keys to have a fully deterministic order by @iTrooz in #2403
- feat: handle human size prefixes by @iTrooz in #2405
- logging: add a option to log milliseconds (Closes: #2454) by @sylvestre in #2455
- document SCCACHE_LOG_MILLIS by @sylvestre in #2456
- prepare version 0.11.0 by @sylvestre in #2457
Dependencies
- build(deps): bump ring from 0.17.7 to 0.17.13 by @dependabot[bot] in #2354
- build(deps): bump clap from 4.4.18 to 4.5.13 by @dependabot[bot] in #2347
- build(deps): bump chrono from 0.4.38 to 0.4.40 by @dependabot[bot] in #2346
- build(deps): bump tokio from 1.41.0 to 1.43.1 by @dependabot[bot] in #2379
- build(deps): bump openssl from 0.10.64 to 0.10.72 by @dependabot[bot] in #2378
- build(deps): bump memchr from 2.7.1 to 2.7.5 by @dependabot[bot] in #2406
- build(deps): bump chrono from 0.4.40 to 0.4.41 by @dependabot[bot] in #2391
- build(deps): bump chrono from 0.4.41 to 0.4.42 by @dependabot[bot] in #2440
- build(deps): bump actions/github-script from 7 to 8 by @dependabot[bot] in #2441
- build(deps): bump actions/download-artifact from 4 to 5 by @dependabot[bot] in #2433
- build(deps): bump actions/checkout from 4 to 5 by @dependabot[bot] in #2432
New Contributors
- @brndnmtthws made their first contribution in #2329
- @Snektron made their first contribution in #2217
- @cryptomilk made their first contribution in #2375
- @timesince made their first contribution in #2381
- @res0nance made their first contribution in #2390
- @houpo-bob made their first contribution in #2427
- @rtyler made their first contribution in #2435
- @iTrooz made their first contribution in #2413
- @iurly made their first contribution in #2437
- @dfaure made their first contribution in #2442
- @bobrik made their first contribution in #2438
- @jorendorff made their first contribution in #2445
- @nigredon1991 made their first contribution in #2430
- @shadaj made their first contribution in #2424
Full Changelog: v0.10.0...v0.11.0
v0.10.0
What's Changed
- chore: replace is-terminal with standard library by @tottoto in #2311
- Pass through
--remap-path-prefixargument. by @ColinFinck in #2270 - Scheduler: oversubscribe cores just a little to make up for slack by @ahartmetz in #2315
- CI: Move the the current LLVM stable by @sylvestre in #2323
- Don't cache dep file by @glandium in #2322
- Add bind_address config field by @samuel-jimenez in #2307
- Fix and update sccache for CUDA 12.8 by @trxcllnt in #2324
- lru: do not fail removing file if already removed by @ahayzen-kdab in #2334
- Clean up logging by @samuel-jimenez in #2335
- feat: Bump opendal to 0.52 to support ghac v2 by @Xuanwo in #2339
New Contributors
- @ahartmetz made their first contribution in #2315
- @samuel-jimenez made their first contribution in #2307
- @ahayzen-kdab made their first contribution in #2334
Full Changelog: v0.9.1...v0.10.0
v0.9.1
What's Changed
- cherry pick 2 patches from Debian by @sylvestre in #2295
- Always use sccache's own jobserver by @glandium in #2296
- Always decompose nvcc compilations by @trxcllnt in #2300
- Fix
test_rlib_dep_reader_callfailure edge case by @trxcllnt in #2298 - Add test for #2299 by @trxcllnt in #2301
- fix: bring "cargo build -Zprofile" support back by @Xuanwo in #2306
Fixes a regression with Rust coverage - Don't use CARGO_REGISTRIES_* configuration in hash keys by @kornelski in #2308
- Add support for caching target json specs for Rust compilation. by @ColinFinck in #2269
dependencies
New Contributors
- @ColinFinck made their first contribution in #2269
Full Changelog: v0.9.0...v0.9.1
v0.9.0
The sccache 0.9.0 release introduces several improvements and fixes, including support for nvcc in sccache-dist (contributed by Nvidia), enhanced Xcode integration with new features and streamlined CI processes, and the addition of Unix Domain Socket (UDS) support for improved performance. Key fixes include resolving cache collisions with object files and precompiled headers, correcting debug information file generation for .dwo files, and ensuring proper argument handling for rustc with -Z ls. Updates also align profiling practices with modern Rust standards by replacing outdated -Zprofile options. Other enhancements include user agent configuration in WebDAV requests, compatibility with CUDA Toolkit 11.1, and improved documentation formatting.
What's Changed
- Support
nvccinsccache-distby @trxcllnt in #2247 - feat: set user agent in webdav requests by @lukevmorris in #2284
- Implement features required by Xcode by @scoopr in #2257
- *: add UDS support by @BusyJay in #2206
- Fix cache collision with object file and precompiled headers by @jimis in #2268
- Simplify Xcode CI / Docs by @scoopr in #2266
- feat: Use profile-generate to replace outdated -Zprofile options by @Xuanwo in #2282
- Fix: fix sccache bug for dwo file generate by @zhouronghua in #2271
- Pass correct argument to rustc -Z ls by @lissyx in #2291
- Fix sccache for CTK 11.1 and properly track compilations in stats by @trxcllnt in #2285
- docs: fix formatting in Caching by @dtrifiro in #2267
- prepare release 0.9.0 by @sylvestre in #2293
Dependencies
- chore(docs): bump the github script version used in GHA by @kemingy in #2281
- refactor: Bump OpenDAL to 0.50 by @Xuanwo in #2283
- build(deps): bump codecov/codecov-action from 4 to 5 by @dependabot in #2289
New Contributors
- @scoopr made their first contribution in #2257
- @dtrifiro made their first contribution in #2267
- @jimis made their first contribution in #2268
- @BusyJay made their first contribution in #2206
- @kemingy made their first contribution in #2281
- @zhouronghua made their first contribution in #2271
- @lukevmorris made their first contribution in #2284
Full Changelog: v0.8.2...v0.9.0
v0.8.2
What's Changed
- Disable preprocessor cache with -MD and friends by @glandium in #2195
- Avoid keeping lock while writing to disk cache by @glandium in #2193
- Log when preprocessor cache cannot be used by @glandium in #2197
- Update CI version of macOS by @aeiouaeiouaeiouaeiouaeiouaeiou in #2212
- Add lost feature status by @AJIOB in #2225
- Remove the heapsize feature by @glandium in #2226
- Add custom zstd compression level by @nyanrus in #2199
- Add cache hit percentage to stats by @Saruniks in #2211
- Add windows arm64 to the CI by @hjyamauchi in #2243
- fix: Force disable "warnings as errors" flag for CL preprocessing by @AJIOB in #2251
- Update FreeBSD docs to refer to 14.1 by @yonas in #2263
Dependencies
- deps: bump libc from 0.2.153 to 0.2.155 by @huajingyun01 in #2188
- refactor: Bump MSRV to 1.75 for async in trait by @Xuanwo in #2203
- refactor: Bump OpenDAL to 0.47 by @Xuanwo in #2202
- build(deps): bump anyhow from 1.0.81 to 1.0.86 by @dependabot in #2190
- build(deps): bump async-trait from 0.1.77 to 0.1.80 by @dependabot in #2191
- build(deps): bump zstd from 0.13.0 to 0.13.1 by @dependabot in #2189
- build(deps): bump uuid from 1.7.0 to 1.9.0 by @dependabot in #2213
- build(deps): bump reqwest from 0.12.4 to 0.12.5 by @dependabot in #2215
- build(deps): update OpenDAL to 0.47.3 by @AJIOB in #2221
- build(deps): bump vmactions/freebsd-vm from 1.0.7 to 1.0.8 by @dependabot in #2219
- refactor: use windows-sys instead of winapi by @Berrysoft in #2233
- deps: update winapi-util by @ognevny in #2236
- feat: Bump opendal to 0.48.0 by @Xuanwo in #2240
- build(deps): bump log from 0.4.20 to 0.4.22 by @dependabot in #2218
- build(deps): bump which from 6.0.0 to 6.0.3 by @dependabot in #2252
- build(deps): bump quinn-proto from 0.11.3 to 0.11.8 by @dependabot in #2254
- build(deps): bump jobserver from 0.1.31 to 0.1.32 by @dependabot in #2255
New Contributors
- @huajingyun01 made their first contribution in #2188
- @nyanrus made their first contribution in #2199
- @Saruniks made their first contribution in #2211
- @Berrysoft made their first contribution in #2233
- @ognevny made their first contribution in #2236
- @hjyamauchi made their first contribution in #2243
- @yonas made their first contribution in #2263
Full Changelog: v0.8.1...v0.8.2
v0.8.1
What's Changed
- Fix the README working (Closes: #2154) by @sylvestre in #2156
- README: Remove duplicated info about openssl vendoring by @sylvestre in #2157
- Add required winapi features by @Systemcluster in #2160
- msvc: passthrough argument -Qpar- by @AudranDoublet in #1834
- Disable preprocessor cache when doing distributed compilation by @glandium in #2173
- Allow SCCACHE_CACHE_SIZE values without a unit by @glandium in #2183
- Make recent versions of clippy happy by @glandium in #2181
- Make preprocessor cache methods async by @glandium in #2182
- sccache: prepare new release by @sylvestre in #2179
Dependencies
- build(deps): bump serial_test from 2.0.0 to 3.1.0 by @dependabot in #2158
- build(deps): bump rustls from 0.21.10 to 0.21.11 by @dependabot in #2151
- build(deps): bump h2 from 0.3.24 to 0.3.26 by @dependabot in #2144
- build(deps): bump mio from 0.8.10 to 0.8.11 by @dependabot in #2128
- build(deps): bump nix from 0.27.1 to 0.28.0 by @dependabot in #2108
- build(deps): bump semver from 1.0.21 to 1.0.22 by @dependabot in #2109
- build(deps): bump serde from 1.0.195 to 1.0.199 by @dependabot in #2162
- build(deps): bump serde from 1.0.199 to 1.0.201 by @dependabot in #2171
- build(deps): bump http-body-util from 0.1.0 to 0.1.1 by @dependabot in #2167
- build(deps): bump tokio from 1.35.1 to 1.37.0 by @dependabot in #2165
- build(deps): bump jobserver from 0.1.28 to 0.1.31 by @dependabot in #2166
- build(deps): bump time from 0.3.31 to 0.3.36 by @glandium in #2184
- build(deps): bump tempfile from 3.9.0 to 3.10.1 by @dependabot in #2175
- build(deps): bump semver from 1.0.22 to 1.0.23 by @dependabot in #2177
- build(deps): bump encoding_rs from 0.8.33 to 0.8.34 by @dependabot in #2178
- build(deps): bump bytes from 1.5.0 to 1.6.0 by @dependabot in #2176
New Contributors
- @Systemcluster made their first contribution in #2160
- @AudranDoublet made their first contribution in #1834
Full Changelog: v0.8.0...v0.8.1