release: 0.1.0#2
Conversation
|
🧪 Testing To try out this version of the SDK: Expires at: Sun, 07 Jun 2026 18:31:58 GMT |
| type MemoryUploadParams struct { | ||
| // The file to ingest. | ||
| File io.Reader `json:"file,omitzero" api:"required" format:"binary"` | ||
| File string `json:"file" api:"required"` |
There was a problem hiding this comment.
Correctness: Changing File from io.Reader (with format:"binary") to string breaks actual binary file uploads — apiform.MarshalRoot will now write a plain string value into the multipart form instead of streaming binary file content, making the Upload endpoint non-functional for real files.
🤖 AI Agent Prompt for Cursor/Windsurf
📋 Copy this prompt to your AI coding assistant (Cursor, Windsurf, etc.) to get help fixing this issue
In memory.go at line 964, the `File` field in `MemoryUploadParams` was changed from `io.Reader` with `format:"binary"` tag to `string`. This breaks the `MarshalMultipart` method because `apiform.MarshalRoot` relies on the `format:"binary"` tag to correctly stream binary file content into the multipart writer. Revert this field back to `io.Reader` with the original tags: `json:"file,omitzero" api:"required" format:"binary"`. Also ensure that the `io` package import is present (or re-added if removed).
Confidence Score: 1/5 - Blocking IssuesNot safe to merge — the change to Key Findings:
Files requiring special attention
|
🐤 Canary SummaryThis is a Go SDK library release with no UI/UX components:
|
🐤 Canary Proposed TestsNo testable user journeys found for this PR. |
43a3754 to
183ab13
Compare
Confidence Score: 5/5 - Safe to MergeSafe to merge — this is a clean version bump release PR for hyperspell-go SDK v0.1.0 with no logic changes, only metadata and documentation updates. The changes are confined to Key Findings:
Files requiring special attention
|
183ab13 to
a270d0c
Compare
Confidence Score: 5/5 - Safe to MergeSafe to merge — this PR is a version bump release that increments Key Findings:
Files requiring special attention
|
a270d0c to
f7738a1
Compare
Confidence Score: 5/5 - Safe to MergeSafe to merge — this PR is a straightforward version bump coordinating the Key Findings:
Files requiring special attention
|
f7738a1 to
4771fd0
Compare
Confidence Score: 5/5 - Safe to MergeSafe to merge — this PR is a clean version bump from 0.0.2 to 0.1.0 with no logic changes, consisting entirely of version string updates in Key Findings:
Files requiring special attention
|
4771fd0 to
6331c45
Compare
Confidence Score: 5/5 - Safe to MergeSafe to merge — this PR is a clean release bump from 0.0.2 to 0.1.0 that involves only version string updates and alphabetical reordering of enum constants (placing Key Findings:
Files requiring special attention
|
6331c45 to
7f7913b
Compare
EntelligenceAI PR SummaryThis PR releases v0.1.0 of the Hyperspell Go SDK, expanding integration support and improving client robustness.
Confidence Score: 3/5 - Review RecommendedLikely safe but review recommended — this PR delivers a meaningful v0.1.0 release expanding provider support (granola, fathom, linear) and introducing a hardened default HTTP client with a 10-minute ResponseHeaderTimeout, but a pre-existing unresolved concern about the Key Findings:
Files requiring special attention
|
|
Version bump from 0.0.2 to 0.1.0 with enum reordering, a new MemoryUpdateParams field, and test/doc cleanup.
|
7f7913b to
8201b03
Compare
|
Releases Hyperspell Go SDK v0.1.0 with enum ordering fixes, a new memory field, dependency upgrades, and updated test data.
|
6547bfd to
6c148d3
Compare
6c148d3 to
fa88228
Compare
fa88228 to
897e0fe
Compare
897e0fe to
e9a8413
Compare
e9a8413 to
6c26314
Compare
6c26314 to
821266a
Compare
821266a to
bd1ca51
Compare
bd1ca51 to
c30ab5d
Compare
c30ab5d to
7c1a0f0
Compare
7c1a0f0 to
1d7935c
Compare
defaultHTTPClient performed an unchecked type assertion on http.DefaultTransport, which panicked for any caller that had wrapped the global transport (e.g. otelhttp.NewTransport for distributed tracing). When the assertion fails, fall back to the wrapped RoundTripper as-is — preserving the caller's wrapping at the cost of ResponseHeaderTimeout, which is strictly better than panicking.
1d7935c to
e0c329e
Compare
e0c329e to
bffa33b
Compare
bffa33b to
988ae20
Compare
Automated Release PR
0.1.0 (2026-05-08)
Full Changelog: v0.0.2...v0.1.0
Features
Bug Fixes
Chores
Documentation
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions