Skip to content

chore(deps): upgrade openapi-generator to v7.10.0 #4131

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
Nov 19, 2024
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
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ packages = find:
install_requires =
urllib3>=1.25.3,<2.0
requests>=2.32.3,3.0
aiohttp>=3.9.2,<4.0
aiohttp>=3.10.11,<4.0
python-dateutil>=2.8.2,<3.0
pydantic>=2,3.0
typing-extensions>=4.7.1,<5.0
Expand Down
2 changes: 1 addition & 1 deletion generators/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

dependencies {
compileOnly 'org.openapitools:openapi-generator:7.8.0'
compileOnly 'org.openapitools:openapi-generator:7.10.0'
}

tasks.withType(JavaCompile) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/pre-gen/generateOpenapitools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export async function generateOpenapitools(
JSON.stringify(
{
'generator-cli': {
version: '7.8.0',
version: '7.10.0',
generators,
},
},
Expand Down
1 change: 1 addition & 0 deletions specs/common/schemas/HighlightResult.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ highlightResultArray:
highlightResultMap:
type: object
description: Surround words that match the query with HTML tags for highlighting.
x-is-free-form: false # openapi-generator thinks this is a free-form object since https://github.com/OpenAPITools/openapi-generator/pull/19605
additionalProperties:
x-additionalPropertiesName: attribute
$ref: '#/highlightResult'
Expand Down
1 change: 1 addition & 0 deletions specs/common/schemas/SnippetResult.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ snippetResultOption:
snippetResultMap:
type: object
description: Snippets that show the context around a matching search query.
x-is-free-form: false # openapi-generator thinks this is a free-form object since https://github.com/OpenAPITools/openapi-generator/pull/19605
additionalProperties:
x-additionalPropertiesName: attribute
$ref: '#/snippetResult'
Expand Down
2 changes: 1 addition & 1 deletion templates/python/pyproject.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
[tool.poetry.dependencies]
python = ">= 3.8.1"
urllib3 = ">= 1.25.3"
aiohttp = ">= 3.9.2"
aiohttp = ">= 3.10.11"
requests = ">=2.32.3"
python-dateutil = ">= 2.8.2"
async-timeout = ">= 4.0.3"
Expand Down
Loading