Skip to content

Commit 70ecbbf

Browse files
committed
Release 0.8.3
1 parent 15c2076 commit 70ecbbf

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

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+
936
## 0.8.2 - 2017-07-28
1037
### Fixed
1138
- Fix previous release with cherry pick of the right commit from #67

src/Sentry/SentryBundle/SentryBundle.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
class SentryBundle extends Bundle
88
{
9-
const VERSION = '0.8.2';
9+
const VERSION = '0.8.3';
1010
}

0 commit comments

Comments
 (0)