Releases: Kinto/kinto
Releases · Kinto/kinto
1.5.1
1.5.0
- Add Disqus comments to documentation (fixes #159)
New features
- Allow POST to create buckets (fixes #64)
- Control client cache headers from settings or collection objects (#189)
Internal changes
- Remove dead code (#187, ref #53)
- Add pytest-capturelog for better output on test failures (#191)
- Install cliquet middleware (no-op if disabled) (#193)
- Many optimizations on
default
bucket (#192, #197) - Many optimizations on number of storage hits (#203)
- Fix contributing docs about tests (#198)
- Added more batched actions to loadtests (#199)
1.4.0
New features
- Partial collection of records when user has no
read
permission on collection (fixes #76).
Alice can now obtain a list of Bob records on which she has individualread
permission! - Collection can now specify a JSON schema and validate its records (#31).
The feature is marked as experimental and should be explicitly enabled
from settings (#181) - Accept empty payload on buckets and collections creation (#63)
- Allow underscores in Kinto bucket and collection names (#153, fixes #77)
- Collection records can now be filtered using multiple values (
?in_status=1,2,3
) (mozilla-services/cliquet#39) - Collection records can now be filtered excluding multiple values (
?exclude_status=1,2,3
) (mozilla-services/readinglist#68) - Current userid is now provided when requesting the hello endpoint with an
Authorization
header (mozilla-services/cliquet#319) - UUID validation now accepts any kind of UUID, not just v4 (mozilla-services/cliquet#387)
- Querystring parameter
_to
on collection records was renamed to_before
(the former is now
deprecated) (mozilla-services/cliquet#391) - Allow to configure info link in error responses with
cliquet.error_info_link
setting (mozilla-services/cliquet#395)
Bug fixes
- Fix consistency in API to modify permissions with PATCH (fixes #155)
The list of principals for each specified permission is now replaced by the one
provided. - Use correct HTTP Headers encoding in both Python2 and Python3 (#141)
- ETag is now returned on every verb (fixes #110)
Internal changes
1.3.1
Release 1.3.0
1.2.1
- Upgraded to Cliquet 2.2.1
Bug fixes
- Improvements and fixes in the tutorial (#107)
- Querystring handling when using the personal bucket (#119)
- Default buckets id is now a UUID with dashes (#120)
- Handle unknown permission and fix crash on /buckets (#88)
- Fix permissions handling on PATCH /resource (mozilla-services/cliquet#358)
Internal changes
- Test with the normal Kinto authentication policy and remove the fake one (#121)
1.2.0
- Upgraded to Cliquet 2.2.+
New features
- Add the personal bucket
/buckets/default
, where collections are created
implicitly (#71) - Kinto now uses the memory backend by default, which simplifies its usage
for development (#86, #95) - Add public settings in hello view (mozilla-services/cliquet#318)
Bug fixes
- Fix Docker compose file settings (#100)
- Fix version redirection behaviour for unsupported versions (mozilla-services/cliquet#341)
- Fix overriding backend settings in .ini (mozilla-services/cliquet#343)
Internal changes
1.1.0
Kinto 1.0.0
1.0.0 (2015-06-17)
New features
- Added notion of buckets, user groups and collections (#48, #58)
- Buckets, collections and records can now have permissions (#59)
Breaking changes
- Updated Cliquet to 2.0, which introduces a lot of breaking changes
(see changelog <https://github.com/mozilla-services/cliquet/releases/2.0.0>
_) - Firefox Accounts is not a dependency anymore and should be installed and
included explictly using the python packagecliquet-fxa
(see documentation <https://github.com/mozilla-services/cliquet-fxa/>
_) - API is now served under
/v1
- Collections are now managed by bucket, and not by user anymore (#44)
.. note::
A list of records cannot be manipulated until its parents objects (bucket and
collection) are created.
Settings
cliquet.permission_backend
andcliquet.permission_url
are now configured
to use PostgreSQL instead of Redis (see default :file:config/kinto.ini
)cliquet.basic_auth_enabled
is now deprecated (see *Cliquet* docs to enable authentication backends <http://cliquet.readthedocs.org/en/latest/reference/configuration.html#basic-auth>
_)
Internal changes
0.2.2
- Upgraded to cliquet 1.8.+
Breaking changes
- PostgreSQL database initialization process is not run automatically in
production. Add this command to deployment procedure:
::
cliquet --ini config/kinto.ini migrate
Internal changes