Releases: Kinto/kinto
Releases · Kinto/kinto
16.1.0
16.0.0
15.1.1
Bug Fixes
- Use correct import path for SQLAlchemy Sentry integration
15.1.0
New features
- Enable SQLAlchemy integration for Sentry
Internal Changes
- Force SQLAlchemy version to 1.X
15.0.0
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 ofsentry
andraven
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.
14.8.0
14.7.2
Bug Fixes
- Prevents merging of
ResourceChanged
events if they were triggered from
events listeners (cascade) (see mozilla/remote-settings#203)
14.7.1
Bug Fixes
- Include Kinto Admin VERSION file in package
Internal Changes
- Exclude tests from built package
14.7.0
Internal Changes
- Add alwaysdata Marketplace link. #2957
- Test package description formatting in CI #2951
- Build Kinto Admin from source #2966
Dependabot Updates
- Bump pytest from 6.2.5 to 7.0.0 #2950
- Bump pytest from 7.0.0 to 7.0.1 #2953
- Bump werkzeug from 2.0.2 to 2.0.3 #2954
- Bump python-rapidjson from 1.5 to 1.6 #2956
- Bump waitress from 2.0.0 to 2.1.0 #2962
- Bump sqlalchemy from 1.4.31 to 1.4.32 #2961
- Bump selenium from 4.1.0 to 4.1.2 #2960
- Bump newrelic from 7.4.0.172 to 7.6.0.173 #2959
- Bump pytest from 7.0.1 to 7.1.0 #2965
- Bump selenium from 4.1.2 to 4.1.3 #2964
- Bump pyramid-tm from 2.4 to 2.5 #2963
- Bump waitress from 2.1.0 to 2.1.1 #2968
- Bump pytest from 7.1.0 to 7.1.1 #2967
Kinto Admin
Bug Fixes
- Downgrade to history v4 (Kinto/kinto-admin#2180)
- Fix crash on incorrect auth credentials (Kinto/kinto-admin#2119)
For a complete log of Kinto Admin changes, see v1.31.0...v2.0.0
Full Changelog: 14.6.1...14.7.0
14.6.1
Bug Fixes
- Fix crash in
/permissions
endpoint when a setting is misinterpreted as resource permission (e.g.signer.auto_create_resources_principals
)
Internal Changes