Skip to content

Commit 816e3e3

Browse files
authored
Merge branch 'main' into TR-3506_mitre_update
2 parents ff0ecd0 + 7c03fa1 commit 816e3e3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: detect-private-key
99
- id: forbid-submodules
1010
- repo: https://github.com/astral-sh/ruff-pre-commit
11-
rev: v0.9.2
11+
rev: v0.9.10
1212
hooks:
1313
- id: ruff
1414
args: [ --fix ]

contentctl/objects/data_source.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ class DataSource(SecurityContentObject):
1717
source: str = Field(...)
1818
sourcetype: str = Field(...)
1919
separator: Optional[str] = None
20+
separator_value: None | str = None
2021
configuration: Optional[str] = None
2122
supported_TA: list[TA] = []
2223
fields: None | list = None
2324
field_mappings: None | list = None
25+
mitre_components: list[str] = []
2426
convert_to_log_source: None | list = None
2527
example_log: None | str = None
2628
output_fields: list[str] = []

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ gitpython = "^3.1.43"
3333
setuptools = ">=69.5.1,<76.0.0"
3434

3535
[tool.poetry.group.dev.dependencies]
36-
ruff = "^0.9.2"
36+
ruff = "^0.9.10"
3737

3838
[build-system]
3939
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)