Skip to content

Releases: kputnam/stupidedi

v1.4.5

25 Jun 03:50
Compare
Choose a tag to compare

What's changed

  • Fixed file permissions (#272)

Full Changelog: v1.4.3...v1.4.5

v1.4.3

14 Sep 02:28
Compare
Choose a tag to compare

Yanked

This release was yanked on Jun 25, 2024 due to incorrect file permissions in the published gem.

What's Changed

New Contributors

Full Changelog: v1.4.2...v1.4.3

v1.4.2

13 Sep 03:27
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.4.1...v1.4.2

v1.4.0

13 Sep 02:59
a644b9f
Compare
Choose a tag to compare

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

Temporarily rollback assertion of repeatable segments

13 Sep 02:59
a644b9f
Compare
Choose a tag to compare
Merge pull request #259 from casconed/feature/additional-insurance-lines

Add additional insurance codes

Fixes

13 Sep 02:58
a644b9f
Compare
Choose a tag to compare
  • Fix decimal values for TimeVal being coerced incorrectly #151
  • Detect ambiguous grammar automatically #153
  • Re-enable EC Segment on FifyTen group

** potential breaking changes **

13 Sep 02:58
a644b9f
Compare
Choose a tag to compare
  • Throw exception from #iterate if segment is not repeatable (fix #126) #146
  • Configurable limit of non-determinism (fixes #129) #145
  • Add utility to obfuscate data in X12 files #147
  • Fix potential frozen string issues in pretty_print methods #148
  • Remove erroneous code mappings from element definitions

Refinement work (look at pull request #72)

13 Sep 02:58
a644b9f
Compare
Choose a tag to compare

v1.4.1

18 May 18:00
Compare
Choose a tag to compare

Bug Fixes

Fix missing method delegations in SimpleElementUse, ComponentElementUse, and CompositeElementUse #185
Fix regression in edi-obfuscate
Fix copy-pasted StringVal -> IdentifierVal #187
Fix crash in 4010 editor, wrong method called #188
Fix bug in RepeatedElementVal#==, incorrect comparison #190
Fix error message when required composite element is missing #194
Fix various typos in comments and descriptor strings #230 and #233

Added

Add DSL for defining X12 grammars TransactionSets::Builder::Dsl #200
Add support for 5010 X12-HN277 Health Care Information Status Notification
Add support for 5010 X220A1-BE834 BGN05 Time Code #205
Add support for "02 - Birth" maintenance reason code #209

Json Writer

23 Oct 13:29
Compare
Choose a tag to compare

v 1.2.20 - Oct 23, 2018

  • Json Writer functionality - Traverse stupidedit internal tree to a ruby hash
  • Ruby 2.5.3 support