Skip to content

chore: regenerate client from updated OpenAPI spec#16

Merged
zfarrell merged 1 commit intomainfrom
openapi-update-23079687876
Mar 14, 2026
Merged

chore: regenerate client from updated OpenAPI spec#16
zfarrell merged 1 commit intomainfrom
openapi-update-23079687876

Conversation

@hotdata-automation
Copy link
Contributor

Auto-generated from updated HotData OpenAPI spec.

@github-actions
Copy link

Automated review unavailable (Claude step failed). Please review manually.

@zfarrell zfarrell closed this Mar 14, 2026
@zfarrell zfarrell reopened this Mar 14, 2026
[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls"]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reqwest feature flag is wrong. In reqwest 0.13, the rustls feature is named rustls-tls, not rustls. Since default-features = false is set on the reqwest dependency, anyone who enables this crate's rustls feature will silently get no TLS backend at all, causing all HTTPS connections to fail at runtime.

Suggested change
rustls = ["reqwest/rustls"]
rustls = ["reqwest/rustls-tls"]

claude[bot]
claude bot previously requested changes Mar 14, 2026
Copy link

@claude claude bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review

Issues

Cargo.toml, line 20rustls = ["reqwest/rustls"] references a non-existent reqwest feature. reqwest 0.13's rustls feature is named rustls-tls. Because reqwest is declared with default-features = false, enabling this crate's rustls feature activates no TLS backend, causing all HTTPS connections to fail silently at runtime.

Action Required

Change line 20 in Cargo.toml to:

rustls = ["reqwest/rustls-tls"]

@zfarrell zfarrell dismissed claude[bot]’s stale review March 14, 2026 04:02

this is coming from the open api generator template

@zfarrell zfarrell merged commit 8c9cbc0 into main Mar 14, 2026
2 checks passed
@zfarrell zfarrell deleted the openapi-update-23079687876 branch March 14, 2026 04:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant