Skip to content
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

chore: release v0.16.0 #516

Closed
wants to merge 1 commit into from
Closed
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
55 changes: 55 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,61 @@

All notable changes to this project will be documented in this file.

## [0.16.0](https://github.com/bosun-ai/swiftide/compare/v0.15.0...v0.16.0) - 2025-01-02

### New features

- [52e341e](https://github.com/bosun-ai/swiftide/commit/52e341ee9777d04f9fb07054980ba087c55c033e) *(lancedb)* Public method for opening table (#514)

- [235780b](https://github.com/bosun-ai/swiftide/commit/235780b941a0805b69541f0f4c55c3404091baa8) *(query)* Documents as first class citizens (#504)

````text
For simple RAG, just adding the content of a retrieved document might be
enough. However, in more complex use cases, you might want to add
metadata as well, as is or for conditional formatting.

For instance, when dealing with large amounts of chunked code, providing
the path goes a long way. If generated metadata is good enough, could be
useful as well.

With this retrieved Documents are treated as first class citizens,
including any metadata as well. Additionally, this also paves the way
for multi retrieval (and multi modal).
````

- [584695e](https://github.com/bosun-ai/swiftide/commit/584695e4841a3c9341e521b81e9f254270b3416e) *(query)* Add custom SQL query generation for pgvector search (#478)

````text
Adds support for custom retrieval queries with the sqlx query builder for PGVector. Puts down the fundamentals for custom query building for any retriever.

---------
````

- [b55bf0b](https://github.com/bosun-ai/swiftide/commit/b55bf0b318042459a6983cf725078c4da662618b) *(redb)* Public database and table definition (#510)

- [176378f](https://github.com/bosun-ai/swiftide/commit/176378f846ddecc3ddba74f6b423338b793f29b4) Implement traits for all Arc dynamic dispatch (#513)

````text
If you use i.e. a `Persist` or a `NodeCache` outside swiftide as well, and you already have it Arc'ed, now it just works.
````

- [dc9881e](https://github.com/bosun-ai/swiftide/commit/dc9881e48da7fb5dc744ef33b1c356b4152d00d3) Allow opt out of pipeline debug truncation

### Bug fixes

- [2831101](https://github.com/bosun-ai/swiftide/commit/2831101daa2928b5507116d9eb907d98fb77bf50) *(lancedb)* Metadata should be nullable in lancedb (#515)

- [c35df55](https://github.com/bosun-ai/swiftide/commit/c35df5525d4d88cfb9ada89a060e1ab512b471af) *(macros)* Explicit box dyn cast fixing Rust Analyzer troubles (#523)

### Miscellaneous

- [1bbbb0e](https://github.com/bosun-ai/swiftide/commit/1bbbb0e548cafa527c34856bd9ac6f76aca2ab5f) Clippy


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.15.0...0.16.0



## [0.15.0](https://github.com/bosun-ai/swiftide/compare/v0.14.4...v0.15.0) - 2024-12-23

### New features
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = ["swiftide", "swiftide-*"]
resolver = "2"

[workspace.package]
version = "0.15.0"
version = "0.16.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
8 changes: 4 additions & 4 deletions swiftide-agents/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-macros = { path = "../swiftide-macros", version = "0.15" }
swiftide-core = { path = "../swiftide-core", version = "0.16" }
swiftide-macros = { path = "../swiftide-macros", version = "0.16" }
anyhow.workspace = true
async-trait.workspace = true
dyn-clone.workspace = true
Expand All @@ -27,10 +27,10 @@ serde.workspace = true
serde_json.workspace = true

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.15", features = [
swiftide-core = { path = "../swiftide-core", version = "0.16", features = [
"test-utils",
] }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.15", features = [
swiftide-integrations = { path = "../swiftide-integrations", version = "0.16", features = [
"openai",
] }
mockall.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions swiftide-indexing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-macros = { path = "../swiftide-macros", version = "0.15" }
swiftide-core = { path = "../swiftide-core", version = "0.16" }
swiftide-macros = { path = "../swiftide-macros", version = "0.16" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions swiftide-integrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-macros = { path = "../swiftide-macros", version = "0.15" }
swiftide-core = { path = "../swiftide-core", version = "0.16" }
swiftide-macros = { path = "../swiftide-macros", version = "0.16" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions swiftide-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ rustversion = "1.0.18"
trybuild = "1.0"
prettyplease = "0.2.25"
insta.workspace = true
swiftide-core = { path = "../swiftide-core/", version = "0.15" }
swiftide = { path = "../swiftide/", version = "0.15" }
swiftide-core = { path = "../swiftide-core/", version = "0.16" }
swiftide = { path = "../swiftide/", version = "0.16" }

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion swiftide-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde = { workspace = true }
serde_json = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.15.0" }
swiftide-core = { path = "../swiftide-core", version = "0.16.0" }

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }
Expand Down
10 changes: 5 additions & 5 deletions swiftide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ homepage.workspace = true
document-features = { workspace = true }

# Local dependencies
swiftide-core = { path = "../swiftide-core", version = "0.15" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.15" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.15" }
swiftide-query = { path = "../swiftide-query", version = "0.15" }
swiftide-agents = { path = "../swiftide-agents", version = "0.15", optional = true }
swiftide-core = { path = "../swiftide-core", version = "0.16" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.16" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.16" }
swiftide-query = { path = "../swiftide-query", version = "0.16" }
swiftide-agents = { path = "../swiftide-agents", version = "0.16", optional = true }

# Re-exports for macros and ease of use
anyhow.workspace = true
Expand Down
Loading