v1.0.0
Changelog
This release contains unreleased commits from the NIST repository and changes that were requested, but not merged at the time of this release, including usnistgov/metaschema-java#374, usnistgov/metaschema-java#368, usnistgov/metaschema-java#367, usnistgov/metaschema-java#365, usnistgov/metaschema-java#363, usnistgov/metaschema-java#373, and usnistgov/metaschema#659. The commits for these PRs are also merged here.
This release includes:
- significant cleanup of the code base, providing for easier long-term maintenance
- a large number of new Metapath features and functions
- robust support for external constraints that allows for further restrictions over an existing Metaschema module when validating content
- many bug fixes that improve the reliability of this project
- the ability to produce validation results in the Static Analysis Results Interchange Format (SARIF), which allows for integration with tools implementing this standard.
General
- Added and improved Javadoc comments across all modules, with a focus on full documenting the core API.
- Cleaned up many compile, code style, SpotBugs, CPD, and PMD warnings and errors.
- Cleaned up orphaned code
- Switched some tests using resources in the test classpath to use file resources to make testing more stable.
- Refactored model interfaces in core and databind to reduce code duplication, to simplify interface heirachies, and to share more implementation code. This resulted in the removal of dozens of interfaces, which were no longer needed.
- Cleaned up some accessor method names to be more consistent with their return types.
- Added support for defining configuration feature names to better support debugging.
- Cleaned up stream closure to ensure that streams are properly closed.
- Added methods to handle making URIs relative to another URI.
- Some work towards improving NullPointerExceptions to provide more context when missing data is the cause.
metaschema-core
Metaschema Module Model
- Implemented choice group support based on usnistgov/metaschema#228, which provides a means to allow sequenced collections of objects of different types.
- Cleaned up and documented loader interfaces, to include IDocumentLoader.
- Refactored XML model parsing. Moved XML model classes to be hidden in the implementation.
- Added support for QName in Metaschema data types, which are used in function signatures now instead of the Java class name.
- Fixed XML choice model parsing to ensure instances are also added to the model instance list.
- Refactored core model classes and support for collections
- Relocated many class files and cleaned up many unneeded methods.
- Reworked definition and instance model classes to reduce extra interfaces and to simplify and align implementations.
- Added support for flag and field instances to provide a different default value than the definition.
- Refactored instance class hierarchy to support grouped and ungrouped model instances, with minimal implementation.
- Renamed model interfaces for greater consistency.
- Refactored core model interfaces to reduce inheritance conflicts.
- Adjusted the module interfaces to promote a cleaner, non-parameterized API.
- Renamed many instance implementation classes to ensure consistent use of terminology. Prior the terms "property" and "instance" were used interchangeably, which could cause some confusion.
- Refactored IBindingContext to move supporting interfaces to be child interfaces.
- Removed the need for instances of IDataTypeHandler. Now IClassDataTypeHandler functionality is provided by IFeatureComplexItemValueHandler and JavaTypeAdapterDataTypeHandler is provided by IFeatureScalarItemValueHandler.
- Refactored bound class hierarchy to be more consistent with needed methods.
- Moved Java field handling to IFeatureJavaField from IBoundNamedModelInstance
- Moved JSON key and item handling to IBoundModelInstance.
- Reworked XML and JSON reading and writing.
- Added IBoundChoiceGroupInstance interface for choice groups.
- Cleaned up IModelPropertyInfo and implementations, relocating supporting classes as child classes.
- Implemented a IModelInstance item parsing as IModelPropertyInfo.IReadHandler, allowing all item parsing to be implemented in the format-specific parsing classes, i.e. MetaschemaJsonReader, MetaschemaXmlReader.
- Cleaned up IModelPropertyInfo readItems methods, which now return the parsed value. Eliminated the need for IPropertyCollector instances.
- Refactored constraint ILet statement construction to use static factory methods.
- Cleaned up JSON value key naming code.
- Fixed default value handling which wasn't producing empty collection for unparsed model instances. Cleaned up getDefaultValue and getEffectiveDefaultValue methods.
- Refactored JSON key handling to determine the JSON key on a per item basis. This is needed for ChoiceGroups.
- Refactored container handling code to reuse the core model implementation where possible.
- Refactored group-as namespace handling to allow for no namespace situations. Implemented getEffectiveGroupAsNamespace to handle the default case of using the module namespace where no group-as support is provided.
Metapath Interpreter
-
Added support for more XPath 3.1 syntax in Metapath:
- Adjusted Metapath syntax to add support for
for
,if
,range
, simple map!
, and extended QNames. - Added support for Metapath if expressions:
if (expr) then (expr) else (expr)
. - Added support for Metapath range expressions:
intValue to intValue
. - Added support for Metapath quantified expressions:
(some | every) $VarName in Expr1 (, $VarName in ExprN)* satisfies ExprS
.
- Adjusted Metapath syntax to add support for
-
Added the following Metapath functions:
abs
avg
ceiling
concat
count
document-available
empty
head
insert-before
min
max
sum
tail
remove
reverse
array:get
array:put
array:append
array:subarray
array:remove
array:insert-before
array:join
array:head
array:tail
array:reverse
array:flatten
map:get
map:merge
map:entry
map:size
map:keys
map:contains
map:find
map:put
map:remove
meta:model
which gets a nodeset based on the underlying Metaschema module model for the node.
-
Fixed defects in the following functions:
data
false
true
starts-with
which was checking for contains not startsWith.
-
Added support for sub-DynamicContexts supporting variable definition in let and quantified expression statements.
-
Added support for map construction.
- Added support for maps in function call, postfix and unary lookups.
- Added missing characteristics on a number of existing Metapath functions.
-
Added support for Metapath arrays
- Completed code to support Metapath array construction.
- Implemented array postfix and unary lookups.
-
Changed ISequence to implement the List interface to allow sequences to better participate in collection-oriented Java methods.
-
Cleaned up ISequence implementations, moving getFirstItem to be a method member. Added a utility function to convert a sequence into an array member.
-
Refactored comparison methods into a new ComparisonFunctions class.
-
Reorganized and improved item implementations to better group interfaces and implementation classes and to be more robust.
- Refactored atomic item interfaces and implementations.
- Added support for casting an IItem of IAnyAtomicItem type to the type of another item using the castAsType method. This is useful for functions that require the return type to match the argument's type.
- Added support for compareTo for all atomic items.
- Added equals and hashCode to all item types.
- Renamed FlagDefinitionNodeItemImpl to FlagGlobalDefinitionNodeItemImpl to better harmonize with sibling field and assembly implementations.
- Added toString methods to some items to improve debugging and testing.
- Refactored IDocumentNodeItem and IModuleNodeItem to better align the features of each. A document node item not exposes the root assembly, while a module node item exposes the global definitions and module namespace.
- Ensured proper handling of Metapath errors during validation. Resolves usnistgov/oscal-cli#292
-
To improve maintenance of Metapath function test vectors, inline compilation of Metapaths are now used, making tests more readable while we working on usnistgov/metaschema#239.
- Reorganize test util functions for vectorized tests.
- Parameterize CLI tests as pre-work for usnistgov/metaschema-java#241.
-
Fixed a bug causing Metapath lexer errors to be silently ignored.
-
Reorganized and refactored the Metapath compact syntax tree and ANTLR-based abstract syntax tree implementation classes.
-
Fixed bug causing empty sequences to not be produced by the Metapath expression: ().
-
Cleaned up static and dynamic Metapath exceptions. Refactored StaticContext generation to ensure proper use of model-based methods.
-
Adjusted namespace of Metapath functions to http://csrc.nist.gov/ns/metaschema/metapath-functions.
-
Improved function testing to lookup and call the function. This will more fully exercise the function call in JUnit tests.
-
Fixed a defect in opNumericDivide that caused improper handling of integer division.
-
Adjusted the document node item to ensure it returns the root node when getValue is called. This fixes usnistgov/oscal-cli#216.
-
Added support for Expanded QNames
-
Fixed and tested mod expression handling to properly return an integer result
-
Fixed function chain arrow operator processing
Made
=>
operator eqname only in ANTLR grammar. See #68 for follow-on work.Per discussion with maintainers, adjust arrowfunctionspecifier to not parse the arrow function chain operator as a eqname or varref or a parenthesizedexpr, but only an eqname to fix parsing complexity. The relevant code to support this in BuildCSTVisitor has still not been implemented per the TODO comment.
-
Fixed BuildCSTVisitor context processing for usnistgov/metaschema-java#289
The index and offset for BuildCSTVisitor for arrow chain operator context processing was off and therefore exceptions were occurring when handling => function calls during evaluation and therefore function calls were not instantiated the correct way. We also added tests to validate it works now, uncovering another issue in the use of fn:sum casting integers to decimals, that was also fixed.
Constraint processing
- Added support for let statements in constraints.
- Refactored constraint implementation, reducing code complexity, improving organization, and hiding implementation classes. Removed unused code.
- Unified external constraint processing through use of an ExternalConstraintsModulePostProcessor.
- Added XmlMetaConstraintLoader, which can load an XML-based
<metaschema-meta-constraints>
instance. - Fixed bug in the output generated by newCardinalityMinimumViolationMessage, to provide some context around the error. Before an empty array was always displayed, which was not helpful.
- Refactored external constraint parsing, abstracting common data objects.
- Added support for meta constraint imports.
- Cleaned up ISource implementations, and ensured that URI-based sources are properly cached.
- Added support for exposing parse locations in validation results.
- Adjusted constraint result production to allow for pass results to be produced, which supports producing SARIF result that include both pass and fail statuses using an API-level configuration.
- Refactored Metaschema validation API to allow for more flexibility in use.
- Improved handling of missing index in index-has-key constraints
- Added exception with explanation for missing index for #280
- Tests demonstrating clear error reporting for #280
- Report name of missing index in error message
metaschema-databind
- Refactored constraint parsing to cleanup the API and to normalize processing between the legacy and meta constraint formats.
- Implemented a Metaschema module for the Metaschema module format.
- Added bindings for the legacy and new external constraint models.
- Implemented a Metaschema module binding-based constraint loader: BindingConstraintLoader. This loader is capable of loading the legacy external constraint format and the new meta constraint format.
- Added support for choice groups in serializers/deserializers, and code generator.
- Refactored annotations to consolidate ValueConstraints, AssemblyConstraints, and GroupAs as child annotations of the core BoundAssembly, BoundField, BoundFlag, and BoundChoiceGroup annotations.
- Cleaned up Metaschema module binding classes to align constraints with current constraints and added back legacy data types.
- Refactored package names to better organize binding related code and to distinguish provided model bindings.
- Added support for capturing parsed location information in bound objects. This will be useful for producing context for validation results.
- Fixed bugs causing the ordering of generated classes to be chaotic. Also fixed bugs causing binding configurations to match based on minor URI differences caused by inconsistent behavior between file and path URI productions.
- Added JSON parser test to test for the usnistgov/metaschema-java#308 regression.
- Refactored XML and JSON item writing to use a shared IModelInstanceCollectionInfo.IWriteHandler implementation, allowing all item writing to be implemented in the format-specific classes, i.e. MetaschemaJsonWriter, MetaschemaXmlWriter.
- Implemented choice group writing for XML, JSON, and YAML.
- Moved JSON reading and writing code from IItemValueHandler to MetaschemaJsonReader and MetaschemaJsonWriter using dispatch methods. This allows are IO code to be implemented withing the JSON format-specific implementation.
- Moved XML reading and writing code from IItemValueHandler to MetaschemaXmlReader and MetaschemaXmlWriter using dispatch methods. This allows are IO code to be implemented withing the XML format-specific implementation.
- Cleaned up XML parsing code. Fixed a bunch of bugs causing parsing to not work.
- Fixed all identified bugs in XML parsing.
- Added support for parsing XML fields as a root element.
- Cleaned up IBoundGroupedFieldInstance implementations to use only the complex form, since a grouped item must have a bound class to determine its item type.
- Aligned generated annotations with class generation, adding support for many missing annotation entries.
- Added binding support for choice groups.
- Added Metaschema module bindings.
- Adjusted the name used during code generation to use the value key name if available. This provides a more sensible name for Java property get and set methods created during code generation.
- Added support for deprecated on allowed value enumerations.
- Added support for Metaschema module loading that uses the Metaschema module binding instead of the XML parser. Metaschema modules in XML, JSON, and YAML can now be fully read!
- Added Metaschema module loader support for entity resolution. Tested with OSCAL Metaschema modules.
- Cleaned up bound module loading in DefaultBindingContext.
- Relocated the IModulePostProcessor interface to the new IModuleLoader interface.
- Refactored flag and field name handling for a cleaner implementation. This new approach uses "name" as the binding annotation value for flags, instead of "useName".
- Improved testing of assemblies with various types of fields and flags.
- Implemented new unit tests to test the model bindings.
- Refactored DefaultJsonDeserializer to read a root element without the need to produce a Metapath item first.
- Adjusted the class generation for grouped instances to allow for extended classes where definitions are used by reference.
- Implemented subclass generation for choice group instances.
- Moved Metaschema module binding classes to a subdirectory to help with change integration.
- Refactored JSON schema generator. Many improvements to the indexing approach used to determine which definitions become global definitions in the JSON schema.
- Improved JSON documentation to include titles and descriptions on properties.
metaschema-databind-modules
- Added support for producing Static Analysis Results Interchange Format (SARIF) results based on schema and constraint validation results.
- Added support for including rules and artifact information in SARIF results. SARIF files now work on commonly available viewers.
- Added constraint formal-name and description to SARIF output, allowing human readers to better understand why the result was produced.
- Added a GUID to SARIF output for each rule.
metaschema-maven-plugin
- Added support for configuring external constraints in the maven plugin for the schema generation and code generation mojos.
metaschema-cli
- Added SARIF CLI output option to validate command.
- Improved abstract CLI validation commands to provide more options for model detection.
- Added initial implementation of the
metaschema-cli metapath list-functions
command. - Added a better means to collect the metaschema-related CLI commands for reuse.
- Fixed issue causing CLI errors when using
--help
or--version
, while not providing a required command parameter. Resolves usnistgov/metaschema-java#293. - Added support for URL use in CLI arguments
-
Add UriUtils class for URI/Path translation
Currently, we have the metaschema-cli only support local file paths for
arguments for content inputs and outputs. This loader will support the
use of MetaschemaLoader.load() with URIs and unify local file path and
URL access (primarily https://, http://) with the same command line
tooling for similar remote and local access. -
CLI commands allow files or URIs for usnistgov/metaschema-java#297
This PR adjusts the commands and supporting databind classes and ports
them to use URIs. The commands will use the new UriUtils class and the
toUri() function to use a remote URI supported as a URL and load the
model, schema, or target file. If a local file, it will convert the file
path to valid URI.Integration tests have been added to validate this functionality works
with the update CLI commands. -
Specific error handling for different URI failures
Per discussion with @david-waltermire, update the exception handling and
associated error messages to identify if a bad domain for a remote URI
is used or a valid domain is used but a bad URL.
-
Repository
-
Updated workflows, templates, and core repository files to localize to this repository. Simplified code preamble to use SPDX tags.
-
Cleaned up retired modules that are no longer in use.
-
Fix dependency bounds issue for usnistgov/metaschema#265 (#266)
More details with the reason for this PR can be found in the build
mentioned below.Error: Rule 0: org.apache.maven.plugins.enforcer.RequireUpperBoundDeps failed with message: Failed while enforcing RequireUpperBoundDeps. The error(s) are [ Require upper bound dependencies error for org.xmlresolver:xmlresolver:5.2.0 paths to dependency are: +-gov.nist.secauto.metaschema:metaschema-schema-generator:1.0.0-M2-SNAPSHOT +-net.sf.saxon:Saxon-HE:12.4 +-org.xmlresolver:xmlresolver:5.2.0 (managed) <-- org.xmlresolver:xmlresolver:5.2.2 and +-gov.nist.secauto.metaschema:metaschema-schema-generator:1.0.0-M2-SNAPSHOT +-net.sf.saxon:Saxon-HE:12.4 +-org.xmlresolver:xmlresolver:5.2.0:data (managed) <-- org.xmlresolver:xmlresolver:5.2.2:data ]
-
Integrated Maven reporting profile into main build. No need to use
-Preporting
anymore to generate reports and Javadocs. These now build when thesite
goal is used. -
Fixed many broken website links.
-
Normalized line endings for all text files. Added a
.git attributes
to ensure that line endings are properly maintained.
What's Changed
- Bump commons-io:commons-io from 2.13.0 to 2.14.0 by @dependabot in usnistgov/metaschema-java#223
- Bump github/codeql-action from 2.21.8 to 2.22.1 by @dependabot in usnistgov/metaschema-java#228
- Add additional Metapath Functions by @david-waltermire in usnistgov/metaschema-java#224
- Add support for numeric indexes by @david-waltermire in usnistgov/metaschema-java#225
- Refactoring of code, focus on constraints by @david-waltermire in usnistgov/metaschema-java#230
- Bump actions/checkout from 4.1.0 to 4.1.1 by @dependabot in usnistgov/metaschema-java#235
- Bump dependency.log4j2.version from 2.20.0 to 2.21.0 by @dependabot in usnistgov/metaschema-java#233
- Bump github/codeql-action from 2.22.1 to 2.22.3 by @dependabot in usnistgov/metaschema-java#232
- Bump org.json:json from 20230618 to 20231013 by @dependabot in usnistgov/metaschema-java#231
- Feature metapath enhancements 20231016 by @dependabot in usnistgov/metaschema-java#236
- Use
Metapath.compile()
in range tests inline by @aj-stein-nist in usnistgov/metaschema-java#240 - Bump io.github.git-commit-id:git-commit-id-maven-plugin by @dependabot in usnistgov/metaschema-java#243
- Bump dependency.log4j2.version from 2.21.0 to 2.21.1 by @dependabot in usnistgov/metaschema-java#247
- Bump github/codeql-action from 2.22.3 to 2.22.5 by @dependabot in usnistgov/metaschema-java#251
- Bump commons-io:commons-io from 2.14.0 to 2.15.0 by @dependabot in usnistgov/metaschema-java#248
- Bump commons-cli:commons-cli from 1.5.0 to 1.6.0 by @dependabot in usnistgov/metaschema-java#249
- Metasconstraints Part 1 - XML and Annotation Models by @david-waltermire in usnistgov/metaschema-java#254
- Bump org.apache.commons:commons-text from 1.10.0 to 1.11.0 by @dependabot in usnistgov/metaschema-java#255
- Bump org.apache.xmlbeans:xmlbeans from 5.1.1 to 5.2.0 by @dependabot in usnistgov/metaschema-java#259
- Bump github/codeql-action from 2.22.5 to 2.22.8 by @dependabot in usnistgov/metaschema-java#262
- Bump org.apache.commons:commons-lang3 from 3.13.0 to 3.14.0 by @dependabot in usnistgov/metaschema-java#261
- Bump dependency.log4j2.version from 2.21.1 to 2.22.0 by @dependabot in usnistgov/metaschema-java#260
- Fix dependency bounds issue for usnistgov/metaschema-java#265 by @aj-stein-nist in usnistgov/metaschema-java#266
- Bump commons-io:commons-io from 2.15.0 to 2.15.1 by @dependabot in usnistgov/metaschema-java#264
- Bump actions/setup-java from 3.13.0 to 4.0.0 by @dependabot in usnistgov/metaschema-java#263
- Add P1 Metapath sequence functions by @aj-stein-nist, @Arminta-Jenkins-NIST, @david-waltermire in usnistgov/metaschema-java#239
- Bump com.xmlcalabash:xmlcalabash from 1.5.6-120 to 1.5.7-120 by @dependabot in usnistgov/metaschema-java#268
- Bump gov.nist.secauto:oss-build-support from 26 to 27 by @dependabot in usnistgov/metaschema-java#269
- Bump org.codehaus.mojo:license-maven-plugin from 2.0.0 to 2.3.0 by @dependabot in usnistgov/metaschema-java#270
- Bump github/codeql-action from 2.22.8 to 3.22.11 by @dependabot in usnistgov/metaschema-java#274
- Support Metapath concat function by @david-waltermire, @aj-stein-nist in usnistgov/metaschema-java#253
- Parameterize existing CLI tests with streaming test vectors by @aj-stein-nist in usnistgov/metaschema-java#271
- Bump github/codeql-action from 3.22.11 to 3.22.12 by @dependabot in usnistgov/metaschema-java#278
- Bump org.fusesource.jansi:jansi from 2.4.0 to 2.4.1 by @dependabot in usnistgov/metaschema-java#276
- Bump nl.talsmasoftware:lazy4j from 1.0.2 to 1.0.3 by @dependabot in usnistgov/metaschema-java#275
- Bump dependency.antlr4.version from 4.10.1 to 4.13.1 by @dependabot in usnistgov/metaschema-java#277
- Look up XSDs with good extension for usnistgov/metaschema-java#279 by @aj-stein-nist in usnistgov/metaschema-java#280
- Bump net.sf.saxon:Saxon-HE from 12.3 to 12.4 by @dependabot in usnistgov/metaschema-java#265
- Add exception with clear message about missing index by @aj-stein-nist in usnistgov/metaschema-java#282
- Fix function chain arrow operator processing by @aj-stein-nist by @dependabot in usnistgov/metaschema-java#290
- Bump github/codeql-action from 3.22.12 to 3.23.1 by @dependabot in usnistgov/metaschema-java#291
- Bump com.github.erosb:everit-json-schema from 1.14.3 to 1.14.4 by @dependabot in usnistgov/metaschema-java#286
- Bump dependency.log4j2.version from 2.22.0 to 2.22.1 by @dependabot in usnistgov/metaschema-java#284
- Bump com.github.spotbugs:spotbugs-annotations from 4.7.3 to 4.8.3 by @dependabot in usnistgov/metaschema-java#283
- Bump org.eclipse.persistence:org.eclipse.persistence.moxy by @dependabot in usnistgov/metaschema-java#285
- Bump com.github.javaparser:javaparser-symbol-solver-core by @dependabot in usnistgov/metaschema-java#295
- Bump net.openhft:compiler from 2.23ea0 to 2.25ea1 by @dependabot in usnistgov/metaschema-java#296
- Bump org.apache.maven.plugin-tools:maven-plugin-annotations by @dependabot in usnistgov/metaschema-java#288
- Refactored core model classes and support for collections of model in. by @david-waltermire in usnistgov/metaschema-java#256
- Allow file or URI arguments to metaschema-cli by @aj-stein-nist, @david-waltermire in usnistgov/metaschema-java#298
- Bump org.codehaus.woodstox:stax2-api from 4.2.1 to 4.2.2 by @dependabot in usnistgov/metaschema-java#299
- Bump github/codeql-action from 3.23.1 to 3.24.0 by @dependabot in usnistgov/metaschema-java#304
- Correct math CST parsing for mod expression to use mod-numeric by @aj-stein-nist in usnistgov/metaschema-java#306
- Bump com.github.seancfoley:ipaddress from 5.4.0 to 5.4.2 by @dependabot in usnistgov/metaschema-java#307
- Bumped jackson version. Fixed some formatting issues. by @david-waltermire in usnistgov/metaschema-java#310
- Bump org.json:json from 20231013 to 20240205 by @dependabot in usnistgov/metaschema-java#314
- Bump org.codehaus.mojo:license-maven-plugin from 2.3.0 to 2.4.0 by @dependabot in usnistgov/metaschema-java#311
- Bump org.codehaus.mojo:templating-maven-plugin from 1.0.0 to 3.0.0 by @dependabot in usnistgov/metaschema-java#313
- Fix instance parsing in choice and similar constructs @aj-stein-nist, @david-waltermire in usnistgov/metaschema-java#316
- Add for and simple map (!) Metapath expression support @david-waltermire in usnistgov/metaschema-java#317
- Bump github/codeql-action from 3.24.0 to 3.24.1 by @dependabot in usnistgov/metaschema-java#321
- Bump net.openhft:compiler from 2.25ea1 to 2.25ea2 by @dependabot in usnistgov/metaschema-java#323
- Bump github/codeql-action from 3.24.1 to 3.24.3 by @dependabot in usnistgov/metaschema-java#322
- Add metaschema models for constraints @david-waltermire in usnistgov/metaschema-java#320
- Bump dependency.log4j2.version from 2.22.1 to 2.23.0 by @dependabot in usnistgov/metaschema-java#324
- Bump github/codeql-action from 3.24.3 to 3.24.4 by @dependabot in usnistgov/metaschema-java#326
- Improve NPE error messages for missing data by @david-waltermire, @aj-stein-nist in usnistgov/metaschema-java#309
- Bump actions/setup-java from 4.0.0 to 4.2.0 by @dependabot in usnistgov/metaschema-java#338
- Bump actions/checkout from 4.1.1 to 4.1.2 by @dependabot in usnistgov/metaschema-java#337
- Bump github/codeql-action from 3.24.4 to 3.24.7 by @dependabot in usnistgov/metaschema-java#336
- Bump softprops/action-gh-release from 1 to 2 by @dependabot in usnistgov/metaschema-java#335
- Bump com.github.javaparser:javaparser-symbol-solver-core by @dependabot in usnistgov/metaschema-java#334
- Bump com.github.seancfoley:ipaddress from 5.4.2 to 5.5.0 by @dependabot in usnistgov/metaschema-java#333
- Fixed issue causing CLI errors when using --help or --version, while not providing a required command parameter. Resolves usnistgov/metaschema-java#293. by @david-waltermire in usnistgov/metaschema-java#327
- Bump org.json:json from 20240205 to 20240303 by @dependabot in usnistgov/metaschema-java#332
- Bump org.jmock:jmock-junit5 from 2.12.0 to 2.13.0 by @dependabot in usnistgov/metaschema-java#343
- Bump dependency.log4j2.version from 2.23.0 to 2.23.1 by @dependabot in usnistgov/metaschema-java#341
- Bump softprops/action-gh-release from 2.0.2 to 2.0.4 by @dependabot in usnistgov/metaschema-java#340
- Bump github/codeql-action from 3.24.7 to 3.25.15 by @dependabot in #59
- Bump actions/checkout from 4.1.2 to 4.1.7 by @dependabot in #52
- Bump jackson and woodstox versions by @david-waltermire in #60
- Changed version to 1.0.0-SNAPSHOT by @david-waltermire in #61
- Bump org.xmlresolver:xmlresolver from 5.2.2 to 6.0.4 by @dependabot in #43
Full Changelog: https://github.com/metaschema-framework/metaschema-java/commits/v1.0.0