Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 1 addition & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion openapi_python_client/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, "
Expand Down
6 changes: 3 additions & 3 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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):
Expand All @@ -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"
)


Expand Down