-
Notifications
You must be signed in to change notification settings - Fork 2
v1.8.1 prep #22
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
Merged
Merged
v1.8.1 prep #22
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
9292470
Add FHIR resolver example script
e618f8d
Implement FHIR type interoperability and client helpers
ba0cb9c
Refactor examples to remove hardcoded API keys
7f2014f
Merge branch 'main' into develop
alex-omophub 7004055
Add aiohappyeyeballs and update aiohttp dependencies in uv.lock (#17)
alex-omophub 968070c
v1.71. prep
8b7363a
Merge branch 'main' into develop
alex-omophub c80ff44
Update search examples to reflect new API response structures
ee08fca
Refactor search examples to streamline API response handling
a1996f1
Enhance FHIR resolution capabilities and response structure (#20)
alex-omophub 7e27854
Update CHANGELOG for version 1.8.0 and add new FHIR resolution examples
b5a0c0f
Enhance README with detailed FHIR resolution examples
a887c47
Merge branch 'main' into develop
alex-omophub 2fe2cae
Update GitHub Actions workflow to use latest action versions
eae1f92
Update CI workflow to use actions/setup-python@v6 for improved compat…
d5cb814
Update CHANGELOG and refactor search endpoints to use new canonical path
cc986ea
Refactor AsyncSearch to simplify API request handling
3512066
Merge branch 'main' into develop
alex-omophub 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
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 |
|---|---|---|
|
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. | |
| The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Missing link definitions for Prompt for AI agents |
||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## [1.8.1] - 2026-06-01 | ||
|
|
||
| ### Changed | ||
|
|
||
| - `Search.semantic()`, `Search.semantic_iter()`, `AsyncSearch.semantic()`, and | ||
| `AsyncSearch.semantic_iter()` now call the canonical path | ||
| `GET /v1/search/semantic` instead of `GET /v1/concepts/semantic-search`. The | ||
| legacy path remains a permanent server-side alias (emits `Deprecation: true` | ||
| + `Link: …rel="successor-version"` headers), so older installations of this | ||
| SDK continue to work - no breaking change for callers. | ||
|
|
||
| ## [1.8.0] - 2026-05-25 | ||
|
|
||
| ### Added | ||
|
|
||
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: The
[Unreleased]link still points tov1.7.1...HEAD. Update it tov1.8.1...HEADnow that v1.8.1 is the latest release, consistent with the pattern used by all prior version links.Prompt for AI agents