Skip to content

15.0.0

Compare
Choose a tag to compare
@grahamalama grahamalama released this 04 Feb 00:20
15.0.0
da7bd32

Breaking Changes

  • raven is not installed by default anymore (fixes #3054). Sentry reporting is now enabled via settings (or environment variables).
    In order to migrate from Kinto <14 to Kinto 15, remove the mention of sentry and raven from your logging configuration:
# kinto.ini
[logger_root]
level = INFO
-    handlers = console, sentry
+    handlers = console
[handlers]
-    keys = console, sentry
+    keys = console
-    [handler_sentry]
-    class = raven.handlers.logging.SentryHandler
-    args = ('https://<key>:<secret>@app.getsentry.com/<project>',)
-    level = WARNING
-    formatter = generic

And add the following settings:

    kinto.sentry_dsn = https://[email protected]/1
    kinto.sentry_env = prod

For more information, see Settings documentation

Documentation

  • Fix /batch endpoint documentation about required authentication.