Releases: mozilla-services/kinto-dist
27.0.2
27.0.1
27.0.0
Breaking Changes
- The
kinto.signer.group_check_enabled
setting is now alwaystrue
, and
won't be read from configuration anymore.
Bug fixes
- Restore
"version"
fields insigner
andchanges
capabilities metadata
kinto-attachment
kinto-attachment 6.1.0 → 6.2.0: https://github.com/Kinto/kinto-attachment/releases/tag/6.2.0
New features
base_url
field in server's capabilities will be added a trailing slash (/
)
if missing.
26.0.0
Breaking Changes
-
Do not install
kinto_changes
andkinto_signer
plugins from PyPI.
The source code for these plugins has moved to this repository and will
continue to be maintained here.kinto-changes
was copied to this repo at
commit 0af75a9efb6ae849ee1a6761349bfaf49dd1c488, andkinto-signer
was
copied at commit 249db348caec02daafc4c249658b4ca2a89343bd. After they were
copied, linting and formatting tools were run against them and changes were
made for CI checks to pass. -
kinto_changes
andkinto_signer
are now combined into one plugin
kinto_remote_settings
. Kinto config files must be changed to register the
plugin as such.Before:
kinto.includes = ...
kinto_changes
kinto_signer
After:
kinto.includes = ...
kinto_remote_settings
This change does not include the names of config items. For instance,
kinto_changes.http_host
remains with prefix kinto_changes
and was
not renamed kinto_remote_settings.changes.http_host
.
-
In addition to the
kinto_signer
&kinto_changes
consolidation as
described above,kinto_remote_settings.signer
's internal package
signer
was renamed tobackends
. Consider adjusting the
kinto.signer.signer_backend =
settings in your configuration
accordingly.kinto.signer.signer_backend = kinto_remote_settings.signer.backends.autograph
-
Some collection metadata rely on classes from
kinto_signer
to have
specific qualified names forkinto-emailer
to send emails on signer
events (review requests, approvals, ...). These names must be changed to
correctly refer to these classes. For example:Before:
kinto-emailer: hooks: - event: kinto_signer.events.ReviewRequested
After:
kinto-emailer: hooks: - event: kinto_remote_settings.signer.events.ReviewRequested
kinto-emailer
kinto-emailer 2.0.0 → 2.1.0: https://github.com/Kinto/kinto-emailer/releases/tag/2.1.0
New features
- Add ability to use settings values in placeholders (Kinto/kinto#294).
For example:"subject": "Email from {settings[project_name]}"
25.0.0
Breaking Changes
- Removed
kinto_fxa
,kinto_elasticsearch
,kinto_megaphone
, andkinto_redis
from packages distribution (not officially maintained by Mozilla)
Bug fixes
- Fix docker-compose command that primes the PostgreSQL server for local testing (#1930)
kinto
kinto 14.5.1 → 14.6.0: https://github.com/Kinto/kinto/releases/tag/14.6.0
New features
- Now send
Cache-Control
response headers on trailing slash redirects. Seekinto.trailing_slash_redirect_ttl_seconds
setting (Kinto/kinto#2895)
Documentation
- Fix query params typo in docs/tutorials/synchronisation.rst (Kinto/kinto#2898)
- Ref #2295: update URL of demo server (Kinto/kinto#2899)
kinto-changes
kinto-changes 3.2.0 → 4.1.1: https://github.com/Kinto/kinto-changes/releases/tag/4.1.1
Breaking Changes
- No
ResourceEvent
is sent anymore for changes in this virtual monitor/changes collection.
New Features
- Send cache control headers on old
?_since
redirects (cache for 1 day by default) (Kinto/kinto-changes#290)
Bug fixes
- Fix redirection for old
?_since
values on changeset endpoints (fixes Kinto/kinto-changes#299)
24.0.1
kinto
kinto 14.5.0 → 14.5.1: https://github.com/Kinto/kinto/releases/tag/14.5.1
Bug fixes
- Fix bundle of kinto-admin, using same versions of React as upstream package
#GroundhogDay
(Kinto/kinto#2880)
24.0.0
Breaking changes
- Removed
kinto-amo
from packages distribution (#1915)
kinto
kinto 14.4.1 → 14.5.0: https://github.com/Kinto/kinto/releases/tag/14.5.0
New feature
- Add
kinto.version_prefix_redirect_ttl_seconds
setting in order to sendCache-Control
response headers on version prefix redirects (fixes Kinto/kinto#2874)
23.3.1
kinto
kinto 14.4.0 → 14.4.1: https://github.com/Kinto/kinto/releases/tag/14.4.1
Bug fixes
- Fix bundle of kinto-admin, using same versions of React as upstream package (fixes mozilla/remote-settings#129)
23.3.0
kinto
kinto 14.2.0 → 14.4.0: https://github.com/Kinto/kinto/releases/tag/14.4.0
Documentation
- Fix "negociation" typo in docs/images/architecture.svg (Kinto/kinto#2813)
Internal changes
- Replace ujson with rapidjson. (Kinto/kinto#2677)
kinto-admin
kinto-admin 1.30.0 → 1.30.2: https://github.com/Kinto/kinto-admin/releases/tag/v1.30.2
Bug fixes
- Rollback to Bootstrap 4 (Kinto/kinto-admin#2046, mozilla/remote-settings#127)
23.2.0
kinto
kinto 14.1.3 → 14.2.0: https://github.com/Kinto/kinto/releases/tag/14.3.0
Documentation
- Fix documentation about disabling endpoints (Kinto/kinto#2794)
Internal changes
- Now compatible with Pyramid 2 (Kinto/kinto#2764)
- Upgrade kinto-admin to v1.30.0
kinto-admin
kinto-admin 1.29.0 → 1.30.0: https://github.com/Kinto/kinto-admin/releases/tag/v1.30.0
New feature
- (signoff) Added simple review page, accessible at
/#/buckets/{bid}/collections/{cid}/simple-review
(thanks @k88hudson! Kinto/kinto-admin#1885)