tracebook 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/tracebook/engine.rb +4 -2
- data/lib/tracebook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26c80f152569e487d7d02d85e63c0e12ba43e6a9e83fb3a8d1053fa96a5919ec
|
|
4
|
+
data.tar.gz: 2871e120ee5bf773bf198b7521ce3e18bee2d946d642a952aba5cd7369493f80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cb266f025d120576e6bc2684141e3b5aaf2ea70559c016ed72cd201809d159b202a2cc93c718d9e5a4d38c8aed0e5ffc7661713068be37ef5b5cb1bf0bac493
|
|
7
|
+
data.tar.gz: 70921a52fc73b3bdfda1574abbd474df5adf24694bdb1b44b6936d4f5d6a4e00191c7e195cea6205cb25133a7d1cf06df5252fddd5aa0cc5933d33aa8e7c1bdb
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.1] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Engine migrations**: Restored guard to skip appending engine migration paths when running inside the dummy app, fixing "Duplicate migration" error on fresh database setup.
|
|
13
|
+
|
|
8
14
|
## [1.0.0] - 2026-03-26
|
|
9
15
|
|
|
10
16
|
### Breaking Changes
|
|
@@ -77,6 +83,7 @@ Tracebook is now a layer on top of **RubyLLM** instead of a standalone interacti
|
|
|
77
83
|
- **Adapters**: Integration adapters for RubyLLM and ActiveAgent
|
|
78
84
|
- **PII Redaction**: Pre-persist redaction pipeline
|
|
79
85
|
|
|
86
|
+
[1.0.1]: https://github.com/dpaluy/tracebook/compare/v1.0.0...v1.0.1
|
|
80
87
|
[1.0.0]: https://github.com/dpaluy/tracebook/compare/v0.1.1...v1.0.0
|
|
81
88
|
[0.1.1]: https://github.com/dpaluy/tracebook/compare/v0.1.0...v0.1.1
|
|
82
89
|
[0.1.0]: https://github.com/dpaluy/tracebook/releases/tag/v0.1.0
|
data/lib/tracebook/engine.rb
CHANGED
|
@@ -3,8 +3,10 @@ module Tracebook
|
|
|
3
3
|
isolate_namespace Tracebook
|
|
4
4
|
|
|
5
5
|
initializer :append_migrations do |app|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
unless app.root.to_s.match?(root.to_s)
|
|
7
|
+
config.paths["db/migrate"].expanded.each do |expanded_path|
|
|
8
|
+
app.config.paths["db/migrate"] << expanded_path unless app.config.paths["db/migrate"].include?(expanded_path)
|
|
9
|
+
end
|
|
8
10
|
end
|
|
9
11
|
end
|
|
10
12
|
end
|
data/lib/tracebook/version.rb
CHANGED