Django-channels

Latest version: v0.7.0

Safety actively analyzes 619401 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 3

1.1.0

New Features
- Support Django 1.11 55
- Add `kawasaki.__version__` 52

Internal
- Improve testing with tox 53

1.0.0

Breaking Changes
Change API for Django
Before
python
import kawasemi
kawasemi.send("Sample notification.")


After
python
from kawasemi.django import send
send("Sample notification.")


New Features
Use kawasemi without Django
Example
python
from kawasemi import Kawasemi

config = {
"CHANNELS": {
"hipchat": {
"_backend": "kawasemi.backends.hipchat.HipChatChannel",
"api_id": "1234567",
"token": "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
}
}
}
kawasemi = Kawasemi(config)
kawasemi.send("Sample notification.")


Internal
- Clean up environment variables used for testing 46
- Prepare multiple loader support 47
- Add `.readthedocs.yml` 49
- Update Sphinx & theme 50

1.0.0b1

Breaking Changes
Change API for Django
Before
python
import kawasemi
kawasemi.send("Sample notification.")


After
python
from kawasemi.django import send
send("Sample notification.")


New Features
Use kawasemi without Django
Example
python
from kawasemi import Kawasemi

config = {
"CHANNELS": {
"hipchat": {
"_backend": "kawasemi.backends.hipchat.HipChatChannel",
"api_id": "1234567",
"token": "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
}
}
}
kawasemi = Kawasemi(config)
kawasemi.send("Sample notification.")


Internal
- Clean up environment variables used for testing 46
- Prepare multiple loader support 47

0.8.0

Breaking Changes
- Rename this project **kawasemi** 45
- Change the key in `settings.py` used in Django

Internal
- Update links to Read the Docs 42
- Introduce tox-travis for testing 43
- Test with Python 3.6 and Django 1.11 alpha 44

0.7.0

Breaking Changes
- Drop Django 1.7 support 39

Features
- Add Django 1.10 support 34

Internal
- Introducing typing, mypy, and type hints 36
- Clean up setup.py 38
- Use Sphinx 1.4.x 40

0.6.1

- Update README 32
- Drop Python 3.2 support 37

Page 1 of 3

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.