Skip to content

Commit

Permalink
Fix CS; update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean85 committed Aug 8, 2017
1 parent 938770b commit 8cff6d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## 0.8.4 - 2017-08-08
### Fixed
- Fix exception being thrown when both deprecated and new options are used.

## 0.8.3 - 2017-08-07
### Changed
- 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.
- 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.

Before:
```yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private function checkConfigurationOnForInvalidSettings(array $config, Container

// both are used
if (
$config[$option] !== $default
$config[$option] !== $default
&& $config['options'][$option] !== $default
&& $config['options'][$option] !== $config[$option]
) {
Expand Down

0 comments on commit 8cff6d0

Please sign in to comment.