Skip to content

0.8.3

Compare
Choose a tag to compare
@Jean85 Jean85 released this 07 Aug 10:12
· 764 commits to master since this release
0.8.3
70ecbbf

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.

Before:

sentry:
  app_path: ~
  environment: ~
  error_types: ~
  excluded_app_paths: ~
  prefixes: ~
  release: ~

After:

sentry:
  options:
    app_path: ~
    environment: ~
    error_types: ~
    excluded_app_paths: ~
    prefixes: ~
    release: ~
  • Migrate from PSR-0 to PSR-4