Skip to content

Commit

Permalink
chore: update pre-commit hooks (#586)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Chuck Daniels <chuck@developmentseed.org>
  • Loading branch information
pre-commit-ci[bot] and chuckwondo committed Jun 10, 2024
1 parent 942d824 commit 56ef184
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 90 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:
- id: check-json

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
rev: v0.4.7
hooks:
- id: ruff
args: ["--fix", "--exit-non-zero-on-fix"]
Expand All @@ -26,7 +26,7 @@ repos:
exclude: ".*/vcr_cassettes/.*\\.yaml"

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.4"
rev: "v2.3.0"
hooks:
- id: "codespell"
exclude: ".codespellignore|tests/.*"
Expand Down
182 changes: 97 additions & 85 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,178 +43,190 @@
## [v0.9.0] 2024-02-28

* Bug fixes:
* fixed #439 by implementing more trusted domains in the SessionWithRedirection
* fixed #438 by using an authenticated session for hits()
* fixed #439 by implementing more trusted domains in the SessionWithRedirection
* fixed #438 by using an authenticated session for hits()
* Enhancements:
* addressing #427 by adding parameters to collection query
* added user-agent in the request to track usage, closes #436
* addressing #427 by adding parameters to collection query
* added user-agent in the request to track usage, closes #436

## [v0.8.2] 2023-12-06

* Bug fixes:
* Enable AWS check with IMDSv2
* Add region to running in AWS check
* Handle opening multi-file granules
* Enable AWS check with IMDSv2
* Add region to running in AWS check
* Handle opening multi-file granules
* Maintenance:
* Add CI tests with minimum supported versions
* Update poetry lockfile
* Add `python-dateutil` as a direct dependency
* Remove binder PR comments
* Add YAML formatting (prettier)
* Add CI tests with minimum supported versions
* Update poetry lockfile
* Add `python-dateutil` as a direct dependency
* Remove binder PR comments
* Add YAML formatting (prettier)

## [v0.8.1] 2023-12-01

* New Features:
* Add `kerchunk` metadata consolidation utility.
* Add `kerchunk` metadata consolidation utility.
* Enhancements:
* Handle S3 credential expiration more gracefully.
* Handle S3 credential expiration more gracefully.
* Maintenanece:
* Use dependabot to update Github Actions.
* Consolidate dependabot updates.
* Switch to `ruff` for formatting.
* Use dependabot to update Github Actions.
* Consolidate dependabot updates.
* Switch to `ruff` for formatting.

## [v0.8.0] 2023-11-29

* Bug fixes:
* Fix zero granules being reported for restricted datasets.
* Fix zero granules being reported for restricted datasets.
* Enhancements:
* earthaccess will `raise` errors instead of `print`ing them in more cases.
* `daac` and `provider` parameters are now normalized to uppercase, since lowercase
* earthaccess will `raise` errors instead of `print`ing them in more cases.
* `daac` and `provider` parameters are now normalized to uppercase, since lowercase
characters are never valid.

## [v0.7.1] 2023-11-08

* Bug Fixes:
* Treat granules without `RelatedUrls` as not cloud-hosted.
* Treat granules without `RelatedUrls` as not cloud-hosted.

## [v0.7.0] 2023-10-31

* Bug Fixes:
* Fix spelling mistake in `access` variable assignment (`direc` -> `direct`)
* Fix spelling mistake in `access` variable assignment (`direc` -> `direct`)
in `earthaccess.store._get_granules`.
* Pass `threads` arg to `_open_urls_https` in
* Pass `threads` arg to `_open_urls_https` in
`earthaccess.store._open_urls`, replacing the hard-coded value of 8.
* Return S3 data links by default when in region.
* Return S3 data links by default when in region.
* Enhancements:
* `earthaccess.download` now accepts a single granule as input in addition to a list of granules.
* `earthaccess.download` now returns fully qualified local file paths.
* `earthaccess.download` now accepts a single granule as input in addition to a list of granules.
* `earthaccess.download` now returns fully qualified local file paths.
* New Features:
* Earthaccess will now automatically search for Earthdata authentication. ``earthaccess.login()``
* Earthaccess will now automatically search for Earthdata authentication. ``earthaccess.login()``
still works as before, but is no longer required if you have a ``~/.netrc`` file for have set
``EARTHDATA_USERNAME`` and ``EARTHDATA_PASSWORD`` environment variables.
* Add `earthaccess.auth_environ()` utility for getting Earthdata authentication environment variables.
* Add `earthaccess.auth_environ()` utility for getting Earthdata authentication environment variables.

## [v0.6.0] 2023-09-20

* bug fixes:
* earthaccess.search_datasets() and earthaccess.search_data() can find restricted datasets #296
* distributed serialization fixed for EarthAccessFile #301 and #276
* earthaccess.search_datasets() and earthaccess.search_data() can find restricted datasets #296
* distributed serialization fixed for EarthAccessFile #301 and #276
* new features:
* earthaccess.get_s3fs_session() can use the results to find the right set of S3 credentials
* earthaccess.get_s3fs_session() can use the results to find the right set of S3 credentials

## [v0.5.3] 2023-08-01

* bug fixes:
* granule's size() returned zero
* Added exception handling for fsspec sessions, thanks to @jrbourbeau
* granule's size() returned zero
* Added exception handling for fsspec sessions, thanks to @jrbourbeau
* CI changes:
* integration tests are now only run when we push to main (after a merge)
* unit tests run for any branch and opened PR
* integration tests are now only run when we push to main (after a merge)
* unit tests run for any branch and opened PR

## [v0.5.2] 2023-04-21

* bug fixes:
* Fixing #230 by removing Benedict as the dict handler, thanks to @psarka!
* S3 credential endpoints are tried with tokens and basic auth until all the DAACs accept the same auth
* Fixing #230 by removing Benedict as the dict handler, thanks to @psarka!
* S3 credential endpoints are tried with tokens and basic auth until all the DAACs accept the same auth

* Core dependencies:
* Removed Benedict as the default dict for JSON coming from CMR.
* Removed Benedict as the default dict for JSON coming from CMR.

## [v0.5.1] 2023-03-20

* bug fixes:
* get_s3_credentials() only worked when a netrc file was present, bug reported by @scottyhq and @JessicaS11
* including tests for all DAAC S3 endpoints
* Notebooks updated to use the new top level API
* removed magic from dependencies (not available in windows and not used but just in tests)
* get_s3_credentials() only worked when a netrc file was present, bug reported by @scottyhq and @JessicaS11
* including tests for all DAAC S3 endpoints
* Notebooks updated to use the new top level API
* removed magic from dependencies (not available in windows and not used but just in tests)

* CI changes:
* documentation for readthedocs fixed by including poetry as the default tool
* injected new secrets to test Auth using the icepyx convention (EARTHDATA_USERNAME)
* documentation for readthedocs fixed by including poetry as the default tool
* injected new secrets to test Auth using the icepyx convention (EARTHDATA_USERNAME)
* New Features
* we can get the user's profile with auth.user_profile which includes the user email
* added LAAD as a supported DAAC
* we can get the user's profile with auth.user_profile which includes the user email
* added LAAD as a supported DAAC

## [v0.5.0] 2023-02-23

* bug fixes:
* @JessicaS11 fixed a bug where the Auth class was invoked without the proper parameters
* if a user specifies the netrc strategy and there is no netrc an exception is raised
* S3 URLs broke the Store class when opened outside AWS
* Opening files using URLs was not working properly on AWS, thanks to @amfriesz for reporting it!
* @JessicaS11 fixed a bug where the Auth class was invoked without the proper parameters
* if a user specifies the netrc strategy and there is no netrc an exception is raised
* S3 URLs broke the Store class when opened outside AWS
* Opening files using URLs was not working properly on AWS, thanks to @amfriesz for reporting it!
* CI changes:
* documentation is now only built for the main, dev and documentation branches
* noteboks are executed every time the documentation gets published!
* documentation is now only built for the main, dev and documentation branches
* notebooks are executed every time the documentation gets published!
* New features:
* we can now use the top level API to get S3 credentials, authenticated fsspec and requests sessions!
* ASF direct access for Sentinel1 products is now available
* we can now use the top level API to get S3 credentials, authenticated fsspec and requests sessions!
* ASF direct access for Sentinel1 products is now available

## [v0.4.7] 2022-12-11

* bug fixes:
* fixed open() for direct access
* python-magic is a test dependency so moved to the dev section.
* Minor edits in the README
* fixed open() for direct access
* python-magic is a test dependency so moved to the dev section.
* Minor edits in the README

## [v0.4.6] 2022-12-08

* Features:
* search collections by DOI
* new API documentation and simplified notation to access data
* search collections by DOI
* new API documentation and simplified notation to access data
* CI changes:
* only run the publish workflow after a release on github
* only run the publish workflow after a release on github

## [v0.4.1] 2022-11-02

* improved documentation:
* reimplemented python_cmr methods for docstring compatibility
* added types to method signatures
* reimplemented python_cmr methods for docstring compatibility
* added types to method signatures
* Using `CMR-Search-After` see #145

* CI changes:
* Poetry is installed using the new script
* Dependabot alerts to monthly
* Poetry is installed using the new script
* Dependabot alerts to monthly

* Added GES_DISC S3 endpoint

## [v0.4.0] 2022-08-17

* `store`
* uses fsspec s3fs for in cloud access and https sessions for out of region access
* we can open files with fsspec in and out of region (stream into xarray)
* uses fsspec s3fs for in cloud access and https sessions for out of region access
* we can open files with fsspec in and out of region (stream into xarray)
* `auth`
* we can persist our credentials into a `.netrc` file
* we can persist our credentials into a `.netrc` file

* Documentation
* added store, auth to docs and updated mkdocs congif

* added store, auth to docs and updated mkdocs config

## [v0.3.0] 2022-04-28

- Fixed bug with CMR tokens
- dropped python 3.7 support
- updated python-cmr to NASA fork
- added documentation for readthedocs and github
- verifying git tag and poetry version are the same before publish to pypi
- Auth can refresh CMR tokens
- Dropped unused `pydantic` dependency
- Added missing `python-datutil` dependency
* Fixed bug with CMR tokens
* dropped python 3.7 support
* updated python-cmr to NASA fork
* added documentation for readthedocs and github
* verifying git tag and poetry version are the same before publish to pypi
* Auth can refresh CMR tokens
* Dropped unused `pydantic` dependency
* Added missing `python-datutil` dependency

## [v0.2.2] 2022-03-23
- Bug fixes to store to download multi-file granules
- Fix granule formatting

* Bug fixes to store to download multi-file granules

* Fix granule formatting

## [v0.2.1] 2022-03-19
- Renamed Accessor to Store
- relaxed dependency requirements
- Store can download plain links if they are on prem

* Renamed Accessor to Store

* relaxed dependency requirements
* Store can download plain links if they are on prem

## [v0.1.0-beta.1] - 2021-09-21

- Conception!
- Add basic classes to interact with NASA CMR, EDL and cloud access.
- Basic object formatting.
* Conception!
* Add basic classes to interact with NASA CMR, EDL and cloud access.
* Basic object formatting.

[Unreleased]: https://github.com/nsidc/earthaccess/compare/v0.9.0...HEAD
[v0.8.2]: https://github.com/nsidc/earthaccess/releases/tag/v0.8.2
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
level of experience, education, socioeconomic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards
Expand Down
4 changes: 2 additions & 2 deletions earthaccess/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def doi(self, doi: str) -> Self:
return self

def instrument(self, instrument: str) -> Self:
"""Searh datasets by instrument.
"""Search datasets by instrument.
???+ Tip
Not all datasets have an associated instrument. This works
Expand All @@ -248,7 +248,7 @@ def instrument(self, instrument: str) -> Self:
return self

def project(self, project: str) -> Self:
"""Searh datasets by associated project.
"""Search datasets by associated project.
???+ Tip
Not all datasets have an associated project. This works
Expand Down

0 comments on commit 56ef184

Please sign in to comment.