-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from DCSO/release/2.0.0b1
Release 2.0.0b1
- Loading branch information
Showing
2 changed files
with
23 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,31 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
All notable changes to the DCSO Threat Intelligence Engine (TIE) Add-On for Splunk | ||
will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
### Added (for new features) | ||
- Published app in Splunkbase | ||
- Extend logging capabilities | ||
### Changed (for changes in existing functionality) | ||
\- | ||
### Deprecated (for soon-to-be removed features) | ||
- Removed seq.json file and switch to Splunk checkpoints | ||
### Removed (for now removed features) | ||
\- | ||
### Fixed (for any bug fixes) | ||
\- | ||
### Security (in case of vulnerabilities) | ||
\- | ||
## [2.0.0b1] - 2020-06-17 | ||
|
||
### Added | ||
|
||
* Support for Splunk Enterprise v8, which means dropping support for Python v2.7. | ||
We will not support Python 2 any longer. | ||
* Possibility to specify ranges when configuring the add-on. For example, severity | ||
can be specified as `1-` to include all but zero, or `2-4` to include only 2, 3, | ||
and 4, or `-5` to include all 5 or lower. Specifying just a number will work as | ||
before. | ||
* Logging is now done in a separate file as JSON. This makes it easier to audit the | ||
AddOn in Splunk itself (using an index). | ||
* We include a `setup.py` which can be used to create a Splunk distribution using | ||
`setup.py splunkdist`. The resulting TAR or ZIP files can then be used to install | ||
through Splunk's web interface. | ||
* The configuration of the Add-On within Splunk's web interface has been a bit | ||
reorganized and more help has been added. | ||
|
||
## [1.0.0] - 2019-03-12 | ||
### Added (for new features) | ||
- Published Splunk technical addon in version 1.0.0 at github.com | ||
|
||
### Added | ||
|
||
[Unreleased]: https://github.com/dcso/TIE-Splunk-TA/compare/v1.0.0...HEAD | ||
* Published Splunk technical add-on in version 1.0.0 at github.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Copyright (c) 2020, DCSO GmbH | ||
|
||
__version__ = "2.0.0b7" | ||
__version__ = "2.0.0b1" |