Skip to content

Update changelog for 2.0.3 release #137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## 2.0.3 - 2018-06-01
### Added
- Add `symfony_version` as a default tag (#116, thanks @hjanuschka)
### Fixed
- Retrieve use IP address from Symfony, to honor trusted proxies (#131, thanks @eliecharra)

## 2.0.2 - 2018-03-06
### Fixed
- Fix `processorOptions` in yaml configuration (#107)
Expand All @@ -27,6 +33,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Drop support for Symfony 2.x
- Drop support for PHP 5 and 7.0

## 1.0.3 - 2018-06-01
### Added
- Add `symfony_version` as a default tag (#117, backport of #116, thanks @hjanuschka)
### Fixed
- Retrieve use IP address from Symfony, to honor trusted proxies (#132, backport of #131, thanks @eliecharra)

## 1.0.2 - 2018-03-06
### Fixed
- Fix `processorOptions` in YAML configuration (#109, backport of #107)
Expand All @@ -52,6 +64,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Remove support for PHP versions lower than 5.6, since they are now EOL
- Remove support for HHVM

## 0.8.8 - 2018-06-01
### Added
- Add `symfony_version` as a default tag (backport of #116, thanks @hjanuschka)
- Add the new `excluded_exceptions` option from Sentry client 1.9 (see [getsentry/sentry-php#583](https://github.com/getsentry/sentry-php/pull/583); #124, backport of #123, thanks @mcfedr)
### Changed
- Require at least version 1.9 of the `sentry/sentry` base client, due to #124
### Fixed
- Retrieve use IP address from Symfony, to honor trusted proxies (backport of #131, thanks @eliecharra)

## 0.8.7 - 2017-10-23
### Fixed
- Fix a fatal error when the user token is not authenticated (#78)

## 0.8.6 - 2017-08-24
### Changed
- Migrate service definitions to non-deprecated option configuration values
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ sentry:
dsn: "https://public:[email protected]/1"
```

## Maintained versions
* 2.x is actively maintained on the master branch, but it requires Symfony 3+ and PHP 7.1+;
* 1.x is still supported to allow Symfony 2 and PHP 5.6/7.0; it may receive backports of features from the master branch, but it's not guaranteed
* 0.8.x is no longer maintained, with the 0.8.8 release containing the latest new features; it may only receive security fixes in the future.

## Configuration

The following options can be configured via ``app/config/config.yml``.
Expand Down