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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2f8a716313316fea53f5eb3b9b62f43a888853a8cfc3aac7118b1503581a511
4
- data.tar.gz: c42e3fd3d3096deb1cddfaa70de758c8f27bb3ba0ab1366cda5836ab65a95f31
3
+ metadata.gz: 26c80f152569e487d7d02d85e63c0e12ba43e6a9e83fb3a8d1053fa96a5919ec
4
+ data.tar.gz: 2871e120ee5bf773bf198b7521ce3e18bee2d946d642a952aba5cd7369493f80
5
5
  SHA512:
6
- metadata.gz: d93ee5f38109afcee853d0f4e8733a1c4244974dfdb265adcfe21efeaf4f8cd70c0409c3da57c743e16af164c5565e3aa282d1e3fc267746491ec57a5535f1f9
7
- data.tar.gz: 7f0b592525f3f71f993dd8c3fb99f958e89c74a31baecd53aa89d8517c2581c88c5228224f03d9374b3228dc9e54ba8c55e6434f417e3928c1bef965badf9544
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
@@ -3,8 +3,10 @@ module Tracebook
3
3
  isolate_namespace Tracebook
4
4
 
5
5
  initializer :append_migrations do |app|
6
- config.paths["db/migrate"].expanded.each do |expanded_path|
7
- app.config.paths["db/migrate"] << expanded_path unless app.config.paths["db/migrate"].include?(expanded_path)
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
@@ -1,3 +1,3 @@
1
1
  module Tracebook
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tracebook
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - dpaluy