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
Merge pull request #3 from StacLabs/add-server-logging
- **Intelligent Batch Logging**: Enhanced the `/validate` endpoint with high-visibility logging for both single-item and bulk `ItemCollection` requests.
- **Error Aggregation**: Implemented a frequency-based error summarizer for large batches. Instead of flooding logs, the service now identifies and counts unique failure reasons (e.g., "Top failure reason (99/100): 'datetime' is required").
- **Schema Contextualization**: Validation failures now include the specific `AbsoluteKeywordLocation`, allowing developers to click directly to the failing STAC Extension schema.
- **Performance Metrics**: Real-time execution timing added to all validation logs to monitor throughput and latency.
- **Project Tooling**: Added a `Makefile` and `go test` suite to standardize the contributor workflow and ensure build stability. [#3](#3)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.1.1] - 2026-03-29
9
+
### Added
10
+
-**Intelligent Batch Logging**: Enhanced the `/validate` endpoint with high-visibility logging for both single-item and bulk `ItemCollection` requests.
11
+
-**Error Aggregation**: Implemented a frequency-based error summarizer for large batches. Instead of flooding logs, the service now identifies and counts unique failure reasons (e.g., "Top failure reason (99/100): 'datetime' is required").
12
+
-**Schema Contextualization**: Validation failures now include the specific `AbsoluteKeywordLocation`, allowing developers to click directly to the failing STAC Extension schema.
13
+
-**Performance Metrics**: Real-time execution timing added to all validation logs to monitor throughput and latency.
14
+
-**Project Tooling**: Added a `Makefile` and `go test` suite to standardize the contributor workflow and ensure build stability. [#3](https://github.com/StacLabs/gostac-validator/pull/3)
15
+
8
16
## [0.1.0] - 2026-03-29
9
17
### Added
10
18
- Core STAC validation engine with PCRE regex (`^(?!eo:)`) support via `regexp2`.
@@ -14,5 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
22
- High-performance CLI tool for local STAC validation.
0 commit comments