Skip to content

Commit 18d5fa3

Browse files
Merge pull request #336 from OneBusAway/release-please--branches--main--changes--next
release: 1.19.5
2 parents 8e1da21 + 5450f55 commit 18d5fa3

5 files changed

Lines changed: 25 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.19.4"
2+
".": "1.19.5"
33
}

CHANGELOG.md

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

3+
## 1.19.5 (2026-02-26)
4+
5+
Full Changelog: [v1.19.4...v1.19.5](https://github.com/OneBusAway/python-sdk/compare/v1.19.4...v1.19.5)
6+
7+
### Chores
8+
9+
* **internal:** make `test_proxy_environment_variables` more resilient to env ([e583264](https://github.com/OneBusAway/python-sdk/commit/e583264585805a1f82d86dc004c34c5eb1bb3bac))
10+
311
## 1.19.4 (2026-02-24)
412

513
Full Changelog: [v1.19.3...v1.19.4](https://github.com/OneBusAway/python-sdk/compare/v1.19.3...v1.19.4)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "onebusaway"
3-
version = "1.19.4"
3+
version = "1.19.5"
44
description = "The official Python library for the onebusaway-sdk API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/onebusaway/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "onebusaway"
4-
__version__ = "1.19.4" # x-release-please-version
4+
__version__ = "1.19.5" # x-release-please-version

tests/test_client.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -953,8 +953,14 @@ def retry_handler(_request: httpx.Request) -> httpx.Response:
953953
def test_proxy_environment_variables(self, monkeypatch: pytest.MonkeyPatch) -> None:
954954
# Test that the proxy environment variables are set correctly
955955
monkeypatch.setenv("HTTPS_PROXY", "https://example.org")
956-
# Delete in case our environment has this set
956+
# Delete in case our environment has any proxy env vars set
957957
monkeypatch.delenv("HTTP_PROXY", raising=False)
958+
monkeypatch.delenv("ALL_PROXY", raising=False)
959+
monkeypatch.delenv("NO_PROXY", raising=False)
960+
monkeypatch.delenv("http_proxy", raising=False)
961+
monkeypatch.delenv("https_proxy", raising=False)
962+
monkeypatch.delenv("all_proxy", raising=False)
963+
monkeypatch.delenv("no_proxy", raising=False)
958964

959965
client = DefaultHttpxClient()
960966

@@ -1858,8 +1864,14 @@ async def test_get_platform(self) -> None:
18581864
async def test_proxy_environment_variables(self, monkeypatch: pytest.MonkeyPatch) -> None:
18591865
# Test that the proxy environment variables are set correctly
18601866
monkeypatch.setenv("HTTPS_PROXY", "https://example.org")
1861-
# Delete in case our environment has this set
1867+
# Delete in case our environment has any proxy env vars set
18621868
monkeypatch.delenv("HTTP_PROXY", raising=False)
1869+
monkeypatch.delenv("ALL_PROXY", raising=False)
1870+
monkeypatch.delenv("NO_PROXY", raising=False)
1871+
monkeypatch.delenv("http_proxy", raising=False)
1872+
monkeypatch.delenv("https_proxy", raising=False)
1873+
monkeypatch.delenv("all_proxy", raising=False)
1874+
monkeypatch.delenv("no_proxy", raising=False)
18631875

18641876
client = DefaultAsyncHttpxClient()
18651877

0 commit comments

Comments
 (0)