You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: Add Tracing (#358)
* feat: Add Tracing Middleware
Record sql queries as spans
* feat: Auto prepend middleware
Instrument view renders
* ref: Change code comments
* ref: Use terminate to send transaction
* Rename view engine decorator
* Improve transaction context name/description
* Prevent crashes when using missing defines
* Do not remove all leading `/` keep 1
* Add fallback autoload + bootstrap span
* Set the transaction name from the event handler
* Cleanup query span
* Prevent errors on Laravel 5.3 and below
* CS
* feat: Use correct route and add data
* ref: Add name
* fix: Route naming
* feat: Start transaction in serviceProvider
Move all renders as a child
* ref: Rename to view.render
* ref: Move back to starting transaction in middleware
Use fromTraceparent function to start a trace
* ref: Small refactor
* feat: Update composer.json
* ref: Add traces_sample_rate
* Refactor active span retrieval
* Guard against the active span not being set
* Docblock updates
* Correctly return rendered view without span
* Move tracing related code to the Tracing namespace
* Improve the route name detection order
* Do not use route names ending with a `.`
* Fix not wrapping the view enines when resolver is already resolved
* feat: Rework code to use transaction on the hub
Co-authored-by: Alex Bouma <[email protected]>
* meta: Bump version 2.0.0-beta.0
* meta: Change version 2.0.0-beta1
* meta: Define beta version 3.0.0-beta1 for php sdk
* meta: Changelog
* Update CHANGELOG.md
Co-authored-by: Alex Bouma <[email protected]>
* feat: Add publish command (#379)
* feat: Add publish command
* fix: Typos
* feat: Counterpart to PHP polish apm pr (#384)
* meta: Prepare 2.x
* fix: Travis
* ref: Fix tests
* fix: tests
* ref: Master
Co-authored-by: Alex Bouma <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,29 @@
2
2
3
3
## Unreleased
4
4
5
+
## 2.0.0
6
+
7
+
**Breaking Change**: This version uses the [envelope endpoint](https://develop.sentry.dev/sdk/envelopes/). If you are
8
+
using an on-premise installation it requires Sentry version `>= v20.6.0` to work. If you are using
9
+
[sentry.io](https://sentry.io) nothing will change and no action is needed.
10
+
11
+
**Tracing API / Monitor Performance**
12
+
13
+
In this version we released API for Tracing. `\Sentry\startTransaction` is your entry point for manual instrumentation.
14
+
More information can be found in our [Performance](https://docs.sentry.io/platforms/php/guides/laravel/performance/) docs.
15
+
16
+
- Using `^3.0` of Sentry PHP SDK
17
+
- Add support for Tracing, enable it by setting `traces_sample_rate` in the config to a value > 0 (the value should be larger than `0.0` and smaller or equal than `1.0` (to send everything))
18
+
19
+
## 2.0.0-beta1
20
+
21
+
**Breaking Change**: This version uses the [envelope endpoint](https://develop.sentry.dev/sdk/envelopes/). If you are
22
+
using an on-premise installation it requires Sentry version `>= v20.6.0` to work. If you are using
23
+
[sentry.io](https://sentry.io) nothing will change and no action is needed.
24
+
25
+
- Using `3.0.0-beta1` of Sentry PHP SDK
26
+
- Add support for Tracing, enable it by setting `traces_sample_rate` in the config to a value > 0 (the value should be larger than `0.0` and smaller or equal than `1.0` (to send everything))
27
+
5
28
## 1.9.0
6
29
7
30
- Respect the `SENTRY_ENVIRONMENT` environment variable to override the Laravel environment (#354)
0 commit comments