Skip to content

release: 3.0.0 #410

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

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
dc912e6
chore: sync repo
stainless-app[bot] May 2, 2025
bd65b0f
chore: update SDK settings
stainless-app[bot] May 2, 2025
323499b
chore: update SDK settings
stainless-app[bot] May 2, 2025
34078c6
codegen metadata
stainless-app[bot] May 7, 2025
0c64f6a
chore(internal): avoid errors for isinstance checks on proxies
stainless-app[bot] May 9, 2025
edf7871
fix(package): support direct resource imports
stainless-app[bot] May 10, 2025
92331b9
chore(internal): codegen related update
stainless-app[bot] May 13, 2025
5953bf4
chore(ci): upload sdks to package manager
stainless-app[bot] May 15, 2025
9b2771b
chore(ci): fix installation instructions
stainless-app[bot] May 16, 2025
836d4ea
chore(docs): grammar improvements
stainless-app[bot] May 22, 2025
187ecc9
chore(docs): remove reference to rye shell
stainless-app[bot] Jun 3, 2025
4d47f85
feat(client): add follow_redirects request option
stainless-app[bot] Jun 3, 2025
0b3bd99
chore(tests): run tests in parallel
stainless-app[bot] Jun 13, 2025
f4810f4
fix(client): correctly parse binary response | stream
stainless-app[bot] Jun 13, 2025
8aabce1
chore(tests): add tests for httpx client instantiation & proxies
stainless-app[bot] Jun 17, 2025
6e97402
chore(internal): update conftest.py
stainless-app[bot] Jun 17, 2025
863412b
chore(ci): enable for pull requests
stainless-app[bot] Jun 17, 2025
6339cd8
chore(readme): update badges
stainless-app[bot] Jun 18, 2025
38b773a
fix(tests): fix: tests which call HTTP endpoints directly with the ex…
stainless-app[bot] Jun 18, 2025
e7d0d02
docs(client): fix httpx.Timeout documentation reference
stainless-app[bot] Jun 19, 2025
738eb2c
feat(client): add support for aiohttp
stainless-app[bot] Jun 21, 2025
7fc905e
chore(tests): skip some failing tests on the latest python versions
stainless-app[bot] Jun 24, 2025
2b98307
fix(ci): release-doctor — report correct token name
stainless-app[bot] Jun 27, 2025
2b4c478
chore(ci): only run for pushes and fork pull requests
stainless-app[bot] Jun 28, 2025
1518838
fix(ci): correct conditional
stainless-app[bot] Jun 30, 2025
50c1dc3
chore(ci): change upload type
stainless-app[bot] Jul 2, 2025
23164ec
release: 3.0.0
stainless-app[bot] Jul 2, 2025
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
9 changes: 9 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ARG VARIANT="3.9"
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}

USER vscode

RUN curl -sSf https://rye.astral.sh/get | RYE_VERSION="0.44.0" RYE_INSTALL_OPTION="--yes" bash
ENV PATH=/home/vscode/.rye/shims:$PATH

RUN echo "[[ -d .venv ]] && source .venv/bin/activate || export PATH=\$PATH" >> /home/vscode/.bashrc
43 changes: 43 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Debian",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},

"postStartCommand": "rye sync --all-features",

"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": ".venv/bin/python",
"python.defaultInterpreterPath": ".venv/bin/python",
"python.typeChecking": "basic",
"terminal.integrated.env.linux": {
"PATH": "/home/vscode/.rye/shims:${env:PATH}"
}
}
}
},
"features": {
"ghcr.io/devcontainers/features/node:1": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
38 changes: 0 additions & 38 deletions .dockerignore

This file was deleted.

24 changes: 0 additions & 24 deletions .editorconfig

This file was deleted.

17 changes: 0 additions & 17 deletions .github/.stale.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/api_bug_report.md

This file was deleted.

42 changes: 0 additions & 42 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/question.md

This file was deleted.

28 changes: 0 additions & 28 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

35 changes: 0 additions & 35 deletions .github/dependabot.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/release-drafter.yml

This file was deleted.

Loading
Loading