Skip to content

Releases: Kinto/kinto

20.1.0

11 Mar 10:06
a8eef8f
Compare
Choose a tag to compare

What's Changed

New Features

  • Add ability to log request ID to all output messages by @leplatrem in #3510

Change your logging config to:

 [handler_consoler]
-class = StreamHandler
+class = kinto.core.StreamHandlerWithRequestID

Or, via code:

from dockerflow import logging as dockerflow_logging

handler = MyLogHandler()
filter_ = dockerflow_logging.RequestIdLogFilter()
handler.addFilter(filter_)

Full Changelog: 20.0.0...20.1.0

20.0.0

05 Mar 11:33
fac9acc
Compare
Choose a tag to compare

What's Changed

Breaking Changes

Documentation

Dependency Updates

  • Update Kinto Admin version to 3.6.0 by @github-actions in #3501

Upgrade Instructions

kinto.plugins.quotas

If you were using this plugin, you would have to copy its code from previous version and make sure the module is available in the PYTHONPATH.
For example:

$ git clone git@github.com:Kinto/kinto.git
$ cd kinto/
$ git checkout 19.6.0
$ cp -R kinto/plugins/quotas /app/kinto_quotas

And refer to the folder in your config:

kinto.includes = ...
                 /app/kinto_quotas

Accounts Emailing Features

If you were using these features, you would have to run (and maintain) your own fork of Kinto 😢

Default StatsD metrics

The kinto.plugins.statsd plugin now has to be included explicitly in the kinto.includes config.

Full Changelog: 19.6.0...20.0.0

19.6.0

19 Feb 08:36
f32bb09
Compare
Choose a tag to compare

What's Changed

Documentation

Dependency Updates

Full Changelog: 19.5.0...19.6.0

19.5.0

12 Feb 08:15
9aca45e
Compare
Choose a tag to compare

What's Changed

Bug Fixes

New Features

Dependency Updates

  • Update Kinto Admin version to 3.5.1 by @github-actions in #3494

Other Changes

New Contributors

  • @cbguder made their first contribution in #3490
  • @github-actions made their first contribution in #3494

Full Changelog: 19.4.0...19.5.0

19.4.0

16 Jan 11:33
9d60b18
Compare
Choose a tag to compare

What's Changed

New Features

Full Changelog: 19.3.2...19.4.0

19.3.2

14 Jan 13:44
3f646fb
Compare
Choose a tag to compare

What's Changed

Bug Fixes

  • Adjusting CORS logic to return the first match instead of sent Origin by @alexcottner in #3471

Full Changelog: 19.3.1...19.3.2

19.3.1

11 Dec 17:38
bf94438
Compare
Choose a tag to compare

What's Changed

Bug Fixes

Full Changelog: 19.3.0...19.3.1

19.3.0

04 Nov 18:42
f2b80f0
Compare
Choose a tag to compare

What's Changed

New Features

  • Improve metrics API to support multiple key/value labels by @leplatrem in #3459
  • Registry a no-op metrics service by default by @leplatrem in #3460
  • Observe metrics request summary, size, and duration with labels by @leplatrem in #3461

Internal Changes

Dependency Updates

Full Changelog: 19.2.0...19.3.0

19.2.0

16 Oct 15:37
797fb75
Compare
Choose a tag to compare

What's Changed

New Features

Deprecations

  • Before, assigning a value to the kinto.statsd_url setting was enough to enable StatsD monitoring. It is now recommended to add kinto.plugins.statsd to the list of enabled plugins in kinto.includes (see settings docs)
  • Initialization step kinto.core.initialization.setup_statsd in kinto.initialization_sequence is now deprecated. Use kinto.core.initialization.setup_metrics.

Internals:

  • config.registry.statsd is now deprecated. Use config.registry.metrics instead.

Other Changes

New Contributors

Full Changelog: 18.1.1...19.2.0

18.1.1

20 Jun 14:09
92bdfd2
Compare
Choose a tag to compare

What's Changed

Bug Fixes

Full Changelog: 18.1.0...18.1.1