diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c13adeb..96b8ce3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,30 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html) ## [Unreleased] +## [v0.13.0] - 2025-01-28 + +### Changed +- Integration tests: Test are no longer randomized! this means each fail should be reproducible, we are testing the most + popular datasets from all DAACs, see files under tests/integration/popular_collections. + ([#215](https://github.com/nsidc/earthaccess/issues/215)) + ([**@mfisher87**](https://github.com/mfisher87)) + +### Added +- VirtualiZarr: earthaccess can open archival formats (NetCDF, HDF5) as if they were Zarr by leveraging VirtualiZarr + In order to use this capability the collection needs to be supported by OPeNDAP and have dmrpp files. + See [example notebooks](https://github.com/nsidc/earthaccess/blob/main/docs/tutorials/dmrpp-virtualizarr.ipynb)! + ([**@ayushnag**](https://github.com/ayushnag) and [**@TomNicholas**](https://github.com/TomNicholas/)) + ### Fixed - `earthaccess.download` will let requests automatically decode compressed content ([#887](https://github.com/nsidc/earthaccess/issues/887)) ([**@itcarroll**](https://github.com/itcarroll)) +- `earthaccess.download` now shares the authenticated session cookie among threads to avoid overloading EDL. + ([#913](https://github.com/nsidc/earthaccess/issues/913)) + ([**@hailiangzhang**](https://github.com/hailiangzhang)) + ## [v0.12.0] - 2024-11-13 ### Changed @@ -663,7 +681,8 @@ _Conception!_ - Add basic classes to interact with NASA CMR, EDL and cloud access. - Basic object formatting. -[Unreleased]: https://github.com/nsidc/earthaccess/compare/v0.12.0...HEAD +[Unreleased]: https://github.com/nsidc/earthaccess/compare/v0.13.0...HEAD +[0.13.0]: https://github.com/nsidc/earthaccess/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/nsidc/earthaccess/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/nsidc/earthaccess/releases/tag/v0.11.0 [0.10.0]: https://github.com/nsidc/earthaccess/releases/tag/v0.10.0 diff --git a/CITATION.cff b/CITATION.cff index 1b39f9ed..54a0fd3b 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -26,8 +26,8 @@ keywords: url: "https://earthaccess.readthedocs.io" repository-code: "https://github.com/nsidc/earthaccess" -version: "0.12.0" -date-released: "2024-11-13" +version: "0.13.0" +date-released: "2025-01-28" authors: - family-names: "Barrett" diff --git a/pyproject.toml b/pyproject.toml index bb904f2b..92f77886 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "earthaccess" -version = "0.12.0" +version = "0.13.0" description = "Client library for NASA Earthdata APIs" authors = [ {name = "earthaccess contributors"} @@ -184,7 +184,7 @@ combine-as-imports = true convention = "google" [tool.bumpversion] -current_version = "0.12.0" +current_version = "0.13.0" commit = false tag = false regex = true