Skip to content

Commit 8cff6d0

Browse files
committed
Fix CS; update CHANGELOG.md
1 parent 938770b commit 8cff6d0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Diff for: CHANGELOG.md

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

77
## [Unreleased]
88

9+
## 0.8.4 - 2017-08-08
10+
### Fixed
11+
- Fix exception being thrown when both deprecated and new options are used.
12+
913
## 0.8.3 - 2017-08-07
1014
### 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.
15+
- Migrate all the opions 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.
1216

1317
Before:
1418
```yaml

Diff for: src/Sentry/SentryBundle/DependencyInjection/SentryExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private function checkConfigurationOnForInvalidSettings(array $config, Container
7272

7373
// both are used
7474
if (
75-
$config[$option] !== $default
75+
$config[$option] !== $default
7676
&& $config['options'][$option] !== $default
7777
&& $config['options'][$option] !== $config[$option]
7878
) {

0 commit comments

Comments
 (0)