Skip to content

Commit da3b249

Browse files
authoredMar 21, 2025··
deprecate incydr functionality and remove guides (#416)
* deprecate incydr functionality * specify python version for ci * remove failing test * fix deprecation text in alert rules * add link to deprecation text * changelog * remove duplicate warning
1 parent 310ced0 commit da3b249

25 files changed

+79
-868
lines changed
 

‎.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v1
2020
with:
21-
python-version: '3.x'
21+
python-version: '3.11'
2222
- name: Install tox
2323
run: |
2424
pip install tox==3.17.1

‎.github/workflows/style.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v1
2020
with:
21-
python-version: '3.x'
21+
python-version: '3.11'
2222
- name: Install tox
2323
run: |
2424
pip install tox==3.17.1

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
99
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.
1010

11+
## Unreleased
12+
13+
### Deprecated
14+
15+
- All Incydr functionality is deprecated in Code42CLI. Use the Incydr SDK instead: https://developer.code42.com/
16+
1117
## 1.18.1 - 2025-01-08
1218

1319
## Changed

‎docs/commands/alertrules.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
2+
13
.. click:: code42cli.cmds.alert_rules:alert_rules
24
:prog: alert-rules
35
:nested: full

‎docs/commands/alerts.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
2+
13
.. click:: code42cli.cmds.alerts:alerts
24
:prog: alerts
35
:nested: full

‎docs/commands/auditlogs.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
2+
13
.. click:: code42cli.cmds.auditlogs:audit_logs
24
:prog: audit-logs
35
:nested: full

‎docs/commands/cases.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
2+
13
.. click:: code42cli.cmds.cases:cases
24
:prog: cases
35
:nested: full

‎docs/commands/securitydata.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
Security Data
33
*************
44

5-
.. warning:: V1 file events, saved searches, and queries are **deprecated**.
6-
7-
See more information in the `Enable V2 File Events User Guide <../userguides/v2apis.html>`_.
5+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
86

97
.. click:: code42cli.cmds.securitydata:security_data
108
:prog: security-data

‎docs/commands/trustedactivities.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
2+
13
.. click:: code42cli.cmds.trustedactivities:trusted_activities
24
:prog: trusted-activities
35
:nested: full

‎docs/commands/watchlists.rst

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. warning:: Incydr functionality is **deprecated**. Use the Incydr CLI instead.
2+
13
.. click:: code42cli.cmds.watchlists:watchlists
24
:prog: watchlists
35
:nested: full

‎docs/guides.md

-12
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,17 @@
88
99
Get started with the Code42 command-line interface (CLI) <userguides/gettingstarted.md>
1010
Configure a profile <userguides/profile.md>
11-
Enable V2 File Events <userguides/v2apis.md>
12-
Ingest data into a SIEM <userguides/siemexample.md>
1311
Manage legal hold users <userguides/legalhold.md>
1412
Clean up your environment by deactivating devices <userguides/deactivatedevices.md>
1513
Write custom extension scripts using the Code42 CLI and Py42 <userguides/extensions.md>
1614
Manage users <userguides/users.md>
17-
Configure trusted activities <userguides/trustedactivities.md>
18-
Configure alert rules <userguides/alertrules.md>
19-
Add and manage cases <userguides/cases.md>
2015
Perform bulk actions <userguides/bulkcommands.md>
21-
Manage watchlist members <userguides/watchlists.md>
2216
```
2317

2418
* [Get started with the Code42 command-line interface (CLI)](userguides/gettingstarted.md)
2519
* [Configure a profile](userguides/profile.md)
26-
* [Enable V2 File Events](userguides/v2apis.md)
27-
* [Ingest data into a SIEM](userguides/siemexample.md)
2820
* [Manage legal hold users](userguides/legalhold.md)
2921
* [Clean up your environment by deactivating devices](userguides/deactivatedevices.md)
3022
* [Write custom extension scripts using the Code42 CLI and Py42](userguides/extensions.md)
3123
* [Manage users](userguides/users.md)
32-
* [Configure trusted activities](userguides/trustedactivities.md)
33-
* [Configure alert rules](userguides/alertrules.md)
34-
* [Add and manage cases](userguides/cases.md)
3524
* [Perform bulk actions](userguides/bulkcommands.md)
36-
* [Manage watchlist members](userguides/watchlists.md)

‎docs/userguides/alertrules.md

-110
This file was deleted.

‎docs/userguides/cases.md

-96
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.