Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to cliquet 3.1 (fixes #489) #500

Merged
merged 1 commit into from
Mar 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This document describes changes between each past release.
thanks @ayusharma)
- Server now returns 415 error response if client cannot accept JSON response (#461, mozilla-services/cliquet#667)
- Server now returns 415 error response if client does not send JSON request (#461, mozilla-services/cliquet#667)
- Add the ``__lbheartbeat__`` endpoint, for load balancer membership test.

Protocol is now version 1.4. See `API changelog <http://kinto.readthedocs.org/en/latest/api/>`_.

Expand Down Expand Up @@ -52,6 +53,7 @@ Protocol is now version 1.4. See `API changelog <http://kinto.readthedocs.org/en
in database is done and successful.
`See more details <http://cliquet.readthedocs.org/en/latest/reference/notifications.html>`_.
- Track execution time on StatsD for each authentication sub-policy (mozilla-services/cliquet#639)
- Default console log renderer now has colours (mozilla-service/cliquet#671)

**Bug fixes**

Expand All @@ -62,6 +64,8 @@ Protocol is now version 1.4. See `API changelog <http://kinto.readthedocs.org/en
- Fix statsd initialization on storage (mozilla-services/cliquet#637)
- Providing bad last modified values on delete now returns 400 (mozilla-services/cliquet#665)
- Providing last modified in the past for delete now follows behaviour create/update (mozilla-services/cliquet#665)
- Do not always return 412 errors when request header ``If-None-Match: *``
is sent on ``POST /collection`` (fixes #489, mozilla-service/cliquet#673)

**Internal changes**

Expand Down
2 changes: 1 addition & 1 deletion docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Changelog
- List responses are now sorted by last_modified descending by default
- Return 415 error response if client cannot accept JSON response
- Return 415 error response if client does not send JSON request

- Add the ``GET /v1/__lbheartbeat__`` endpoint, for load balancer membership test.

1.3 (2016-01-28)
''''''''''''''''
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ def read_file(filename):

REQUIREMENTS = [
'waitress',
'cliquet>=3,<4',
'cliquet>=3.1,<4',
'jsonschema',
]

POSTGRESQL_REQUIREMENTS = REQUIREMENTS + [
'cliquet[postgresql]>=3,<4'
'cliquet[postgresql]>=3.1,<4'
]

MONITORING_REQUIREMENTS = REQUIREMENTS + [
'cliquet[monitoring]>=3,<4'
'cliquet[monitoring]>=3.1,<4'
]

FXA_REQUIREMENTS = REQUIREMENTS + [
Expand Down