Skip to content

Commit

Permalink
Bump deps/zstd from 8689633 to 6b16169
Browse files Browse the repository at this point in the history
Bumps [deps/zstd](https://github.com/facebook/zstd) from `8689633` to `6b16169`.
- [Release notes](https://github.com/facebook/zstd/releases)
- [Commits](facebook/zstd@8689633...6b16169)

---
updated-dependencies:
- dependency-name: deps/zstd
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Aug 6, 2024
1 parent 131196c commit 1a52fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/zstd
Submodule zstd updated 99 files
+0 −1 .cirrus.yml
+89 −0 .github/workflows/commit.yml
+21 −21 .github/workflows/dev-long-tests.yml
+59 −3 .github/workflows/dev-short-tests.yml
+65 −0 .github/workflows/nightly.yml
+2 −2 .github/workflows/scorecards.yml
+1 −1 .github/workflows/windows-artifacts.yml
+40 −3 CHANGELOG
+6 −6 Makefile
+24 −14 README.md
+16 −22 build/VS_scripts/build.generic.cmd
+19 −3 build/cmake/CMakeLists.txt
+1 −1 build/cmake/CMakeModules/AddZstdCompilationFlags.cmake
+28 −10 build/cmake/lib/CMakeLists.txt
+3 −3 build/cmake/tests/CMakeLists.txt
+7 −2 build/meson/meson.build
+1 −1 build/meson/meson_options.txt
+1 −1 contrib/gen_html/Makefile
+36 −0 contrib/linux-kernel/linux_zstd.h
+56 −0 contrib/linux-kernel/zstd_compress_module.c
+2 −5 contrib/pzstd/Makefile
+21 −0 doc/decompressor_errata.md
+80 −0 doc/decompressor_permissive.md
+1 −1 doc/educational_decoder/Makefile
+9 −4 doc/zstd_compression_format.md
+32 −8 doc/zstd_manual.html
+23 −5 lib/Makefile
+4 −0 lib/README.md
+8 −0 lib/common/bits.h
+7 −5 lib/common/compiler.h
+36 −0 lib/common/cpu.h
+5 −1 lib/common/debug.h
+2 −0 lib/common/fse_decompress.c
+6 −0 lib/common/mem.h
+1 −1 lib/common/portability_macros.h
+32 −3 lib/common/xxhash.h
+12 −0 lib/common/zstd_deps.h
+1 −1 lib/compress/fse_compress.c
+96 −51 lib/compress/zstd_compress.c
+7 −0 lib/compress/zstd_compress_internal.h
+4 −6 lib/compress/zstd_compress_superblock.c
+4 −4 lib/compress/zstd_double_fast.c
+3 −4 lib/compress/zstd_fast.c
+17 −17 lib/compress/zstd_lazy.c
+2 −2 lib/compress/zstd_opt.c
+2 −2 lib/compress/zstdmt_compress.c
+22 −1 lib/decompress/huf_decompress_amd64.S
+30 −17 lib/decompress/zstd_decompress.c
+2 −2 lib/decompress/zstd_decompress_block.c
+74 −29 lib/dictBuilder/cover.c
+2 −8 lib/dictBuilder/cover.h
+2 −2 lib/legacy/zstd_v02.c
+2 −2 lib/legacy/zstd_v03.c
+4 −0 lib/legacy/zstd_v06.c
+2 −4 lib/libzstd.mk
+2 −2 lib/libzstd.pc.in
+108 −59 lib/zstd.h
+4 −4 programs/Makefile
+1 −1 programs/dibio.c
+116 −18 programs/fileio.c
+2 −3 programs/fileio_asyncio.c
+1 −2 programs/platform.h
+20 −8 programs/util.c
+337 −152 programs/zstd.1
+188 −170 programs/zstd.1.md
+5 −5 programs/zstdcli.c
+11 −2 programs/zstdgrep.1
+7 −2 programs/zstdless.1
+3 −0 tests/.gitignore
+28 −18 tests/Makefile
+8 −3 tests/bigdict.c
+0 −1 tests/cli-tests/common/platform.sh
+49 −0 tests/cli-tests/file-handling/directory-mirror.sh
+0 −0 tests/cli-tests/file-handling/directory-mirror.sh.stderr.exact
+0 −0 tests/cli-tests/file-handling/directory-mirror.sh.stdout.exact
+70 −8 tests/decodecorpus.c
+10 −2 tests/fuzz/Makefile
+42 −0 tests/fuzz/README.md
+130 −0 tests/fuzz/decompress_cross_format.c
+7 −1 tests/fuzz/fuzz.py
+5 −5 tests/fuzz/fuzz_data_producer.c
+88 −0 tests/fuzz/generate_sequences.c
+2 −1 tests/fuzz/regression_driver.c
+1 −1 tests/fuzz/sequence_compression_api.c
+15 −5 tests/fuzz/simple_decompress.c
+1 −1 tests/fuzz/stream_round_trip.c
+26 −1 tests/fuzzer.c
+1 −0 tests/golden-decompression-errors/.gitignore
+ tests/golden-decompression-errors/off0.bin.zst
+ tests/golden-decompression-errors/truncated_huff_state.zst
+ tests/golden-decompression-errors/zeroSeq_extraneous.zst
+1 −1 tests/gzip/Makefile
+128 −0 tests/largeDictionary.c
+0 −1 tests/paramgrill.c
+88 −3 tests/playTests.sh
+2 −0 tests/regression/result.c
+105 −2 tests/zstreamtest.c
+2 −2 zlibWrapper/examples/minigzip.c
+2 −1 zlibWrapper/gzwrite.c

0 comments on commit 1a52fbb

Please sign in to comment.