File tree Expand file tree Collapse file tree 5 files changed +13
-2
lines changed Expand file tree Collapse file tree 5 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 6.9.3] - 2025-10-09
5+ ### Fixed
6+ - Add validate_types to model interface
7+
48## [ 6.9.2] - 2025-10-03
59### Fixed
610- Fix of all types taking type cast into account
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- table_sync (6.9.2 )
4+ table_sync (6.9.3 )
55 memery
66 rabbit_messaging (>= 1.7.0 )
77 rails
Original file line number Diff line number Diff line change @@ -101,3 +101,8 @@ def filter(parameters)
101101 :schema:
102102 :parameters: []
103103 :description: "returns an instance of Symbol"
104+ :validate_types:
105+ :parameters:
106+ - - :req
107+ - :data
108+ :description: "validate types of receiving data to make more readable errors"
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module TableSync
4- VERSION = "6.9.2 "
4+ VERSION = "6.9.3 "
55end
Original file line number Diff line number Diff line change @@ -83,6 +83,8 @@ def primary_keys; end
8383 def table ; end
8484
8585 def schema ; end
86+
87+ def validate_types ( data ) ; end
8688 end
8789 end
8890 end
You can’t perform that action at this time.
0 commit comments