Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name":"Sentry",
"author":"Ortus Solutions <info@ortussolutions.com>",
"version":"2.1.3",
"version":"2.1.4",
"slug":"sentry",
"type":"modules",
"homepage":"https://github.com/coldbox-modules/sentry",
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed - [Issue #37](https://github.com/coldbox-modules/sentry/issues/37) - Resolves an ACF incompat issue where traceparent variable was not available in threaded logging

## [2.1.3] - 2024-11-14

### Fixed

- Fixes for Coldbox being detected incorrectly.

## [2.1.0] - 2024-11-12
- Fixes for Coldbox being detected incorrectly.

## [2.1.0] - 2024-11-12

### Added
Expand All @@ -39,8 +44,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Create first module version

[Unreleased]: https://github.com/coldbox-modules/sentry/compare/v2.1.3...HEAD
[Unreleased]: https://github.com/coldbox-modules/sentry/compare/v2.1.3...HEAD

[2.1.3]: https://github.com/coldbox-modules/sentry/compare/v2.1.0...v2.1.3
[2.1.3]: https://github.com/coldbox-modules/sentry/compare/v2.1.0...v2.1.3

[2.1.0]: https://github.com/coldbox-modules/sentry/compare/57864cae5969ad38eee194db5a6b2798e91967b3...v2.1.0
3 changes: 2 additions & 1 deletion models/SentryService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,8 @@ component accessors=true singleton {
header = header,
event_id = captureStruct.event_id,
sent_at = timeVars.iso,
jsonCapture = jsonCapture
jsonCapture = jsonCapture,
traceParent = traceParent
) {
post(
header,
Expand Down
Loading