Metadata-Version: 1.1
Name: kinto-dist
Version: 0.9.0
Summary: Kinto Distribution
Home-page: https://github.com/mozilla-services/kinto-dist
Author: Mozilla Services
Author-email: services-dev@mozilla.com
License: Apache License (2.0)
Description: Kinto Distribution
        ==================
        
        |travis|
        
        .. |travis| image:: https://travis-ci.org/mozilla-services/kinto-dist.svg?branch=master
            :target: https://travis-ci.org/mozilla-services/kinto-dist
        
        
        This repository contains:
        
        1. a Pip requirements file that combines all packages needed
           to run a Kinto server will a known good set of deps
        2. a configuration file to run it
        
        
        To install it, make sure you have Python 2.x or 3.x with virtualenv, and run::
        
            $ make install
        
        To run the server::
        
            $ make serve
        
        To update kinto-admin::
        
            $ make update-kinto-admin
        
        
        CHANGELOG
        #########
        
        This document describes changes between each past release as well as
        the version control of each dependency.
        
        0.9.0 (2016-10-04)
        ==================
        
        Kinto
        '''''
        
        **kinto 3.3.2 → 4.3.0**: https://github.com/Kinto/kinto/releases/tag/4.3.0
        
        **Highlights**
        
        - Redis backends were dropped from core, and are now packaged separately in
          `kinto-redis <https://github.com/Kinto/kinto-redis/>`_
        - New ``/__version__`` endpoint which reads a ``version.json`` file to expose what version
          has been deployed. Its location can be specified in the ``kinto.version_json_path``
          setting (fixes #830)
        - New built-in plugin ``kinto.plugins.history`` to track history of changes per bucket
          from the Kinto Admin UI (*must be added explicity in the ``kinto.includes`` setting)
        - ``kinto migrate`` now accepts a ``--dry-run`` option which details the operations
          to be made without executing them.
        - New built-in plugin ``kinto.plugins.quotas```to set storage quotas per bucket/collection
          (c.f. *Web Extensions* storage)
        - The history and quotas plugins execution time is now monitored on StatsD
          (``kinto.plugins.quotas`` and ``kinto.plugins.history``) (#832)
        - The permissions attribute is now empty in the response if the user has not
          the permission to write on the object (Kinto/kinto#123)
        - Parent attributes are now readable if children creation is allowed (Kinto/kinto#803)
        - New ``kinto delete-collection`` command to delete a collection from the command-line.
        
        kinto-admin
        '''''''''''
        
        **kinto-admin 1.3.0**: https://github.com/Kinto/kinto-admin/releases/tag/v1.3.0
        
        - Add views for browsing a collection history (#196)
        - Updated kinto-http to v2.3.0.
        - Activate the signoff plugin to allow triggering a signature from the Admin.
        
        kinto-signer
        ''''''''''''
        
        **kinto-signer 0.7.3 → 0.9.1**: https://github.com/Kinto/kinto-signer/releases/tag/0.9.0
        
        The API can now **optionally** rely on a workflow and can check that users changing collection status
        belong to some groups (e.g. ``editors``, ``reviewers``). With that feature enabled,
        the signature of the collection will have to follow this workflow:
        
        - an *editor* will request a review by setting the collection status to ``to-review``;
        - a preview collection will be updated and signed so that QA can validate the changes
          on the client side;
        - a *reviewer* — different from the last editor — will trigger the signature by setting
          the status to ``to-sign`` as before.
        
        In order to enable this feature, the following procedure must be followed:
        
        - Change the resources settings to add a *preview* collection URL (``{source};{preview};{destination}``)
        
        ..code-block:: ini
        
            kinto.signer.resources =
              /buckets/staging/collections/certificates;/buckets/preview/collections/certificates;/buckets/blocklists/collections/certificates
        
        - Enable the review and group check features:
        
        ..code-block:: ini
        
            kinto.signer.to_review_enabled = true
            kinto.signer.group_check_enabled = true
        
        - Last, create ``editors`` and ``reviewers`` groups in the *staging* bucket, and
          add appropriate usernames to it. The groups can now be managed from the
          Kinto Admin UI. Otherwise via the command-line:
        
        ..code-block:: bash
        
            $ echo '{"data": {"members": ["ldap:some@one.com"]}}' | \
                http PUT $SERVER_URL/buckets/staging/groups/editors --auth="admin:token"
        
        
            $ echo '{"data": {"members": ["ldap:some@one.com"]}}' | \
                http PUT $SERVER_URL/buckets/staging/groups/editors --auth="admin:token"
        
        
        0.8.2 (2016-09-12)
        ==================
        
        **Upgrade to kinto 3.3.3**
        
        **Bug fixes**
        
        - Fix heartbeat transaction locks with PostgreSQL backends (fixes Kinto/kinto#804)
        
        
        0.8.1 (2016-07-27)
        ==================
        
        - Add the kinto-dist version in the plugin capability. (#40)
        
        **kinto-signer 0.7.2 → 0.7.3**: https://github.com/Kinto/kinto-signer/releases/tag/0.7.3
        
        **Bug fixes**
        
        - Fix signature inconsistency (timestamp) when several changes are sent from
          the *source* to the *destination* collection.
          Fixed ``e2e.py`` and ``validate_signature.py`` scripts (Kinto/kinto-signer#110)
        
        **Minor change**
        
        - Add the plugin version in the capability. (Kinto/kinto-signer#108)
        
        
        0.8.0 (2016-07-25)
        ==================
        
        Kinto
        '''''
        
        **kinto 3.3.0 → 3.3.2**: https://github.com/Kinto/kinto/releases/tag/3.3.2
        
        **Bug fixes**
        
        - Fix Redis get_accessible_object implementation (kinto/kinto#725)
        - Fix bug where the resource events of a request targetting two groups/collection
          from different buckets would be grouped together (kinto/kinto#728)
        
        
        kinto-signer
        ''''''''''''
        
        **kinto-signer 0.7.1 → 0.7.2**: https://github.com/Kinto/kinto-signer/releases/tag/0.7.2
        
        **Bug fixes**
        
        - Provide the ``old`` value on destination records updates (kinto/kinto-signer#104)
        - Send ``create`` event when destination record does not exist yet.
        - Events sent by kinto-signer for created/updated/deleted objects in destination now show
          user_id as ``plugin:kinto-signer``
        
        
        0.7.0 (2016-07-19)
        ==================
        
        **kinto-admin 1.2.0**: https://github.com/Kinto/kinto-admin/releases/tag/1.2.0
        
        Kinto
        '''''
        
        **kinto 3.2.2 → 3.3.0**: https://github.com/Kinto/kinto/releases/tag/3.3.0
        
        **API**
        
        - Add new *experimental* endpoint ``GET /v1/permissions`` to retrieve the list of permissions
          granted on every kind of object (#600).
          Requires setting ``kinto.experimental_permissions_endpoint`` to be set to ``true``.
        
        API is now at version **1.8**. See `API changelog <http://kinto.readthedocs.io/en/latest/api/>`_.
        
        **Bug fixes**
        
        - Allow filtering and sorting by any attribute on buckets, collections and groups list endpoints
        - Fix crash in memory backend with Python3 when filtering on unknown field
        
        
        Kinto-attachment
        ''''''''''''''''
        
        **kinto-attachment 0.7.0 → 0.8.0**: https://github.com/Kinto/kinto-attachment/releases/tag/0.8.0
        
        **New features**
        
        - Prevent ``attachment`` attributes to be modified manually (fixes Kinto/kinto-attachment#83)
        
        **Bug fixes**
        
        - Fix crash when the file is not uploaded using ``attachment`` field name (fixes Kinto/kinto-attachment#57)
        - Fix crash when the multipart content-type is invalid.
        - Prevent crash when filename is not provided (fixes Kinto/kinto-attachment#81)
        - Update the call to the Record resource to use named attributes. (Kinto/kinto-attachment#97)
        - Show detailed error when data is not posted with multipart content-type.
        - Fix crash when submitted data is not valid JSON (fixes Kinto/kinto-attachment#104)
        
        
        0.6.3 (2016-07-21)
        ==================
        
        - Take the correct Kinto 3.2.4 version.
        
        
        0.6.2 (2016-07-21)
        ==================
        
        * Add integration test for every enabled plugins
        
        Kinto
        '''''
        
        **kinto 3.2.2 → 3.2.4**: https://github.com/Kinto/kinto/releases/tag/3.2.4
        
        **Bug fixes**
        
        - Fix bug where the resource events of a request targetting two groups/collection
          from different buckets would be grouped together (#728).
        - Allow filtering and sorting by any attribute on buckets, collections and groups list endpoints
        - Fix crash in memory backend with Python3 when filtering on unknown field
        - Fix bug in object permissions with memory backend (#708)
        - Make sure the tombstone is deleted when the record is created with PUT. (#715)
        - Bump ``last_modified`` on record when provided value is equal to previous
          in storage ``update()`` method (#713)
        
        
        kinto-signer
        ''''''''''''
        
        **kinto-signer 0.7.0 → 0.7.1**: https://github.com/Kinto/kinto-signer/releases/tag/0.7.1
        
        **Bug fix**
        
        - Update the `last_modified` value when updating the collection status and signature
          (kinto/kinto-signer#97)
        - Trigger ``ResourceChanged`` events when the destination collection and records are updated
          during signing. This allows plugins like ``kinto-changes`` and ``kinto.plugins.history``
          to catch the changes (kinto/kinto-signer#101)
        
        
        0.6.1 (2016-07-13)
        ==================
        
        Kinto
        '''''
        
        **kinto 3.2.1 → 3.2.2**: https://github.com/Kinto/kinto/releases/tag/3.2.2
        
        **Bug fixes**
        
        - Fix bug in object permissions with memory backend (#708)
        - Make sure the tombstone is deleted when the record is created with PUT. (#715)
        - Bump ``last_modified`` on record when provided value is equal to previous
          in storage ``update()`` method (#713)
        
        
        0.6.0 (2016-05-25)
        ==================
        
        This release moves to the Kinto 3 series. This version merges Cliquet
        into ``kinto.core`` and all plugins have been updated to work with this
        change. This is a change to code structure, but there is a
        user-visible change, which is that settings referring to Cliquet
        module paths should now be updated to refer to ``kinto.core.`` module
        paths. For example::
        
            kinto.cache_backend = cliquet.cache.postgresql
        
        Should be changed to::
        
            kinto.cache_backend = kinto.core.cache.postgresql
        
        
        Kinto
        '''''
        
        **kinto 2.1.2 → 3.2.0**: https://github.com/Kinto/kinto/releases/tag/3.2.0
        
        **API**
        
        - Added the ``GET /contribute.json`` endpoint for open-source information (fixes #607)
        - Allow record IDs to be any string instead of just UUIDs (fixes #655).
        
        API is now at version **1.7**. See `API changelog <http://kinto.readthedocs.io/en/latest/api/>`_.
        
        **New features**
        
        - Major version update. Merged cliquet into kinto.core. This is
          intended to simplify the experience of people who are new to Kinto.
          Addresses #687.
        - Removed ``initialize_cliquet()``, which has been deprecated for a while.
        - Removed ``cliquet_protocol_version``. Kinto already defines
          incompatible API variations as part of its URL format (e.g. ``/v0``,
          ``/v1``). Services based on kinto.core are free to use
          ``http_api_version`` to indicate any additional changes to their
          APIs.
        - Simplify settings code. Previously, ``public_settings`` could be
          prefixed with a project name, which would be reflected in the output
          of the ``hello`` view. However, this was never part of the API
          specification, and was meant to be solely a backwards-compatibility
          hack for first-generation Kinto clients. Kinto public settings
          should always be exposed unprefixed. Applications developed against
          kinto.core can continue using these names even after they transition
          clients to the new implementation of their service.
        - ``kinto start`` now accepts a ``--port`` option to specify which port to listen to.
          **Important**: Because of a limitation in [Pyramid tooling](http://stackoverflow.com/a/21228232/147077),
          it won't work if the port is hard-coded in your existing ``.ini`` file. Replace
          it by ``%(http_port)s`` or regenerate a new configuration file with ``kinto init``.
        - Add support for ``pool_timeout`` option in Redis backend (fixes #620)
        - Add new setting ``kinto.heartbeat_timeout_seconds`` to control the maximum duration
          of the heartbeat endpoint (fixes #601)
        
        **Bug fixes**
        
        - Fix internal storage filtering when an empty list of values is provided.
        - Authenticated users are now allowed to obtain an empty list of buckets on
          ``GET /buckets`` even if no bucket is readable (#454)
        - Fix enabling flush enpoint with ``KINTO_FLUSH_ENDPOINT_ENABLED`` environment variable (fixes #588)
        - Fix reading settings for events listeners from environment variables (fixes #515)
        - Fix principal added to ``write`` permission when a publicly writable object
          is created/edited (fixes #645)
        - Prevent client to cache and validate authenticated requests (fixes #635)
        - Fix bug that prevented startup if old Cliquet configuration values
          were still around (#633)
        - Fix crash when a cache expires setting is set for a specific bucket or collection. (#597)
        - Mark old cliquet backend settings as deprecated (but continue to support them). (#596)
        
        - Add an explicit message when the server is configured as read-only and the
          collection timestamp fails to be saved (ref Kinto/kinto#558)
        - Prevent the browser to cache server responses between two sessions. (#593)
        - Redirects version prefix to hello page when trailing_slash_redirect is enabled. (#700)
        - Fix crash when setting empty permission list with PostgreSQL permission backend (fixes Kinto/kinto#575)
        - Fix crash when type of values in querystring for exclude/include is wrong (fixes Kinto/kinto#587)
        - Fix crash when providing duplicated principals in permissions with PostgreSQL permission backend (fixes #702)
        - Add ``app.wsgi`` to the manifest file. This helps address Kinto/kinto#543.
        - Fix loss of data attributes when permissions are replaced with ``PUT`` (fixes Kinto/kinto#601)
        - Fix 400 response when posting data with ``id: "default"`` in default bucket.
        - Fix 500 on heartbeat endpoint when a check does not follow the specs and raises instead of
          returning false.
        
        
        Kinto-attachment
        ''''''''''''''''
        
        **kinto-attachment 0.5.0 → 0.7.0**: https://github.com/Kinto/kinto-attachment/releases/tag/0.7.0
        
        **Breaking changes**
        
        - When the gzip option is used during upload, the ``original`` attribute  is now within
          the ``attachment`` information.
        
        **New features**
        
        - Kinto 3.0 compatibility update
        - Add a ``kinto.attachment.extra.base_url`` settings to be exposed publicly. (#73)
        - Add the gzip option to automatically gzip files on upload (#85)
        
        
        kinto-amo
        '''''''''
        
        **kinto-amo 0.1.0 → 0.2.0**: https://github.com/mozilla-services/kinto-amo/releases/tag/0.2.0
        
        - Kinto 3.0 compatibility update
        
        
        kinto-changes
        '''''''''''''
        
        **kinto-changes 0.2.0 → 0.3.0**: https://github.com/Kinto/kinto-changes/releases/tag/0.3.0
        
        - Kinto 3.0 compatibility update
        
        
        kinto-signer
        ''''''''''''
        
        **kinto-signer 0.4.0 → 0.7.0**: https://github.com/Kinto/kinto-signer/releases/tag/0.7.0
        
        **Breaking changes**
        
        - The collection timestamp is now included in the payload prior to signing.
          Old clients won't be able to verify the signature made by this version.
        
        **Bug fixes**
        
        - Do not crash on record deletion if destination was never synced (Kinto/kinto-signer#82)
        
        **New features**
        
        - Raise configuration errors if resources are not configured correctly (Kinto/kinto-signer#88)
        
        
        kinto-fxa
        '''''''''
        
        **cliquet-fxa 1.4.0 → kinto-fxa  2.0.0**: https://github.com/mozilla-services/kinto-fxa/releases/tag/2.0.0
        
        **Breaking changes**
        
        - Project renamed to *Kinto-fxa* to match the rename of ``cliquet`` to
          ``kinto.core``.
        - The setting ``multiauth.policy.fxa.use`` must now
          be explicitly set to ``kinto_fxa.authentication.FxAOAuthAuthenticationPolicy``
        - Kinto 3.0 compatibility update
        
        **Bug fixes**
        
        - Fix checking of ``Authorization`` header when python is ran with ``-O``
          (ref mozilla-services/cliquet#592)
        
        
        kinto-ldap
        ''''''''''
        
        **kinto-ldap 0.1.0**: https://github.com/Kinto/kinto-ldap/releases/tag/0.1.0
        
        
        
        0.5.1 (2016-05-20)
        ==================
        
        **Version control**
        
        - **Cliquet 3.1.5**: https://github.com/mozilla-services/cliquet/releases/tag/3.1.5
        - **kinto 2.1.2**: https://github.com/Kinto/kinto/releases/tag/2.1.2
        
        
        0.5.0 (2016-05-17)
        ==================
        
        **Version control**
        
        - **Cliquet 3.1.4**: https://github.com/mozilla-services/cliquet/releases/tag/3.1.4
        - **kinto 2.1.1**: https://github.com/Kinto/kinto/releases/tag/2.1.1
        - **kinto-attachment 0.5.1**: https://github.com/Kinto/kinto-attachment/releases/tag/0.5.1
        - **kinto-amo 0.1.1**: https://github.com/mozilla-services/kinto-amo/releases/tag/0.1.1
        - **kinto-changes 0.2.0**: https://github.com/Kinto/kinto-changes/releases/tag/0.2.0
        - **kinto-signer 0.5.0**: https://github.com/Kinto/kinto-signer/releases/tag/0.5.0
        - **cliquet-fxa 1.4.0**: https://github.com/mozilla-services/cliquet-fxa/releases/tag/1.4.0
        - **boto 2.40**: http://docs.pythonboto.org/en/latest/releasenotes/v2.40.0.html
        
        
        0.4.0 (2016-04-27)
        ==================
        
        **Version control**
        
        - **kinto 2.1.0**: https://github.com/Kinto/kinto/releases/tag/2.10
        - **kinto-changes 0.2.0**: https://github.com/Kinto/kinto-changes/releases/tag/0.2.0
        - **kinto-signer 0.3.0**: https://github.com/Kinto/kinto-signer/releases/tag/0.3.0
        
        
        0.3.0 (2016-04-18)
        ==================
        
        - Fix kinto-attachment bucket setting in configuration example
        
        **Version control**
        
        Dependencies version were updated to:
        
        - **kinto-attachment 0.5.1**: https://github.com/Kinto/kinto-attachment/releases/tag/0.5.1
        
        
        0.2.0 (2016-03-22)
        ==================
        
        **Version control**
        
        Dependencies version where updated to:
        
        - **kinto-signer 0.2.0**: https://github.com/Kinto/kinto-signer/releases/tag/0.2.0
        
        
        0.1.0 (2016-03-11)
        ==================
        
        **Configuration changes**
        
        - ``kinto.plugins.default_bucket`` plugin is no longer assumed. We invite users
          to check that the ``kinto.plugins.default_bucket`` is present in the
          ``includes`` setting if they expect it. (ref #495)
        
        **Version control**
        
        Dependencies version were updated to:
        
        - **cliquet 3.1.0**: https://github.com/mozilla-services/cliquet/releases/tag/3.1.0
        - **kinto 2.0.0**: https://github.com/Kinto/kinto/releases/tag/2.0.0
        - **kinto-attachment 0.4.0**: https://github.com/Kinto/kinto-attachment/releases/tag/0.4.0
        - **kinto-changes 0.1.0**: https://github.com/Kinto/kinto-changes/releases/tag/0.1.0
        - **kinto-signer 0.1.0**: https://github.com/Kinto/kinto-signer/releases/tag/0.1.0
        - **cliquet-fxa 1.4.0**: https://github.com/mozilla-services/cliquet-fxa/releases/tag/1.4.0
        - **boto 2.39**: https://github.com/boto/boto/releases/tag/2.39.0
        
Keywords: web services
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: License :: OSI Approved :: Apache Software License
