Skip to content
Open
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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "0.4.0",
"crates/vein-adapter": "0.3.0",
"crates/vein-admin": "0.3.0"
".": "0.5.0",
"crates/vein-adapter": "0.4.0",
"crates/vein-admin": "0.4.0"
}
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.5.0](https://github.com/contriboss/vein/compare/v0.4.0...v0.5.0) (2026-03-26)


### Features

* add npm support ([#11](https://github.com/contriboss/vein/issues/11)) ([9ac5967](https://github.com/contriboss/vein/commit/9ac5967088852e3d7d0a2c881165663d8ea791ed))
* added docker compose file ([#9](https://github.com/contriboss/vein/issues/9)) ([04773d6](https://github.com/contriboss/vein/commit/04773d601407296e067007a1683f2d11ed2223ff))
* **admin:** add Datastar foundation ([7f9910e](https://github.com/contriboss/vein/commit/7f9910efa075fd05386991997e5d6e910a66a682))
* **admin:** add Datastar refresh to dashboard stats ([e4940ae](https://github.com/contriboss/vein/commit/e4940aef9f373b84c4088c1e045d682e6f9a8b00))
* **admin:** add Datastar search to catalog ([de69c7d](https://github.com/contriboss/vein/commit/de69c7d6cbc151d8e0bafc4d075b2a0ed7ef072e))
* **admin:** migrate dashboard to Tera templates ([9650d85](https://github.com/contriboss/vein/commit/9650d857a919525dcbe709648e9fd21ee276efe4))
* drop loco-rs and use rama&datastar ([#8](https://github.com/contriboss/vein/issues/8)) ([6d74999](https://github.com/contriboss/vein/commit/6d74999eb39c7e586f7bf49715cf9b4fe4f8f387))
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
* introduce crates proxing ([#10](https://github.com/contriboss/vein/issues/10)) ([28668a5](https://github.com/contriboss/vein/commit/28668a5c3307ad48ad78dfa2f5304bea625cb5df))
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))
* **validate:** add binary architecture validation with goblin for platform mismatch detection ([e39eef6](https://github.com/contriboss/vein/commit/e39eef6ac5f436c3f3042ccd614984703359b8aa))


### Bug Fixes

* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
* address clippy warnings ([966671a](https://github.com/contriboss/vein/commit/966671a53dd68adbc21e7d54a2fb8f15e8a46f9b))
* address copilot review concerns ([2737931](https://github.com/contriboss/vein/commit/2737931ca52328508bf6802344fc7e800b1bb01c))

## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2025-12-28)


Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/vein-adapter", "crates/vein-admin"]

[package]
name = "vein"
version = "0.4.0"
version = "0.5.0"
edition = "2024"
authors = ["Abdelkader Boudih <oss@seuros.com>"]
description = "A fast, intelligent multi-ecosystem package proxy/cache"
Expand Down Expand Up @@ -75,7 +75,7 @@ chrono-machines = "0.3.1"
# Time handling
chrono = { version = "0.4.44", features = ["serde"] }

vein-adapter = { version = "0.3.0", path = "crates/vein-adapter", default-features = false }
vein-adapter = { version = "0.5.0", path = "crates/vein-adapter", default-features = false }

[dev-dependencies]
tokio-test = "0.4.5"
Expand Down
19 changes: 19 additions & 0 deletions crates/vein-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-03-26)


### Features

* add npm support ([#11](https://github.com/contriboss/vein/issues/11)) ([9ac5967](https://github.com/contriboss/vein/commit/9ac5967088852e3d7d0a2c881165663d8ea791ed))
* added docker compose file ([#9](https://github.com/contriboss/vein/issues/9)) ([04773d6](https://github.com/contriboss/vein/commit/04773d601407296e067007a1683f2d11ed2223ff))
* drop loco-rs and use rama&datastar ([#8](https://github.com/contriboss/vein/issues/8)) ([6d74999](https://github.com/contriboss/vein/commit/6d74999eb39c7e586f7bf49715cf9b4fe4f8f387))
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
* introduce crates proxing ([#10](https://github.com/contriboss/vein/issues/10)) ([28668a5](https://github.com/contriboss/vein/commit/28668a5c3307ad48ad78dfa2f5304bea625cb5df))
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))


### Bug Fixes

* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
* update syntax to rust 2024. ([0779d2e](https://github.com/contriboss/vein/commit/0779d2e9b7563e19a7e24589383a898c4d8da185))

## [0.3.0](https://github.com/contriboss/vein/compare/v0.2.1...v0.3.0) (2025-12-28)


Expand Down
2 changes: 1 addition & 1 deletion crates/vein-adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vein-adapter"
version = "0.3.0"
version = "0.4.0"
edition = "2024"
license = "AGPL-3.0-only"
authors = ["Abdelkader Boudih <oss@seuros.com>"]
Expand Down
24 changes: 24 additions & 0 deletions crates/vein-admin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-03-26)


### Features

* added docker compose file ([#9](https://github.com/contriboss/vein/issues/9)) ([04773d6](https://github.com/contriboss/vein/commit/04773d601407296e067007a1683f2d11ed2223ff))
* **admin:** add Datastar foundation ([7f9910e](https://github.com/contriboss/vein/commit/7f9910efa075fd05386991997e5d6e910a66a682))
* **admin:** add Datastar refresh to dashboard stats ([e4940ae](https://github.com/contriboss/vein/commit/e4940aef9f373b84c4088c1e045d682e6f9a8b00))
* **admin:** add Datastar search to catalog ([de69c7d](https://github.com/contriboss/vein/commit/de69c7d6cbc151d8e0bafc4d075b2a0ed7ef072e))
* **admin:** migrate dashboard to Tera templates ([9650d85](https://github.com/contriboss/vein/commit/9650d857a919525dcbe709648e9fd21ee276efe4))
* drop loco-rs and use rama&datastar ([#8](https://github.com/contriboss/vein/issues/8)) ([6d74999](https://github.com/contriboss/vein/commit/6d74999eb39c7e586f7bf49715cf9b4fe4f8f387))
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
* introduce crates proxing ([#10](https://github.com/contriboss/vein/issues/10)) ([28668a5](https://github.com/contriboss/vein/commit/28668a5c3307ad48ad78dfa2f5304bea625cb5df))
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))
* **validate:** add binary architecture validation with goblin for platform mismatch detection ([e39eef6](https://github.com/contriboss/vein/commit/e39eef6ac5f436c3f3042ccd614984703359b8aa))


### Bug Fixes

* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
* address clippy warnings ([966671a](https://github.com/contriboss/vein/commit/966671a53dd68adbc21e7d54a2fb8f15e8a46f9b))
* update syntax to rust 2024. ([0779d2e](https://github.com/contriboss/vein/commit/0779d2e9b7563e19a7e24589383a898c4d8da185))

## [0.3.0](https://github.com/contriboss/vein/compare/v0.2.1...v0.3.0) (2025-12-28)


Expand Down
6 changes: 3 additions & 3 deletions crates/vein-admin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vein-admin"
version = "0.3.0"
version = "0.4.0"
edition = "2024"
license = "AGPL-3.0-only"
authors = ["Abdelkader Boudih <oss@seuros.com>"]
Expand All @@ -27,8 +27,8 @@ serde_json = "1.0.149"
serde_yaml = "0.9"
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros", "signal"] }
tracing = "0.1.41"
vein = { version = "0.4.0", path = "../.." }
vein-adapter = { version = "0.3.0", path = "../vein-adapter" }
vein = { version = "0.5.0", path = "../.." }
vein-adapter = { version = "0.5.0", path = "../vein-adapter" }

[dev-dependencies]
http-body-util = "0.1"