Skip to content

Releases: Kinto/kinto

16.2.3

05 Dec 17:42
16.2.3
1c23ba6
Compare
Choose a tag to compare
  • Upgraded Kinto Admin to v2.1.1

16.2.2

22 Nov 15:22
1954369
Compare
Choose a tag to compare

Upgrading kinto-admin to v2.1.0.

16.2.1

13 Sep 14:46
16.2.1
f0abdd0
Compare
Choose a tag to compare

Bug fixes

  • Keep warning level for server-side logging (#3263)

Note: version 16.2.0 does not exist.

16.1.0

06 Sep 20:52
16.1.0
227d439
Compare
Choose a tag to compare

New features

  • Send logging warnings to Sentry, with logging debugs as breadcrumbs. Configure levels with kinto.sentry_breadcrumbs_min_level and kinto.sentry_events_min_level settings (#3262)

16.0.0

30 May 15:26
16.0.0
2b37f53
Compare
Choose a tag to compare

Breaking Changes

  • Drop support of Python 3.7 (end-of-life 2023-06-27)

New features

  • Add request id to request.summary logs (read from X-Request-Id header and defaults to 16 hex string)

Documentation

  • Fix typos on the Concepts page (#3151)

15.1.1

09 Feb 16:26
73c0c5e
Compare
Choose a tag to compare

Bug Fixes

  • Use correct import path for SQLAlchemy Sentry integration

15.1.0

09 Feb 01:47
5f51e07
Compare
Choose a tag to compare

New features

  • Enable SQLAlchemy integration for Sentry

Internal Changes

  • Force SQLAlchemy version to 1.X

15.0.0

04 Feb 00:20
15.0.0
da7bd32
Compare
Choose a tag to compare

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://userid@o1.ingest.sentry.io/1
    kinto.sentry_env = prod

For more information, see Settings documentation

Documentation

  • Fix /batch endpoint documentation about required authentication.

14.8.0

06 Oct 13:42
14.8.0
a6a5109
Compare
Choose a tag to compare

New Features

  • Add Cache-Control response header in root URL endpoint (/v1/) when the instance is configured as read-only.

14.7.2

13 Apr 15:01
14.7.2
92ce62f
Compare
Choose a tag to compare

Bug Fixes