You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
7
7
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
9
+
## [0.5.4]
10
+
### Changed
11
+
*[701](https://github.com/dbekaert/RAiDER/pull/701) - Fixed a few path typos and handle some edge cases, add unit tests, lint project
12
+
*[672](https://github.com/dbekaert/RAiDER/pull/672) - Linted the project with `ruff`.
13
+
*[683](https://github.com/dbekaert/RAiDER/pull/683) - Fixed a naive datetime and added default template to template generation argument
14
+
*`prepFromGunw.check_weather_model_availability` now returns `False` for HRRR when outside the CONUS or AK coverage areas, rather than raising `ValueError`.
15
+
As a result, HRRR jobs run via HyP3 for GUNWs outside HRRR coverage will exit successfully without making any changes to the GUNW.
16
+
17
+
### Fixed
18
+
*[700](https://github.com/dbekaert/RAiDER/pull/700) - Fixed a few path typos and handle some edge cases
19
+
*[679](https://github.com/dbekaert/RAiDER/pull/679) - Fixed a bug causing test_updateTrue to falsely pass.
20
+
*[685](https://github.com/dbekaert/RAiDER/pull/679) - Fixed a global bbox bug in checkContainment
21
+
* Pinned to `herbie-data<2025.2.1` to address failing HRRR AK tests introduced with the 2025.2.1 release on 2025-02-18.
22
+
9
23
## [0.5.3]
10
24
### Fixed
11
25
* Updates dem-stitcher to 2.5.8 to ensure new (ARIA-managed) url for reading the Geoid EGM 2008. See this [issue](https://github.com/ACCESS-Cloud-Based-InSAR/dem-stitcher/issues/96).
26
+
*[674](https://github.com/dbekaert/RAiDER/pull/674#issue-2412467565) - Update tests to get rid of extra files created when running tests.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,22 @@ git commit -a -m "Put here the synthetic commit message"
111
111
git push my_user_name my_new_feature_branch
112
112
```
113
113
114
+
### Formatting and linting with [Ruff](https://docs.astral.sh/ruff/) ###
115
+
116
+
Format your code to follow the style of the project with:
117
+
```
118
+
ruff format
119
+
```
120
+
and check for linting problems with:
121
+
```
122
+
ruff check
123
+
```
124
+
Please ensure that any linting problems in your changes are resolved before
125
+
submitting a pull request.
126
+
> [!TIP]
127
+
> vscode users can [install the ruff extension](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) to run the linter automatically in the
128
+
editor.
129
+
114
130
### Issue a pull request from GitHub UI ###
115
131
commit locally and push. To get a reasonable history, you may need to
0 commit comments