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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [Unreleased]
8
8
9
+
## 0.8.3 - 2017-08-07
10
+
### Changed
11
+
- Migrate all the options from the config root to `sentry.options` (#68); the affected options are still usable in the old form, but they will generate deprecation notices. They will be dropped in the 1.0 release.
12
+
13
+
Before:
14
+
```yaml
15
+
sentry:
16
+
app_path: ~
17
+
environment: ~
18
+
error_types: ~
19
+
excluded_app_paths: ~
20
+
prefixes: ~
21
+
release: ~
22
+
```
23
+
After:
24
+
```yaml
25
+
sentry:
26
+
options:
27
+
app_path: ~
28
+
environment: ~
29
+
error_types: ~
30
+
excluded_app_paths: ~
31
+
prefixes: ~
32
+
release: ~
33
+
```
34
+
- Migrate from PSR-0 to PSR-4
35
+
9
36
## 0.8.2 - 2017-07-28
10
37
### Fixed
11
38
- Fix previous release with cherry pick of the right commit from #67
0 commit comments