diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d438429..a9a9a48 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,7 @@ { - ".": "3.2.0", - "pkg/databases/postgres": "1.0.0", - "pkg/databases/postgres-legacy": "1.0.0", - "pkg/databases/redis": "1.1.2" + ".": "4.0.0", + "pkg/databases/postgres": "1.1.0", + "pkg/databases/postgres-legacy": "1.1.0", + "pkg/databases/redis": "1.2.0", + "pkg/services/seaweedfs": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d99d659..c349e59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [4.0.0](https://github.com/Liphium/magic/compare/v3.2.0...v4.0.0) (2026-08-14) + + +### ⚠ BREAKING CHANGES + +* **runner:** Reuse containers when possible + +### Features + +* Add SeaweedFS driver to Magic ([7c69d54](https://github.com/Liphium/magic/commit/7c69d547a22608181419a84e48dced49f21463a6)) +* **examples:** Add tests and scripts to file sharing example ([4c9aafe](https://github.com/Liphium/magic/commit/4c9aafee8087dd3917569dc1fd96c2f953a6a9f1)) +* Implement base of SeaweedFS driver ([3738df5](https://github.com/Liphium/magic/commit/3738df5fbe345450cada67b2db604e2bcb0413b9)) +* Release SeaweedFS driver ([f76fd9d](https://github.com/Liphium/magic/commit/f76fd9dff2f1ac375deb504da1efb6d67c93a96e)) +* **runner:** Reuse containers when possible ([2d2cff2](https://github.com/Liphium/magic/commit/2d2cff2e6d434da98a6cc73a8f6df37ac65bdef0)) +* Upgrade to v4 + dependency upgrade ([648cba4](https://github.com/Liphium/magic/commit/648cba427910ccdac7f197fb9994587eb07a5e46)) + ## [3.2.0](https://github.com/Liphium/magic/compare/v3.1.0...v3.2.0) (2026-07-17) diff --git a/pkg/databases/postgres-legacy/CHANGELOG.md b/pkg/databases/postgres-legacy/CHANGELOG.md index c41ebd8..2082853 100644 --- a/pkg/databases/postgres-legacy/CHANGELOG.md +++ b/pkg/databases/postgres-legacy/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.1.0](https://github.com/Liphium/magic/compare/pkg/databases/postgres-legacy/v1.0.0...pkg/databases/postgres-legacy/v1.1.0) (2026-08-14) + + +### Features + +* Add SeaweedFS driver to Magic ([7c69d54](https://github.com/Liphium/magic/commit/7c69d547a22608181419a84e48dced49f21463a6)) +* **drivers:** Port database drivers to new interface ([4177797](https://github.com/Liphium/magic/commit/4177797b676c6377ec7dfb99a267d2b533bf9b4c)) +* Upgrade to v4 + dependency upgrade ([648cba4](https://github.com/Liphium/magic/commit/648cba427910ccdac7f197fb9994587eb07a5e46)) + ## 1.0.0 (2026-07-14) diff --git a/pkg/databases/postgres/CHANGELOG.md b/pkg/databases/postgres/CHANGELOG.md index e0c91dc..08b45e4 100644 --- a/pkg/databases/postgres/CHANGELOG.md +++ b/pkg/databases/postgres/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.1.0](https://github.com/Liphium/magic/compare/pkg/databases/postgres/v1.0.0...pkg/databases/postgres/v1.1.0) (2026-08-14) + + +### Features + +* Add SeaweedFS driver to Magic ([7c69d54](https://github.com/Liphium/magic/commit/7c69d547a22608181419a84e48dced49f21463a6)) +* **drivers:** Port database drivers to new interface ([4177797](https://github.com/Liphium/magic/commit/4177797b676c6377ec7dfb99a267d2b533bf9b4c)) +* Upgrade to v4 + dependency upgrade ([648cba4](https://github.com/Liphium/magic/commit/648cba427910ccdac7f197fb9994587eb07a5e46)) + ## 1.0.0 (2026-07-14) diff --git a/pkg/databases/redis/CHANGELOG.md b/pkg/databases/redis/CHANGELOG.md index 63d0888..32215b7 100644 --- a/pkg/databases/redis/CHANGELOG.md +++ b/pkg/databases/redis/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.2.0](https://github.com/Liphium/magic/compare/pkg/databases/redis/v1.1.2...pkg/databases/redis/v1.2.0) (2026-08-14) + + +### Features + +* Add SeaweedFS driver to Magic ([7c69d54](https://github.com/Liphium/magic/commit/7c69d547a22608181419a84e48dced49f21463a6)) +* **drivers:** Port database drivers to new interface ([4177797](https://github.com/Liphium/magic/commit/4177797b676c6377ec7dfb99a267d2b533bf9b4c)) +* Implement base of SeaweedFS driver ([3738df5](https://github.com/Liphium/magic/commit/3738df5fbe345450cada67b2db604e2bcb0413b9)) +* Upgrade to v4 + dependency upgrade ([648cba4](https://github.com/Liphium/magic/commit/648cba427910ccdac7f197fb9994587eb07a5e46)) + ## [1.1.2](https://github.com/Liphium/magic/compare/pkg/databases/redis/v1.1.1...pkg/databases/redis/v1.1.2) (2026-07-17) diff --git a/pkg/services/seaweedfs/CHANGELOG.md b/pkg/services/seaweedfs/CHANGELOG.md new file mode 100644 index 0000000..369100a --- /dev/null +++ b/pkg/services/seaweedfs/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +## 1.0.0 (2026-08-14) + + +### ⚠ BREAKING CHANGES + +* **runner:** Reuse containers when possible + +### Features + +* Add SeaweedFS driver to Magic ([7c69d54](https://github.com/Liphium/magic/commit/7c69d547a22608181419a84e48dced49f21463a6)) +* Implement base of SeaweedFS driver ([3738df5](https://github.com/Liphium/magic/commit/3738df5fbe345450cada67b2db604e2bcb0413b9)) +* **runner:** Reuse containers when possible ([2d2cff2](https://github.com/Liphium/magic/commit/2d2cff2e6d434da98a6cc73a8f6df37ac65bdef0)) +* Upgrade to v4 + dependency upgrade ([648cba4](https://github.com/Liphium/magic/commit/648cba427910ccdac7f197fb9994587eb07a5e46)) + + +### Bug Fixes + +* **seaweedfs:** Make sure healthcheck works ([2540856](https://github.com/Liphium/magic/commit/2540856f3b2da6d031f30357103837dce1c539ea))