-
Notifications
You must be signed in to change notification settings - Fork 11
release: 2.7.0 #245
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
stainless-app
wants to merge
13
commits into
main
Choose a base branch
from
release-please--branches--main--changes--next
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
release: 2.7.0 #245
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
53ce6dd
fix(internal): resolve build failures
stainless-app[bot] 6db1360
feat(stlc): configurable CI runner and private-production-repo suppor…
stainless-app[bot] 724b523
scripts: bump turbopuffer-apigen image to 50f6977f4020491663b87ecfc26…
mattcuento 31714b0
Merge pull request #101 from stainless-sdks/bump-apigen-image-compute…
mattcuento 8f30d04
feat: spec: expose computed attributes
stainless-app[bot] 4499367
feat: spec: hide HighlightConfig.rank_fragments_by's RankBy ref from …
stainless-app[bot] bfbe79f
feat: spec: make compute_attributes value x-stainless-any
stainless-app[bot] df57c87
feat: spec: rename HighlightConfig -> HighlightConfigParams
stainless-app[bot] 98a9d11
chore: regenerate custom types for compute attributes (#246)
mattcuento 52cf9d6
codegen metadata
stainless-app[bot] 002cb4c
spec: using typed version of `ComputeAttributes` for `compute_attribu…
mattcuento 5f9bada
tests: accept new rank_by error message format (#248)
pushrax 21510ad
release: 2.7.0
stainless-app[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "2.6.0" | ||
| ".": "2.7.0" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| configured_endpoints: 14 | ||
| openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/turbopuffer-benesch/turbopuffer-45f4429a37dcc469269006f05ea38ee3973087f22456b1cdb60b682902997372.yml | ||
| openapi_spec_hash: a606206d2ac6886fe31c3392a1f590ea | ||
| config_hash: d3fc3b93270f7ee8ae68224dafcfeb6d | ||
| openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/turbopuffer-benesch/turbopuffer-c0051833b669a15d2f206974c559f74189cad6df3d636ae7eb620415d7cf6eb9.yml | ||
| openapi_spec_hash: 8459bc996ccbfcd259819e2629b7ab84 | ||
| config_hash: 7324a6da70bb03cd6ca0e8bd3ee13230 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
|
||
| __title__ = "turbopuffer" | ||
| __version__ = "2.6.0" # x-release-please-version | ||
| __version__ = "2.7.0" # x-release-please-version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| from typing_extensions import TypedDict | ||
|
|
||
| from .highlight_fragment_by import HighlightFragmentBy | ||
| from .highlight_offset_units import HighlightOffsetUnits | ||
|
|
||
| __all__ = ["HighlightConfigParams"] | ||
|
|
||
|
|
||
| class HighlightConfigParams(TypedDict, total=False): | ||
| """Additional (optional) parameters for the Highlight compute expression.""" | ||
|
|
||
| fragment_by: HighlightFragmentBy | ||
| """How to split a text attribute into fragments for highlighting.""" | ||
|
|
||
| fragment_limit: int | ||
| """The maximum number of fragments to return. Defaults to `3`.""" | ||
|
|
||
| include_offsets: HighlightOffsetUnits | ||
| """The units to report highlighted fragment offsets in.""" | ||
|
|
||
| rank_fragments_by: object | ||
| """ | ||
| How to rank candidate fragments within the attribute before selecting the top | ||
| `fragment_limit`. Defaults to the query's `rank_by`. | ||
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
|
||
| from typing_extensions import Literal, TypeAlias | ||
|
|
||
| __all__ = ["HighlightFragmentBy"] | ||
|
|
||
| HighlightFragmentBy: TypeAlias = Literal["none", "sentence", "paragraph", "word"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
|
||
| from typing_extensions import Literal, TypeAlias | ||
|
|
||
| __all__ = ["HighlightOffsetUnits"] | ||
|
|
||
| HighlightOffsetUnits: TypeAlias = Literal["utf-8", "utf-16", "codepoints"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.