Skip to content

Commit

Permalink
docs: add upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvoke committed Jul 22, 2024
1 parent 8d0ca5b commit 6311367
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
7 changes: 0 additions & 7 deletions CHANGELOG.md

This file was deleted.

17 changes: 17 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Upgrade Guide

## Upgrading To 0.5 From 0.4.x

### Configuration Changes

The `telemetry.enabled` configuration key has been moved and negated to `sdk.disabled` to match the underlying
OpenTelemetry SDK.

Please update this value in your configuration if it has been published.

```diff
- 'enabled' => env('LARAVEL_TELEMETRY_ENABLED', true),
+ 'sdk' => [
+ 'disabled' => ! env('LARAVEL_TELEMETRY_ENABLED', true)
+ ],
```

0 comments on commit 6311367

Please sign in to comment.