Skip to content

v1.4.0

Compare
Choose a tag to compare
@irobayna irobayna released this 13 Sep 02:59
· 9 commits to master since this release
a644b9f

Bug fixes

  • Fix ambiguous grammars (mostly due to incorrect parentheses)
  • Fix errors in Standards::FortyTen::HC837
  • Fix errors in Standards::FiftyTen::BE834
  • Fix errors in Standards::FiftyTen::HB271
  • Fix errors in Standards::FiftyTen::RA820
  • Fix parsing invalid numeric data in Ruby 2.4+. Previously "10B" would be read as 10.0, and "AB10" would be read as 0.0 due to using bigdecimal/util's implementation of String#to_d
  • Fix TimeVal issue in all versions (not only 005010)

Added

  • Added Stupidedi::Parser.build as a shortcut for Stupidedi::Parser::StateMachine.build
  • Added many stub definitions of segments, just the segment name and no elements, which are referred to by RA820 and others.
  • edi-pp can now print different formats with --format html, --format x12, and --format tree (default)

Deprecation notices

  • Remove support for Ruby < 2.0
  • Remove workarounds for broken JRuby refinements
  • Remove Symbol#call and Symbol#to_proc refinements

Renamed

  • Stupidedi::Builder is renamed to Stupidedi::Parser
  • Stupidedi::Guides::*::GuideBuilder is renamed to Stupidedi::TransactionSets::Builder
  • Stupidedi::Versions::Interchanges is renamed to Stupidedi::Interchanges
  • Stupidedi::Versions::FunctionalGroups is renamed to Stupidedi::Versions
    • Lots of common code among versions has been factored into Stupidedi::Versions::Common
  • Rename Guides HC837P and HC837I to HC837
  • Moved all grammars, including Guides and Contrib, to Stupidedi::TransactionSets
    • Each version now has ::Standards and ::Implementations
  • Stupidedi::Schema::Auditor is renamed to Stupidedi::TransactionSets::Validation::Ambiguity

Most of these renames aren't breaking changes (yet), but using the old name will print a warning:

Stupidedi::Contrib is deprecated, use Stupidedi::TransactionSets
Stupidedi::Guides is deprecated, use Stupidedi::TransactionSets::*::Implementations
Stupidedi::TransactionSets::FiftyTen::Implementations::X222::HC837P is deprecated, use HC837 instead
Stupidedi::TransactionSets::FiftyTen::Implementations::X222A1::HC837P is deprecated, use HC837 instead
Stupidedi::TransactionSets::FiftyTen::Implementations::X223::HC837I is deprecated, use HC837 instead
Stupidedi::Versions::Interchanges is deprecated, use Stupidedi::Interchanges instead
Stupidedi::Versions::FunctionalGroups is deprecated, use Stupidedi::TransactionSets::*::Standards instead

Specs

  • Grammar specs automatically created when a fixture is added to spec/fixtures/<version>/<name>/pass/*.x12
  • Remove support for rcov. Use only simplecov now
  • Update all specs to use expect(value).to matcher syntax, instead of value.should matcher
  • New specs to ensure element names match their id (eg, E123.id == :E123)
  • New specs to ensure segment names match their id (eg ST.id == :ST)
  • New specs to ensure Config.hipaa, Config.contrib, and Config.default reference valid definitions
  • New specs for Stupidedi::TransactionSets::Validation::Ambiguity
  • Fix fixture files that used \n as a segment terminator but didn't have one after IEA

Miscellaneous

  • Create new examples in examples/ that demonstrate undocumented IdentifierStack, and more
  • Made whitespace and other formatting more consistent
  • Stupidedi::TransactionSets::Builder.build no longer requires a TransactionSetDef argument
  • Fix Travis CI to build older versions of Ruby < 2.3
  • Ignore large definition files in Code Climate