Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffail committed May 28, 2023
1 parent 41e2136 commit 2660be9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.

## Unreleased

## 4.16.0 - 2023-05-28

### Added

- Fields `auth.user_jwt` and `auth.user_nkey_seed` added to all NATS components.
Expand All @@ -18,6 +20,7 @@ All notable changes to this project will be documented in this file.
- The `aws_s3` input now adds `s3_version_id` metadata to versioned messages.
- All compress/decompress components (codecs, bloblang methods, processors) now support `pgzip`.
- Field `connection.max_retries` added to the `websocket` input.
- New `sentry_capture` processor.

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions internal/impl/sentry/processor_capture.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const (

func newCaptureProcessorConfig() *service.ConfigSpec {
return service.NewConfigSpec().
Version("4.14.0").
Description("Captures log events from messages and submits them to [Sentry](https://sentry.io/).").
Version("4.16.0").
Summary("Captures log events from messages and submits them to [Sentry](https://sentry.io/).").
Fields(
service.NewStringField("dsn").
Default("").
Expand Down
5 changes: 2 additions & 3 deletions website/docs/components/processors/sentry_capture.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ import TabItem from '@theme/TabItem';
:::caution EXPERIMENTAL
This component is experimental and therefore subject to change or removal outside of major version releases.
:::
Captures log events from messages and submits them to [Sentry](https://sentry.io/).

Introduced in version 4.14.0.
Introduced in version 4.16.0.

```yml
# Config fields, showing default values
Expand All @@ -35,8 +36,6 @@ sentry_capture:
sampling_rate: 1
```
Captures log events from messages and submits them to [Sentry](https://sentry.io/).
## Fields
### `dsn`
Expand Down

0 comments on commit 2660be9

Please sign in to comment.