All Versions
130
Latest Version
Avg Release Cycle
55 days
Latest Release
736 days ago

Changelog History
Page 5

  • v11.1.0 Changes

    October 25, 2018

    ๐Ÿ†• New features

    • Add ability to configure the project_name in settings, shown in the root URL <https://kinto.readthedocs.io/en/stable/api/1.x/utilities.html#get>_ (fixes #1809)
    • ๐Ÿ›  Use . as bucket/collection separator in cache control settings (fixes #1815)

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix missing favicon and inline images in kinto-admin plugin

    Internal changes

    • ๐Ÿคก Use mock from the standard library.
    • Blackify the whole code base (#1799, huge thanks to @Cnidarias for this!)
    • โฌ†๏ธ Upgrade kinto-admin to v1.22
  • v11.0.0 Changes

    October 09, 2018

    ๐Ÿ’ฅ Breaking changes

    • 0๏ธโƒฃ The basicauth policy is not used by default anymore (#1736)

    If your application relies on this specific behaviour, you now have to add explicitly settings:

    .. code-block:: ini

    multiauth.policies = basicauth
    

    But it is recommended to use other authentication policies like the OpenID Connect or the accounts plugin instead.

    .. code-block:: ini

    # Enable plugin.
    kinto.includes = kinto.plugins.accounts
    
    # Enable authenticated policy.
    multiauth.policies = account
    multiauth.policy.account.use = kinto.plugins.accounts.AccountsPolicy
    
    # Allow anyone to create their own account.
    kinto.account_create_principals = system.Everyone
    

    ๐Ÿ“š You will find more details the authentication settings section of the documentation <https://kinto.readthedocs.io/en/stable/configuration/settings.html#authentication>_

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix crash when querystring filter contains NUL (0x00) character (fixes #1704)
    • ๐Ÿš€ Many bugs were fixed in the Kinto Admin UI (see v1.21.0 <https://github.com/Kinto/kinto-admin/releases/tag/v1.21.0>_)

    ๐Ÿ“š Documentation

    • ๐Ÿ“š Huge refactor of documentation about authentication (#1736)

    Internal changes

    • โฌ†๏ธ Upgrade kinto-admin to v1.21.0
    • ๐Ÿ—„ Deprecate assertEquals and use assertEqual (fixes #1780)
    • ๐Ÿ›  Set schema to an instance instead of class (fixes #1781)
    • ๐Ÿ›  Fix DeprecationWarning for unrecognized backslash escapes (#1758)
  • v10.1.2 Changes

    October 03, 2018

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix OpenID login in Kinto-Admin (Kinto/kinto-admin#641)

    Internal changes

    • โฌ†๏ธ Upgrade kinto-admin to v1.20.2
  • v10.1.1 Changes

    September 20, 2018

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fix for adding extra OpenId providers (fixes #1509)
    • ๐Ÿ”„ Change the meaning of event.payload["timestamp"]. Previously it was @reify\ 'd, which meant that it was calculated from before whatever thing triggered the event. Now we use a "fresh" timestamp. (Fixes #1469.)
  • v10.1.0 Changes

    September 17, 2018

    ๐Ÿ› Bug fixes

    • Deleting a collection doesn't delete access_control_entrries for its children (fixes #1647)

    ๐Ÿ†• New features

    • The registry now has a "command" attribute during one-off commands such as kinto migrate. This can be useful for plugins that want to behave differently during a migration, for instance. (#1762)
  • v10.0.0 Changes

    August 16, 2018

    ๐Ÿ’ฅ Breaking changes

    • kinto.core.events.get_resource_events now returns a generator rather than a list.

    ๐Ÿ†• New features

    • ๐Ÿ‘ Include Python 3.7 support.
    • kinto.core.events.notify_resource_event now supports resource_name and resource_data. These are useful when emitting events from one view "as though" they came from another view.
    • Resource events can now trigger other resource events, which are handled correctly. This might be handy if one resource wants to simulate events on another "virtual" resource, as in kinto-changes.

    ๐Ÿ› Bug fixes

    • ๐Ÿ”ง Raise a configuration error if the kinto.plugin.accounts is included without being enabled in policies. Without this kinto-admin would present a confusing login experience (fixes #1734).

    Internal changes

    • โฌ†๏ธ Upgrade kinto-admin to v1.20.0
  • v9.2.3 Changes

    July 05, 2018

    Internal changes

    • โฌ†๏ธ Upgrade to kinto-admin v1.19.2
  • v9.2.2 Changes

    June 28, 2018

    Internal changes

    • โฌ†๏ธ Upgrade to kinto-admin v1.19.1
  • v9.2.1 Changes

    June 26, 2018

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  Fixed bug where unresolved JSON pointers would crash server (fixes #1685)

    Internal changes

    • โšก๏ธ Update the Dockerfile with the new kinto --cache-backend option. (#1686)
    • โฌ†๏ธ Upgrade to kinto-admin v1.19.0
  • v9.2.0 Changes

    June 07, 2018

    API

    • ๐Ÿ“‡ JSON schemas can now be defined in the bucket metadata and will apply to every underlying collection, group or record (fixes #1555)

    API is now at version 1.20. See API changelog_.

    ๐Ÿ†• New features

    • ๐Ÿ”Œ Kinto Admin plugin now supports OpenID Connect
    • ๐Ÿ”’ Limit network requests to current domain in Kinto Admin using Content-Security Policies <https://hacks.mozilla.org/2016/02/implementing-content-security-policy/>_
    • Prompt for cache backend type in kinto init (#1653)
    • kinto.core.utils now has new features route_path_registry and instance_uri_registry, suitable for use when you don't necessarily have a request object around. The existing functions will remain in place.
    • ๐Ÿ”Œ openid plugin will carry prompt=none querystring parameter if appended to authorize endpoint.

    Internal changes

    • โฌ†๏ธ Upgrade to kinto-admin v1.18.0