1.0.0-rc66

(fix): Fix union type matching for Hash and Array type wrappers. The type_matches? method now correctly handles Internal::Types::Hash and Internal::Types::Array instances by checking if the value is a ::Hash or ::Array respectively, instead of using is_a? directly on the type wrapper classes.

1.0.0-rc65

(feat): Add CI workflow generation, .gitignore file, and wire test infrastructure:

  • Generate .github/workflows/ci.yml with lint and test jobs (triggers on push and pull_request)
  • Generate .gitignore file with *.gem
  • Config-driven wire-tests job: when enableWireTests: true, generates wire-tests CI job
  • Add wire_helper.rb for WireMock container lifecycle management using Minitest’s after_run hook, allowing users to run bundle exec rake test locally without manually managing docker compose