forked from crits/crits_services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UPDATING
38 lines (30 loc) · 1.46 KB
/
UPDATING
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This file will document large changes that anyone tracking development branches
should be aware of. This will also include things like dependency changes or
references to changes in other repositories. Updates are sorted by commit date
descending.
Author: frbapolkosnik
Date: 2016-02-03
You can run your CRITs-master on Django 1.7 with the latest commit!
In order to run on 1.7 you'll have to add an one-liner to forms.py in your
custom-made services.
You'll need to add the following line:
kwargs.setdefault('label_suffix', ':')
before every occurrence of the following:
super(YourCustomServiceConfigForm, self).__init__(*args, **kwargs)
in forms.py inside your custom-made services.
Author: frbapolkosnik
Date: 2015-10-23
The bootstrap has been added to the services in order to simplify the
installation process. Please review Readme.md for a quick overview of how
it works.
Author: wxs
Date: 2015-06-09
The passivetotal_lookup service has been changed to use their new APIs.
Please make sure you have "https://www.passivetotal.org/api/v1" in the
service configuration for the query URL. Failure to do so will cause
the service to break once the old APIs are removed.
Author: wxs
Date: 2015-03-31
The relationship_service received an update which allows it to assign
campaigns to nodes on the graph. Part of this change required an update
to core CRITs code, so please make sure you update that too.