Skip to content
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.

Django 1.11 fix #730

Closed
wants to merge 15 commits into from
Closed
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ tests/cigar_example/static
supervisord.log
tests/cigar_example/static_root/
dist
site/
example_app/
23 changes: 4 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,16 @@ sudo: false

env:
- TOX_ENV=py27-flake8
- TOX_ENV=py27-django1.8-drf2.3
- TOX_ENV=py27-django1.8-drf2.4
- TOX_ENV=py27-django1.8-drf3.0
- TOX_ENV=py27-django1.8-drf3.1
- TOX_ENV=py27-django1.8-drf3.2
- TOX_ENV=py27-django1.8-drf3.3
- TOX_ENV=py27-django1.8-drf3.4
- TOX_ENV=py27-django1.9-drf3.3
- TOX_ENV=py33-django1.8-drf3.1
- TOX_ENV=py33-django1.8-drf3.2
- TOX_ENV=py33-django1.8-drf3.3
- TOX_ENV=py34-django1.8-drf2.3
- TOX_ENV=py34-django1.8-drf2.4
- TOX_ENV=py34-django1.8-drf3.0
- TOX_ENV=py34-django1.8-drf3.1
- TOX_ENV=py34-django1.8-drf3.2
- TOX_ENV=py34-django1.8-drf3.3
- TOX_ENV=py34-django1.9-drf3.3
- TOX_ENV=py27-django1.9-drf3.4
- TOX_ENV=py35-django1.8-drf3.3
- TOX_ENV=py35-django1.8-drf3.4
- TOX_ENV=py35-django1.9-drf3.3
- TOX_ENV=py35-django1.9-drf3.4

matrix:
allow_failures:
- env: TOX_ENV=py27-django1.9-drf3.3
- env: TOX_ENV=py34-django1.9-drf3.3
- env: TOX_ENV=py35-django1.9-drf3.3
fast_finish: true

install:
Expand Down
41 changes: 39 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,45 @@
# Change Log

## [Unreleased](https://github.com/marcgibbons/django-rest-swagger/tree/HEAD)
## [0.3.9](https://github.com/marcgibbons/django-rest-swagger/tree/0.3.9) (2016-07-17)
[Full Changelog](https://github.com/marcgibbons/django-rest-swagger/compare/2.0.0...0.3.9)

[Full Changelog](https://github.com/marcgibbons/django-rest-swagger/compare/0.3.7...HEAD)
**Implemented enhancements:**

- Add possibility of generating 'header' parameters [\#3](https://github.com/marcgibbons/django-rest-swagger/issues/3)
- Add generic filtering parameters [\#2](https://github.com/marcgibbons/django-rest-swagger/issues/2)
- Add permission classes as part of the implementation notes [\#1](https://github.com/marcgibbons/django-rest-swagger/issues/1)

**Closed issues:**

- ImportError: cannot import name 'OpenAPIRenderer' [\#478](https://github.com/marcgibbons/django-rest-swagger/issues/478)
- Swagger UI doesn't work in 2.0.0 [\#477](https://github.com/marcgibbons/django-rest-swagger/issues/477)
- Swagger 2.0 roadmap [\#443](https://github.com/marcgibbons/django-rest-swagger/issues/443)
- CSRF cookie fails on HttpOnly [\#432](https://github.com/marcgibbons/django-rest-swagger/issues/432)

**Merged pull requests:**

- Release 0.3.9 [\#481](https://github.com/marcgibbons/django-rest-swagger/pull/481) ([marcgibbons](https://github.com/marcgibbons))

## [2.0.0](https://github.com/marcgibbons/django-rest-swagger/tree/2.0.0) (2016-07-14)
[Full Changelog](https://github.com/marcgibbons/django-rest-swagger/compare/2.0.0a0...2.0.0)

**Closed issues:**

- DRS docs break with CSP that blocks inline scripts [\#434](https://github.com/marcgibbons/django-rest-swagger/issues/434)

## [2.0.0a0](https://github.com/marcgibbons/django-rest-swagger/tree/2.0.0a0) (2016-07-14)
[Full Changelog](https://github.com/marcgibbons/django-rest-swagger/compare/0.3.8...2.0.0a0)

**Closed issues:**

- \#Not working on production deployed on aws. if debug is true works on localhost else fails on localhost as well. [\#464](https://github.com/marcgibbons/django-rest-swagger/issues/464)

**Merged pull requests:**

- Release: 2.0.0a0 [\#470](https://github.com/marcgibbons/django-rest-swagger/pull/470) ([marcgibbons](https://github.com/marcgibbons))

## [0.3.8](https://github.com/marcgibbons/django-rest-swagger/tree/0.3.8) (2016-06-27)
[Full Changelog](https://github.com/marcgibbons/django-rest-swagger/compare/0.3.7...0.3.8)

**Closed issues:**

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ for more information, see the [documentation][docs].

## Requirements
* Python (2.7, 3.3, 3.4, 3.5)
* Django (1.8)
* Django REST framework (2.3.8+)
* Django (1.8+)
* Django REST framework (3.8+)
* PyYAML (3.10+)

## Bugs & Contributions
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Django==1.7.1
Django>=1.8.13
Markdown==2.1.1
PyYAML==3.11
argh==0.23.2
argparse==1.2.1
coverage==3.6
django-nose==1.2
djangorestframework>=2.3.8
django-nose>=1.4.4
djangorestframework>=3.3
django-filter==0.11.0
jsonschema==2.5
nose==1.3.0
nose>=1.3.0
mock==1.0.1
ordereddict==1.1
docutils>=0.11
docutils>=0.11
2 changes: 1 addition & 1 deletion rest_framework_swagger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = '0.3.8'
VERSION = '0.3.10'

DEFAULT_SWAGGER_SETTINGS = {
'exclude_url_names': [],
Expand Down
Loading