Skip to content

add deprecation message #418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Documentation Status](https://readthedocs.org/projects/code42cli/badge/?version=latest)](https://clidocs.code42.com/en/latest/?badge=latest)

## Code42CLI end-of-life
Code42CLI is now deprecated. It has been replaced by the [Incydr CLI](https://support.code42.com/hc/en-us/articles/14827667072279-Introduction-to-the-Incydr-command-line-interface).
- Code42CLI will reach **end-of-support on January 1, 2026**, and **end-of-life on January 1, 2027**.
- To ensure uninterrupted functionality and access to the latest features, migrate your integrations to the Incydr CLI as soon as possible.

For more details, [see our FAQ](https://support.code42.com/hc/en-us/articles/32154640298263-Code42-CLI-end-of-life-FAQ).

Use the `code42` command to interact with your Code42 environment.

* `code42 security-data` is a CLI tool for extracting AED events.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
python_requires=">=3.9, <4",
install_requires=[
"chardet",
"click>=7.1.1",
"click>=7.1.1,<8.2",
"click_plugins>=1.1.1",
"colorama>=0.4.3",
"keyring==18.0.1",
Expand Down
6 changes: 4 additions & 2 deletions tests/test_bulk.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def test_generate_template_cmd_factory_returns_expected_command():
assert template.name == "generate-template"
assert len(template.params) == 2
assert template.params[0].name == "cmd"
assert template.params[0].type.choices == ["add", "remove"]
assert "add" in template.params[0].type.choices
assert "remove" in template.params[0].type.choices
assert template.params[1].name == "path"


Expand All @@ -63,7 +64,8 @@ def test_generate_template_cmd_factory_when_using_defaults_returns_expected_comm
assert template.name == "generate-template"
assert len(template.params) == 2
assert template.params[0].name == "cmd"
assert template.params[0].type.choices == ["add", "remove"]
assert "add" in template.params[0].type.choices
assert "remove" in template.params[0].type.choices
assert template.params[1].name == "path"


Expand Down
Loading