Skip to content

Commit

Permalink
Bump tests/acquire-driver-zarr from e6abd82 to b1f1ff3
Browse files Browse the repository at this point in the history
Bumps [tests/acquire-driver-zarr](https://github.com/acquire-project/acquire-driver-zarr) from `e6abd82` to `b1f1ff3`.
- [Release notes](https://github.com/acquire-project/acquire-driver-zarr/releases)
- [Commits](acquire-project/acquire-driver-zarr@e6abd82...b1f1ff3)

---
updated-dependencies:
- dependency-name: tests/acquire-driver-zarr
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 28, 2024
1 parent 7136a20 commit 1a2af0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/acquire-driver-zarr
Submodule acquire-driver-zarr updated 80 files
+82 −5 .github/workflows/build.yml
+79 −6 .github/workflows/release.yml
+22 −36 .github/workflows/test_pr.yml
+3 −0 .gitmodules
+16 −0 CHANGELOG.md
+22 −2 CMakeLists.txt
+12 −0 CMakePresets.json
+20 −0 README.md
+1 −1 acquire-common
+1 −0 acquire-zarr
+1 −0 examples/CMakeLists.txt
+1 −1 examples/no-striping.cpp
+112 −0 include/acquire.zarr.h
+128 −0 include/zarr.types.h
+0 −2 src/3rdParty/CMakeLists.txt
+0 −23 src/3rdParty/cblosc/CMakeLists.txt
+0 −45 src/3rdParty/cblosc/inc/blosc-export.h
+0 −545 src/3rdParty/cblosc/inc/blosc.h
+ src/3rdParty/cblosc/lib/linux-amd64/libblosc-debug.a
+ src/3rdParty/cblosc/lib/linux-amd64/libblosc.a
+0 −20 src/3rdParty/cblosc/lib/osx/README.md
+ src/3rdParty/cblosc/lib/osx/libblosc-debug.a
+ src/3rdParty/cblosc/lib/osx/libblosc.a
+ src/3rdParty/cblosc/lib/win64/libblosc-debug.lib
+ src/3rdParty/cblosc/lib/win64/libblosc.lib
+ src/3rdParty/cblosc/lib/win64/libblosc.pdb
+0 −6 src/3rdParty/json/CMakeLists.txt
+0 −24,596 src/3rdParty/json/inc/json.hpp
+23 −22 src/CMakeLists.txt
+0 −46 src/README.md
+0 −243 src/common.cpp
+0 −155 src/common.hh
+0 −37 src/writers/blosc.compressor.cpp
+0 −56 src/writers/blosc.compressor.hh
+0 −1,301 src/writers/writer.cpp
+0 −133 src/writers/writer.hh
+0 −384 src/writers/zarrv2.writer.cpp
+0 −38 src/writers/zarrv2.writer.hh
+0 −864 src/writers/zarrv3.writer.cpp
+0 −41 src/writers/zarrv3.writer.hh
+0 −726 src/zarr.cpp
+0 −92 src/zarr.hh
+931 −0 src/zarr.storage.cpp
+55 −0 src/zarr.storage.hh
+0 −275 src/zarr.v2.cpp
+0 −32 src/zarr.v2.hh
+0 −229 src/zarr.v3.cpp
+0 −31 src/zarr.v3.hh
+74 −74 tests/CMakeLists.txt
+22 −0 tests/README.md
+2 −2 tests/get-meta.cpp
+212 −0 tests/get-set-get.cpp
+18 −17 tests/get.cpp
+0 −24,596 tests/json.hpp
+368 −0 tests/metadata-dimension-sizes.cpp
+14 −13 tests/multiscales-metadata.cpp
+20 −20 tests/repeat-start.cpp
+2 −2 tests/restart-stopped-zarr-resets-threadpool.cpp
+0 −114 tests/unit-tests.cpp
+21 −18 tests/write-zarr-v2-compressed-multiscale.cpp
+21 −18 tests/write-zarr-v2-compressed-with-chunking-and-rollover.cpp
+21 −18 tests/write-zarr-v2-compressed-with-chunking.cpp
+21 −18 tests/write-zarr-v2-raw-chunk-size-larger-than-frame-size.cpp
+21 −18 tests/write-zarr-v2-raw-multiscale-with-trivial-tile-size.cpp
+21 −18 tests/write-zarr-v2-raw-multiscale.cpp
+21 −18 tests/write-zarr-v2-raw-with-even-chunking-and-rollover.cpp
+21 −18 tests/write-zarr-v2-raw-with-even-chunking.cpp
+21 −18 tests/write-zarr-v2-raw-with-ragged-chunking.cpp
+22 −18 tests/write-zarr-v2-raw.cpp
+366 −0 tests/write-zarr-v2-to-s3.cpp
+21 −18 tests/write-zarr-v2-with-lz4-compression.cpp
+21 −18 tests/write-zarr-v2-with-zstd-compression.cpp
+13 −9 tests/write-zarr-v3-compressed.cpp
+17 −13 tests/write-zarr-v3-raw-chunk-exceeds-array.cpp
+357 −0 tests/write-zarr-v3-raw-multiscale.cpp
+32 −28 tests/write-zarr-v3-raw-with-ragged-sharding.cpp
+24 −20 tests/write-zarr-v3-raw.cpp
+362 −0 tests/write-zarr-v3-to-s3.cpp
+14 −0 vcpkg-configuration.json
+16 −0 vcpkg.json

0 comments on commit 1a2af0f

Please sign in to comment.