Skip to content

Commit f3510be

Browse files
committed
update changelog, pre-commit versions
1 parent 233df6f commit f3510be

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
repos:
22
- repo: https://github.com/PyCQA/flake8
3-
rev: 6.1.0
3+
rev: 7.0.0
44
hooks:
55
- id: flake8
66
- repo: https://github.com/timothycrosley/isort
7-
rev: 5.12.0
7+
rev: 5.13.2
88
hooks:
99
- id: isort
1010
args: ["--profile", "black"]
1111
- repo: https://github.com/psf/black
12-
rev: 23.11.0
12+
rev: 24.1.1
1313
hooks:
1414
- id: black
1515
language_version: python3.8
1616
- repo: https://github.com/pre-commit/mirrors-mypy
17-
rev: v1.7.0
17+
rev: v1.8.0
1818
hooks:
1919
- id: mypy
2020
exclude: /tests/

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
88

99
### Added
1010

11+
- Added ability to validate response from a /collections endpoint [#220](https://github.com/stac-utils/stac-validator/issues/220)
1112
- Added mypy to pre-commit config ([#229](https://github.com/stac-utils/stac-validator/pull/224))
1213

1314
## [v3.3.2] - 2023-11-17

stac_validator/validate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -453,9 +453,9 @@ def validate_item_collection(self) -> None:
453453
break
454454
except Exception as e:
455455
message = {}
456-
message[
457-
"pagination_error"
458-
] = f"Validating the item collection failed on page {page}: {str(e)}"
456+
message["pagination_error"] = (
457+
f"Validating the item collection failed on page {page}: {str(e)}"
458+
)
459459
self.message.append(message)
460460

461461
def run(self) -> bool:

tests/test_validate_collections.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
44
"""
55

6-
76
from stac_validator import stac_validator
87

98

tests/test_validate_item_collection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
44
"""
55

6-
76
from stac_validator import stac_validator
87

98

0 commit comments

Comments
 (0)