Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
bf69784
Add CI, Java, and license badges to README
Ujawala10 Jun 15, 2026
fa1cba8
Merge pull request #27 from Ujawala10/issue-24-readme-badges
Mahesh-Langote Jun 15, 2026
57d417a
docs: add troubleshooting guide (#28)
Paperclip-Paperclip Jun 15, 2026
93ccd4d
docs: remove logdispatch.enabled references per review
lesbass Jun 15, 2026
5035419
Merge pull request #29 from lesbass/add-troubleshooting-docs
Mahesh-Langote Jun 15, 2026
8f055e9
test: expand LogDispatchFilter coverage
wipheg Jun 16, 2026
133b407
Merge pull request #30 from wipheg/test/logdispatch-filter-coverage
Mahesh-Langote Jun 18, 2026
06777a1
docs: add application.properties configuration example
chethanasridhar Jun 19, 2026
5b5dc99
Merge pull request #32 from chethanasridhar/main
Mahesh-Langote Jun 19, 2026
ff2c2c1
feat: implement new security severity level in LogDispatchFilter and …
Mahesh-Langote Jun 20, 2026
8cd66be
feat: update severity levels in README for LogDispatchFilter
Mahesh-Langote Jun 20, 2026
b869c12
feat: update README and add tests for LogDispatchFilter security hand…
Mahesh-Langote Jun 20, 2026
ebb8d4c
feat: add testing guidelines and contribution instructions to README …
Mahesh-Langote Jun 20, 2026
4326605
Merge pull request #34 from Mahesh-Langote/feat/add-new-security-filt…
Mahesh-Langote Jun 20, 2026
59be9a4
feat: update CHANGELOG for version 1.0.7 and bump version in pom.xml
Mahesh-Langote Jun 20, 2026
bf6a908
feat: add configurable HTTP timeout for APM server calls
chethanasridhar Jun 20, 2026
619a947
test: fix compilation error in LogDispatchFilterTest
chethanasridhar Jun 20, 2026
32d834d
docs: add LogDispatch example Spring Boot app
wipheg Jun 20, 2026
f909f05
Merge branch 'main' into docs/example-app-12
wipheg Jun 20, 2026
b60285c
Merge branch `Mahesh-Langote:main` into main
chethanasridhar Jun 20, 2026
3e2a87c
test: fix constructor compilation error in base test
chethanasridhar Jun 20, 2026
30db587
docs and feat: add timeout validation fallback and update readme
chethanasridhar Jun 21, 2026
95a8dbb
Merge pull request #38 from chethanasridhar/main
Mahesh-Langote Jun 21, 2026
efa7447
Merge branch 'main' into docs/example-app-12
Mahesh-Langote Jun 21, 2026
fdae7b2
Merge pull request #39 from wipheg/docs/example-app-12
Mahesh-Langote Jun 21, 2026
b5f5929
feat: add logdispatch enabled toggle
wlgljh Jun 25, 2026
929c365
Merge pull request #40 from wlgljh/codex/logdispatch-enabled-toggle
Mahesh-Langote Jun 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.7] - 2026-06-20
### Added
- Implemented a new `SECURITY` severity classification for unhandled filter-level exceptions.
- Added strict type safety to the dispatch payload structure via `LogDispatchPayload`.
- Added support for excluding specific URI paths from being intercepted by the filter.
- Added support for tracking and masking additional HTTP headers in `LogDispatchFilter`.
- Added `LogDispatchAspectTest` for full AOP test coverage.

### Changed
- Refactored `LogDispatchFilterTest` into focused, SRP-compliant test files with a shared base test class.
- Simplified GitHub Actions CI/CD workflows and implemented a PR gating mechanism.
- Bumped `spring.boot.version` dependency from `3.3.2` to `3.5.15`.

### Documentation
- Added explicit testing guidelines and contribution instructions via `TESTING.md`.
- Added a comprehensive troubleshooting guide (`TROUBLESHOOTING.md`).
- Added `application.properties` configuration examples.
- Removed deprecated references to `logdispatch.enabled`.
- Added CI, Java, and License status badges to `README.md`.

## [1.0.6] - 2026-06-12
### Changed
- Upgraded internal build infrastructure: Maven wrapper bumped to 3.9.8 and `maven-compiler-plugin` to 3.15.0.
Expand Down
Loading
Loading