Skip to content
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
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- next
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'

jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/openlayer-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0-alpha.56"
".": "0.2.0-alpha.57"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 16
openapi_spec_hash: 7dd38774b534c352620bca63efa85b19
config_hash: 0383360784fc87d799bad2be203142b5
configured_endpoints: 17
openapi_spec_hash: 8827ead72aa0c635ccafac5e008fe247
config_hash: 087e6b8013c398a6d24031d24594fdec
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 0.2.0-alpha.57 (2025-04-24)

Full Changelog: [v0.2.0-alpha.56...v0.2.0-alpha.57](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.56...v0.2.0-alpha.57)

### Features

* **api:** api update ([660a2ce](https://github.com/openlayer-ai/openlayer-python/commit/660a2ce213ba8aefb4fb4f02f74532fa0baba346))
* **api:** expose test retrieval endpoint ([9762024](https://github.com/openlayer-ai/openlayer-python/commit/9762024ea999dd0fdb7d3c05636422125b1860d7))


### Bug Fixes

* **pydantic v1:** more robust ModelField.annotation check ([1624ca6](https://github.com/openlayer-ai/openlayer-python/commit/1624ca6da5760b8c849749be1fb150071b14e9ae))


### Chores

* broadly detect json family of content-type headers ([39d78ac](https://github.com/openlayer-ai/openlayer-python/commit/39d78ac984c9f8c726fa8e7c8debec418476cebc))
* **ci:** add timeout thresholds for CI jobs ([1093391](https://github.com/openlayer-ai/openlayer-python/commit/10933919d99b4e4045ce37e95ffe01eae17ea5c7))
* **ci:** only use depot for staging repos ([bafdcd8](https://github.com/openlayer-ai/openlayer-python/commit/bafdcd8cd926966f0347f0d8ad6283897f21dac3))
* **internal:** codegen related update ([8c10e35](https://github.com/openlayer-ai/openlayer-python/commit/8c10e3532cc04d0dff74e7047a580acc3544c0ac))
* **internal:** fix list file params ([312f532](https://github.com/openlayer-ai/openlayer-python/commit/312f5325acca7f11912abfd514e4d5ada640452c))
* **internal:** import reformatting ([4f944c7](https://github.com/openlayer-ai/openlayer-python/commit/4f944c71bba568da8c25468cc3f729669e5562f9))
* **internal:** refactor retries to not use recursion ([5a2c154](https://github.com/openlayer-ai/openlayer-python/commit/5a2c1542c0b2ca22eaa6a4c843de04234f677965))

## 0.2.0-alpha.56 (2025-04-21)

Full Changelog: [v0.2.0-alpha.55...v0.2.0-alpha.56](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.55...v0.2.0-alpha.56)
Expand Down
3 changes: 2 additions & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,13 @@ Methods:
Types:

```python
from openlayer.types.projects import TestCreateResponse
from openlayer.types.projects import TestCreateResponse, TestListResponse
```

Methods:

- <code title="post /projects/{projectId}/tests">client.projects.tests.<a href="./src/openlayer/resources/projects/tests.py">create</a>(project_id, \*\*<a href="src/openlayer/types/projects/test_create_params.py">params</a>) -> <a href="./src/openlayer/types/projects/test_create_response.py">TestCreateResponse</a></code>
- <code title="get /projects/{projectId}/tests">client.projects.tests.<a href="./src/openlayer/resources/projects/tests.py">list</a>(project_id, \*\*<a href="src/openlayer/types/projects/test_list_params.py">params</a>) -> <a href="./src/openlayer/types/projects/test_list_response.py">TestListResponse</a></code>

# Commits

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "openlayer"
version = "0.2.0-alpha.56"
version = "0.2.0-alpha.57"
description = "The official Python library for the openlayer API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
Loading