517 Commits

Author SHA1 Message Date
Frank Hamand
ced3e0961a Merge pull request #482 from miguel250/patch-1
Allow user filter for LDAP to be configure
2017-04-04 15:42:00 +01:00
Frank Hamand
6077d50577 Update cabot_alert_hipchat to 2.0.2
Fixes bug when both HIPCHAT_URL and HIPCHAT_DOMAIN were set
2017-04-04 13:04:52 +01:00
Miguel Perez
283751ea24 Allow user filter for LDAP to be configure 2017-04-03 21:16:54 -04:00
Frank Hamand
6596bcf0ec Fixx env file syntax error 2017-04-03 14:09:58 +01:00
Frank Hamand
f0ef5a886c Remove HIPCHAT_URL from example and default confs
This is deprecated now as we've switched to hipchat api v2 by default
2017-04-03 13:40:42 +01:00
Frank Hamand
49dd5ea305 0.10.2 0.10.2 2017-04-03 13:29:06 +01:00
Frank Hamand
c453b27920 Merge pull request #481 from arachnys/hipchat-v2
Update cabot-alert-hipchat to 2.0.0 (hipchat api v2)
2017-04-03 13:27:15 +01:00
Frank Hamand
4b45b09841 Update hipchat alert to 2.0.1
This makes it backwards compatible to existing hipchat v1 settings
2017-04-03 13:26:35 +01:00
Frank Hamand
d77087efad Handle running setup.py from non .git source 0.10.2b1 2017-03-29 14:48:14 +01:00
Frank Hamand
58578a8ff3 Update cabot-alert-hipchat to 2.0.0 (hipchat api v2) 2017-03-29 14:44:33 +01:00
Frank Hamand
023f283f1c Merge pull request #469 from arachnys/add-interactive-api-docs
Add interactive api docs using djangorestframework 3.6
2017-03-29 14:42:38 +01:00
Frank Hamand
597b9555b2 Set SECURE_PROXY_SLL_HEADER if WWW_SCHEME is https
Django uses SECURE_PROXY_SSL_HEADER to know if we're on https for
generating absolute urls, which are used by djangorestframework
2017-03-29 13:09:09 +01:00
Frank Hamand
86471956ae Add interactive api docs using djangorestframework 3.6 2017-03-29 13:09:09 +01:00
Frank Hamand
8ea6a4ed6a Merge pull request #480 from arachnys/update-requirements
Update django rest framework and other requirements
2017-03-29 12:53:25 +01:00
Frank Hamand
7c16730140 Revert django-filter to 1.0.1 as 1.0.2 is seriously broken 2017-03-29 12:45:34 +01:00
Frank Hamand
1f47702c22 Update django rest framework and other requirements
There are a few requirement patch version bumps that we should keep up
with. Also a major djangorestframework that will allow us to add their
new interactive API docs feature.
2017-03-29 12:23:51 +01:00
Frank Hamand
bce10a7b57 Merge pull request #476 from doboy/include-git
do not exclude git because in setup.py requires it
2017-03-27 10:06:51 +01:00
Frank Hamand
3cb6ff1dd9 Merge pull request #475 from doboy/syncdb
syncdb was changed to migrate in Django==1.7
2017-03-27 10:05:58 +01:00
Zack Do
5f04f0c769 do not exclude git because in setup.py requires it
```
 1#!/usr/bin/env python
 2import os
 3from setuptools import setup, find_packages
 4from os import environ as env
 5import subprocess
 6
 7from pip.req import parse_requirements
 8
 9requirements = [str(req.req) for req in parse_requirements('requirements.txt', session=False)]
10requirements_plugins = [str(req.req) for req in parse_requirements('requirements-plugins.txt', session=False)]
11
12VERSION = subprocess.check_output(['git', 'describe', '--tags']).strip()
13
14setup(
15    name='cabot',
16    version=VERSION,
17    description="Self-hosted, easily-deployable monitoring and alerts service"
18                " - like a lightweight PagerDuty",
19    long_description=open('README.md').read(),
20    author="Arachnys",
21    author_email='info@arachnys.com',
22    url='http://cabotapp.com',
23    license='MIT',
24    install_requires=requirements + requirements_plugins,
25    packages=find_packages(),
26    include_package_data=True,
27    entry_points={
28        'console_scripts': [
29            'cabot = cabot.entrypoint:main',
30        ],
31    },
32    zip_safe=False
33)
```
2017-03-24 11:57:01 -07:00
Frank Hamand
4d9f5ddb34 0.10.1 0.10.1 2017-03-24 18:25:27 +00:00
Zack Do
7ce8423c96 syncdb was changed to migrate in Django==1.7 2017-03-24 11:25:22 -07:00
Frank Hamand
80b3ad64cd Fix cabot_alert_twilio not working on django 1.10 2017-03-24 18:25:01 +00:00
Frank Hamand
187eb93393 Merge pull request #472 from arachnys/gitter-badge
Add Gitter.im badge to ReadMe
2017-03-24 17:51:16 +00:00
Frank Hamand
11ba7e759e Merge pull request #474 from arachnys/frankh-patch-2
Add pypi version shield
2017-03-24 17:50:46 +00:00
Frank Hamand
2cb13eee4d Add pypi version shield 2017-03-24 17:28:15 +00:00
Frank Hamand
437368904c Merge pull request #453 from arachnys/remove-docs-badge
Remove docs badge from readme
2017-03-24 17:27:04 +00:00
Frank Hamand
71d66d658b 0.10.0 0.10.0 2017-03-24 13:50:10 +00:00
Jean-Fred Berthelot
b3f0cb1491 Add Gitter.im badge to ReadMe 2017-03-23 20:17:43 +01:00
Frank Hamand
9f8291b54e Merge pull request #468 from arachnys/profile-update-messages
Add flash messages when updating user profile
2017-03-22 12:04:21 +00:00
Frank Hamand
110b8afe10 Add flash messages when updating user profile
Currently there's no feedback at all when saving changes
2017-03-22 11:56:17 +00:00
Frank Hamand
0a65dd01f1 Merge pull request #467 from arachnys/reload-plugins-on-startup
Automatically reload plugins on server start
0.10.0b7
2017-03-21 17:35:17 +00:00
Frank Hamand
e6019e3fba Automatically reload plugins after migrations are run
This means when you add a new plugin to your config it will be
visible immediately instead of when you try to create a service
2017-03-21 16:40:57 +00:00
Frank Hamand
fa5f806437 Merge pull request #466 from arachnys/add-slack-plugin
Add cabot_alert_slack as default plugin
0.10.0b6
2017-03-21 15:38:05 +00:00
Frank Hamand
9d60f6b796 In examples don't overwrite settings that match the default 2017-03-21 15:32:30 +00:00
Frank Hamand
81b15fcae3 Add cabot_alert_slack as default plugin 2017-03-21 15:22:34 +00:00
Frank Hamand
6f2e196bdb Merge pull request #452 from arachnys/django-1.10
Upgrade to Django 1.10
2017-03-21 11:58:28 +00:00
Frank Hamand
ca04780179 Update README.md 2017-03-21 11:24:39 +00:00
Frank Hamand
47e98eb86f Update README.md 2017-03-21 11:23:52 +00:00
Frank Hamand
2bb94485ef Update requirements with pipenv
The ldap requirements were out of date - django-auth-ldap
switched to pyldap
0.10.0b5
2017-03-16 10:33:31 +00:00
Frank Hamand
0329cdf08e Ignore Pipfile.lock for now
Use pipenv run pip freeze instead as Pipfile.lock is pretty buggy
at the moment
2017-03-16 10:33:31 +00:00
Frank Hamand
75ce4b6133 Update dev requirements 2017-03-16 10:33:31 +00:00
Frank Hamand
135079fa9a Update requirements and use Pipfile to manage explicit pinning
Currently our requirements are out of date and we don't know what is
pinned for an explicit reason. Using pipfile we can keep them pinned
but update easily
2017-03-16 10:33:31 +00:00
Frank Hamand
a6e6ed35d3 Silence noisy celery logs in tests 2017-03-16 10:33:30 +00:00
Frank Hamand
2a170d5405 Update ampq
New version of celery requires updated ampq
2017-03-16 10:33:30 +00:00
Frank Hamand
b1bca09088 Upgrade to Django 1.10 2017-03-16 10:33:30 +00:00
Frank Hamand
ed32dea05f Update to celery 4 2017-03-16 10:33:29 +00:00
Frank Hamand
0d9bbefeef Fix issue with django-compressor on django 1.10
See: https://github.com/django-compressor/django-compressor/issues/706
2017-03-16 10:32:11 +00:00
Frank Hamand
dc660c2817 0.9.2 0.9.2 2017-03-15 16:52:00 +00:00
Frank Hamand
0b8bb77a5c Merge pull request #463 from arachnys/add-about-page
Add package version and very simple about page
2017-03-15 16:50:49 +00:00
Frank Hamand
97d8a90cad Add package version and very simple about page 2017-03-15 16:03:33 +00:00