diff --git a/CHANGELOG.md b/CHANGELOG.md index d79ca99e6..3c0f6473e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,13 +10,13 @@ - feat: Return `EventID` from `Recovery` methods - feat: Add `NewScope` and `NewEvent` functions and use them in the whole codebase - feat: Add `AddEventProcessor` to the `Client` +- fix: Operate on requests body copy instead of the original - ref: Try to read source files from the root directory, based on the filename as well, to make it work on AWS Lambda - ref: Remove `gocertifi` dependence and document how to provide your own certificates - ref: **[breaking]** Remove `Decorate` and `DecorateFunc` methods in favor of `sentryhttp` package - ref: **[breaking]** Allow for integrations to live on the client, by passing client instance in `SetupOnce` method - ref: **[breaking]** Remove `GetIntegration` from the `Hub` - ref: **[breaking]** Remove `GlobalEventProcessors` getter from the public API -- fix: Operate on requests body copy instead of the original ## 0.0.1-beta.2 diff --git a/sentry.go b/sentry.go index 84cdd4d5c..32147d70c 100644 --- a/sentry.go +++ b/sentry.go @@ -6,7 +6,7 @@ import ( ) // Version Sentry-Go SDK Version -const Version = "0.0.1-beta.2" +const Version = "0.0.1-beta.3" // Init initializes whole SDK by creating new `Client` and binding it to the current `Hub` func Init(options ClientOptions) error {