Skip to content

Commit f921660

Browse files
committed
1 parent dde4be1 commit f921660

9 files changed

Lines changed: 186 additions & 49 deletions

File tree

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.9.0
1+
7.11.0

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [2.6.0] - 2025-01-25
4+
5+
- Updated to OpenAPI Generator 7.11.0
6+
37
## [2.5.1] - 2024-11-13
48

59
- Dependency fixes

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# urlr@2.5.1
1+
# urlr@2.6.0
22

33
![PyPI - Version](https://img.shields.io/pypi/v/urlr) ![PyPI - Downloads](https://img.shields.io/pypi/dm/urlr) ![PyPI - License](https://img.shields.io/pypi/l/urlr)
44

55
This SDK is automatically generated with the [OpenAPI Generator](https://openapi-generator.tech) project.
66

77
- API version: 1.4
8-
- Package version: 2.5.1
8+
- Package version: 2.6.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
For more information, please visit [https://urlr.me/en](https://urlr.me/en)
@@ -14,7 +14,7 @@ For more information, please visit [https://urlr.me/en](https://urlr.me/en)
1414

1515
## Requirements
1616

17-
Python 3.7+
17+
Python 3.8+
1818

1919
### pip install
2020

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "urlr"
3-
version = "2.5.1"
3+
version = "2.6.0"
44
description = "Python client for URLR"
55
authors = ["URLR <contact@urlr.me>"]
66
license = "MIT"
@@ -12,7 +12,7 @@ include = ["urlr/py.typed"]
1212
[tool.poetry.dependencies]
1313
python = "^3.8"
1414

15-
urllib3 = ">= 1.25.3 < 3.0.0"
15+
urllib3 = ">= 1.25.3, < 3.0.0"
1616
python-dateutil = ">= 2.8.2"
1717
pydantic = ">= 2"
1818
typing-extensions = ">= 4.7.1"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "urlr"
25-
VERSION = "2.5.1"
25+
VERSION = "2.6.0"
2626
PYTHON_REQUIRES = ">= 3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",
@@ -48,4 +48,4 @@
4848
API powering the features of URLR.&lt;br&gt;&lt;br&gt;Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.&lt;br&gt;&lt;br&gt;Key API principles:&lt;br&gt; &lt;ul&gt;&lt;li&gt;All dates follow **ISO-8601** format&lt;/li&gt;&lt;li&gt;Most errors follow **RFC 9457** standard&lt;/li&gt;&lt;li&gt;All responses are delivered in English&lt;/li&gt;&lt;/ul&gt;
4949
""", # noqa: E501
5050
package_data={"urlr": ["py.typed"]},
51-
)
51+
)

urlr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "2.5.1"
18+
__version__ = "2.6.0"
1919

2020
# import apis into sdk package
2121
from urlr.api.access_tokens_api import AccessTokensApi

urlr/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'OpenAPI-Generator/2.5.1/python'
94+
self.user_agent = 'OpenAPI-Generator/2.6.0/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):
@@ -518,7 +518,7 @@ def parameters_to_url_query(self, params, collection_formats):
518518
if k in collection_formats:
519519
collection_format = collection_formats[k]
520520
if collection_format == 'multi':
521-
new_params.extend((k, str(value)) for value in v)
521+
new_params.extend((k, quote(str(value))) for value in v)
522522
else:
523523
if collection_format == 'ssv':
524524
delimiter = ' '

0 commit comments

Comments
 (0)