Skip to content

Commit

Permalink
Small fixes and 2.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
avanbrunt-cb committed Nov 1, 2023
1 parent b131cab commit c7b3d1a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Carbon Black Cloud Syslog connector lets administrators forward alerts and a

Still need CBC Syslog 1.x? Checkout the `legacy` branch

If you are looking to migrate from CBC Syslog 1.x to 2.x take a look at the [migration doc](MIGRATION.md).
If you are looking to migrate from CBC Syslog 1.x to 2.x take a look at the [migration doc](https://github.com/carbonblack/cbc-syslog/blob/main/MIGRATION.md).

## Features

Expand Down Expand Up @@ -297,7 +297,7 @@ The following fields are available for building the Syslog header
* `{{datetime_legacy}}` - Uses current time with format e.g. Jan 18 11:07:53
* `{{vendor}}` - CarbonBlack
* `{{product}}` - CBCSyslog
* `{{product_version}}` - Current CBC Syslog version e.g. 2.0.0
* `{{product_version}}` - Current CBC Syslog version e.g. 2.0.1


For the available Alert fields see [Search Fields - Alerts](https://developer.carbonblack.com/reference/carbon-black-cloud/platform/latest/alert-search-fields)
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## Version 2.0.1

**Bug Fixes:**
* Enforce carbon-black-cloud-sdk >= 1.5.0
* Fix broken link in readme for pypi

## Version 2.0.0

The CBC Syslog tool has been rewritten from the ground up to provide increased customization and improved Alert data with support for the latest Carbon Black Cloud alert types
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Package dependencies
carbon-black-cloud-sdk
carbon-black-cloud-sdk >= 1.5.0
tomli >= 1.1.0; python_version < '3.11'
Jinja2
psutil
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]

install_requires = [
"carbon-black-cloud-sdk",
"carbon-black-cloud-sdk >= 1.5.0",
"Jinja2",
"psutil",
"tomli >= 1.1.0; python_version < '3.11'"
Expand Down Expand Up @@ -41,7 +41,7 @@

setup(
name="cbc_syslog",
version="2.0.0",
version="2.0.1",
install_requires=install_requires,
extras_require=extras_require,
package_dir={"": "src"},
Expand Down
2 changes: 1 addition & 1 deletion src/cbc_syslog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = 'Carbon Black Developer Network'
__license__ = 'MIT'
__copyright__ = 'Copyright 2018-2023 VMware Carbon Black'
__version__ = '2.0.0'
__version__ = '2.0.1'

from .core import poll, check, history, wizard, convert

Expand Down

0 comments on commit c7b3d1a

Please sign in to comment.