From e639538cd0062f391b12c1f05e9891b00a03ad5e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 19:27:49 +0000 Subject: [PATCH 1/4] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 685cb53..4b8b2b2 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 21 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-528ff635d1379db564687f70b8b62bdf3ea0b5187dbb41522f6dec8c47672d24.yml -openapi_spec_hash: 60c8d1c884586e0bde43416fe7cc4046 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-efb1a34b52352b146229b4c292fcf16e6244e735c9e4fff61ce9e5cf61f57dd0.yml +openapi_spec_hash: cde24a44baf571eaea3f15d5e5e077bd config_hash: 21703d42103a7b9c01f9331e6864f8dc From b367cf010c6df51619abd3ff1504db6169d631aa Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 12:07:17 +0000 Subject: [PATCH 2/4] chore(internal): make `test_proxy_environment_variables` more resilient to env --- tests/test_client.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/tests/test_client.py b/tests/test_client.py index 99a0046..7de819e 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -951,8 +951,14 @@ def retry_handler(_request: httpx.Request) -> httpx.Response: def test_proxy_environment_variables(self, monkeypatch: pytest.MonkeyPatch) -> None: # Test that the proxy environment variables are set correctly monkeypatch.setenv("HTTPS_PROXY", "https://example.org") - # Delete in case our environment has this set + # Delete in case our environment has any proxy env vars set monkeypatch.delenv("HTTP_PROXY", raising=False) + monkeypatch.delenv("ALL_PROXY", raising=False) + monkeypatch.delenv("NO_PROXY", raising=False) + monkeypatch.delenv("http_proxy", raising=False) + monkeypatch.delenv("https_proxy", raising=False) + monkeypatch.delenv("all_proxy", raising=False) + monkeypatch.delenv("no_proxy", raising=False) client = DefaultHttpxClient() @@ -1863,8 +1869,14 @@ async def test_get_platform(self) -> None: async def test_proxy_environment_variables(self, monkeypatch: pytest.MonkeyPatch) -> None: # Test that the proxy environment variables are set correctly monkeypatch.setenv("HTTPS_PROXY", "https://example.org") - # Delete in case our environment has this set + # Delete in case our environment has any proxy env vars set monkeypatch.delenv("HTTP_PROXY", raising=False) + monkeypatch.delenv("ALL_PROXY", raising=False) + monkeypatch.delenv("NO_PROXY", raising=False) + monkeypatch.delenv("http_proxy", raising=False) + monkeypatch.delenv("https_proxy", raising=False) + monkeypatch.delenv("all_proxy", raising=False) + monkeypatch.delenv("no_proxy", raising=False) client = DefaultAsyncHttpxClient() From 82c7b0da97607b818b7bf0ff602c42902d249d2d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 20:28:35 +0000 Subject: [PATCH 3/4] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 4b8b2b2..136d244 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 21 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-efb1a34b52352b146229b4c292fcf16e6244e735c9e4fff61ce9e5cf61f57dd0.yml -openapi_spec_hash: cde24a44baf571eaea3f15d5e5e077bd +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-9763f8d3ad06588eb2cbf8c4423d3a5110879bd99f7863d6814102a0996a3afa.yml +openapi_spec_hash: bd9dea031643e4d3eda34c356ed3a6bd config_hash: 21703d42103a7b9c01f9331e6864f8dc From ca04aa0919c6a0fa1b1ffc9950cdd51e33085c97 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 20:28:55 +0000 Subject: [PATCH 4/4] release: 0.27.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/profound/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 59acac4..0ac3c2a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.27.0" + ".": "0.27.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a1294e..12b61e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.27.1 (2026-02-25) + +Full Changelog: [v0.27.0...v0.27.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.27.0...v0.27.1) + +### Chores + +* **internal:** make `test_proxy_environment_variables` more resilient to env ([b367cf0](https://github.com/cooper-square-technologies/profound-python-sdk/commit/b367cf010c6df51619abd3ff1504db6169d631aa)) + ## 0.27.0 (2026-02-24) Full Changelog: [v0.26.0...v0.27.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.26.0...v0.27.0) diff --git a/pyproject.toml b/pyproject.toml index 973aefe..9c4771f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "profound" -version = "0.27.0" +version = "0.27.1" description = "The official Python library for the profound API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/profound/_version.py b/src/profound/_version.py index 85d754a..69712a8 100644 --- a/src/profound/_version.py +++ b/src/profound/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "profound" -__version__ = "0.27.0" # x-release-please-version +__version__ = "0.27.1" # x-release-please-version