diff --git a/README.md b/README.md index 99dc20556..c5f869d52 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -![Run Checks](https://github.com/triaxtec/openapi-python-client/workflows/Run%20Checks/badge.svg) -[![codecov](https://codecov.io/gh/triaxtec/openapi-python-client/branch/main/graph/badge.svg)](https://codecov.io/gh/triaxtec/openapi-python-client) +![Run Checks](https://github.com/openapi-generators/openapi-python-client/workflows/Run%20Checks/badge.svg) +[![codecov](https://codecov.io/gh/openapi-generators/openapi-python-client/branch/main/graph/badge.svg)](https://codecov.io/gh/triaxtec/openapi-python-client) [![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/) [![Generic badge](https://img.shields.io/badge/type_checked-mypy-informational.svg)](https://mypy.readthedocs.io/en/stable/introduction.html) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) diff --git a/SECURITY.md b/SECURITY.md index fb67272f5..5bf90e574 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,7 +6,6 @@ Only the latest release is currently supported, we will not be backporting fixes ## Reporting a Vulnerability -If you've discovered a vulnerability in this project, please report it to Dylan Anthony at danthony@triaxtec.com. I will create an advisory and add you -to the discussion / credit you with discovery. +If you've discovered a vulnerability in this project, please report it to Dylan Anthony at contact@dylananthony.com. I will create an advisory, add you to the discussion, and credit you with discovery. It's better not to create an issue in the repository unless it's already actively being exploited. diff --git a/openapi_python_client/cli.py b/openapi_python_client/cli.py index 954e66fed..44a069245 100644 --- a/openapi_python_client/cli.py +++ b/openapi_python_client/cli.py @@ -82,7 +82,7 @@ def handle_errors(errors: Sequence[GeneratorError], fail_on_warning: bool = Fals _print_parser_error(err, color) gh_link = typer.style( - "https://github.com/triaxtec/openapi-python-client/issues/new/choose", fg=typer.colors.BRIGHT_BLUE + "https://github.com/openapi-generators/openapi-python-client/issues/new/choose", fg=typer.colors.BRIGHT_BLUE ) typer.secho( f"If you believe this was a mistake or this tool is missing a feature you need, " diff --git a/tests/test_cli.py b/tests/test_cli.py index 21a85588c..1a8752915 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -169,7 +169,7 @@ def test_generate_handle_errors(self, _create_new_client): "Unable to generate the client\n\n" "this is a message\n\n\n" "If you believe this was a mistake or this tool is missing a feature you need, please open an issue at " - "https://github.com/triaxtec/openapi-python-client/issues/new/choose\n" + "https://github.com/openapi-generators/openapi-python-client/issues/new/choose\n" ) def test_generate_handle_multiple_warnings(self, _create_new_client): @@ -191,7 +191,7 @@ def test_generate_handle_multiple_warnings(self, _create_new_client): "this is another message\n\n" "{'other': 'data'}\n\n" "If you believe this was a mistake or this tool is missing a feature you need, please open an issue at " - "https://github.com/triaxtec/openapi-python-client/issues/new/choose\n" + "https://github.com/openapi-generators/openapi-python-client/issues/new/choose\n" ) def test_generate_fail_on_warning(self, _create_new_client): @@ -213,7 +213,7 @@ def test_generate_fail_on_warning(self, _create_new_client): "this is another message\n\n" "{'other': 'data'}\n\n" "If you believe this was a mistake or this tool is missing a feature you need, please open an issue at " - "https://github.com/triaxtec/openapi-python-client/issues/new/choose\n" + "https://github.com/openapi-generators/openapi-python-client/issues/new/choose\n" )