This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/github_actions/scalacenter/sbt-dependency-submission-3.1.0
in repository https://gitbox.apache.org/repos/asf/daffodil.git


 discard 630e891b1 Bump scalacenter/sbt-dependency-submission from 3.0.1 to 
3.1.0
     add 5b9c37700 Prepare for 3.9.0 release
     add 855215765 Flip ignoreUnexpectedValidationErrors flag
     add e467498ea Disable constant length facet check for inputValueCalc 
elements
     add e02ae7fff Fix how unprefixed QNames are resolved
     add cd05acfbb Bump version for 4.0.0 development
     add bfad358a9 Update SDW message for clarity
     add 97463b782 Add expressionAllowed param to getPropertyOption
     add 7736d5fdd Verify no Abort when documentPart has no type
     add aaf9f1c80 Enable debug/trace for parse, unparse and test only
     add dad8c6d69 Disable Limited Validation when Validation mode is Full
     add a1f7f96f8 Generate SDE when node indexed like array
     add 639f40888 Address unexpected warnings
     add 11fcc71de Add support for escalating SDWs to Errors
     add 04bcd04b7 Update os-lib to 0.11.1
     add 8fb215468 Bump actions/checkout from 4.1.7 to 4.2.1
     add d422a9fd9 Bump scalacenter/sbt-dependency-submission from 3.0.1 to 
3.1.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (630e891b1)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/scalacenter/sbt-dependency-submission-3.1.0
 (d422a9fd9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/dependency-graph.yml             |    2 +-
 .github/workflows/main.yml                         |    6 +-
 build.sbt                                          |    2 +-
 .../main/scala/org/apache/daffodil/cli/Main.scala  |  187 ++--
 .../daffodil/cli/cliTest/TestCLIParsing.scala      |    6 +-
 .../daffodil/cli/cliTest/TestCLISaveParser.scala   |   16 +-
 .../apache/daffodil/cli/cliTest/TestCLItdml.scala  |    4 +-
 .../org/apache/daffodil/codegen/c/ex_nums.dfdl.xsd |    2 +-
 .../daffodil/core/dpath/DFDLExpressionParser.scala |    4 +-
 .../apache/daffodil/core/dpath/Expression.scala    |   58 +-
 .../daffodil/core/dsom/CompiledExpression.scala    |   18 +-
 .../daffodil/core/dsom/DFDLDefineVariable.scala    |    2 +-
 .../apache/daffodil/core/dsom/ElementBase.scala    |    2 +-
 .../daffodil/core/dsom/RestrictionUnion.scala      |    2 +-
 .../daffodil/core/dsom/SchemaComponent.scala       |    2 +-
 .../core/dsom/SchemaComponentFactory.scala         |    5 +
 .../dsom/SchemaDocIncludesAndImportsMixin.scala    |   34 +
 .../core/grammar/ElementBaseGrammarMixin.scala     |   11 +-
 .../apache/daffodil/core/grammar/GrammarTerm.scala |    3 -
 .../grammar/primitives/PrimitivesExpressions.scala |   18 +-
 .../core/runtime1/ElementBaseRuntime1Mixin.scala   |    3 +-
 .../runtime1/SchemaComponentRuntime1Mixin.scala    |    2 +-
 .../core/runtime1/SimpleTypeRuntime1Mixin.scala    |    2 +-
 .../core/runtime1/VariableRuntime1Mixin.scala      |    4 +-
 ...xample_a02_targetnamespace_unqualified.dfdl.xsd |    5 +-
 .../core/dpath/TestDFDLExpressionEvaluation.scala  |    4 +-
 .../core/dpath/TestDFDLExpressionTree.scala        |    4 +-
 .../org/apache/daffodil/example/TestJavaAPI.java   |    7 +-
 .../resources/test/japi/alwaysInvalid.dfdl.xsd     |    2 +-
 .../lib/schema/annotation/props/ByHandMixins.scala |    2 +-
 .../schema/annotation/props/PropertyScoping.scala  |    7 +-
 .../org/apache/daffodil/lib/xml/QNameBase.scala    |  122 +--
 .../scala/org/apache/daffodil/lib/xml/QNames.scala |    9 +-
 .../annotation/props/TestGeneratedProperties.scala |    2 +-
 .../resources/org/apache/daffodil/xsd/dafext.xsd   |    7 +
 .../daffodil/propGen/PropertyGenerator.scala       |   26 +-
 .../daffodil/propGen/TestPropertyGenerator.scala   |    6 +-
 .../apache/daffodil/runtime1/BasicComponent.scala  |    9 +-
 .../runtime1/debugger/InteractiveDebugger.scala    |   12 +-
 .../dpath/DFDLCheckConstraintsFunction.scala       |    2 +-
 .../org/apache/daffodil/runtime1/dpath/DPath.scala |    1 -
 .../runtime1/dsom/CompiledExpression1.scala        |    6 +-
 .../runtime1/dsom/ExpressionCompiler.scala         |    2 +-
 .../org/apache/daffodil/runtime1/dsom/SDE.scala    |   63 +-
 .../runtime1/processors/DataProcessor.scala        |    8 +-
 .../runtime1/processors/ProcessorStateBases.scala  |   14 +-
 .../daffodil/runtime1/processors/RuntimeData.scala |   18 +-
 .../runtime1/processors/SuspensionTracker.scala    |   11 +-
 .../processors/parsers/ElementCombinator1.scala    |    4 +-
 .../runtime1/processors/parsers/ParseErrors.scala  |   12 +-
 .../runtime1/processors/parsers/Parser.scala       |    1 -
 .../processors/parsers/SequenceChildBases.scala    |    4 +-
 .../runtime1/processors/unparsers/Unparser.scala   |    1 -
 .../org/apache/daffodil/example/TestScalaAPI.scala |    6 +-
 .../src/test/resources/xsd/with-ns-1.dfdl.xsd      |    2 +-
 .../org/apache/daffodil/tdml/RunnerFactory.scala   |    2 +-
 .../apache/daffodil/tdml/UnitTestTDMLRunner.scala  |   22 +
 .../daffodil/processor/tdml/TestTDMLRunner2.scala  |   60 +-
 .../tdml/TestTDMLRunnerValidationErrors.scala      |   13 +-
 .../apache/daffodil/cliTest/TestCLIDebugger.scala  |   88 +-
 .../choiceBranchRanges/choiceBranchKeyRanges.tdml  |    2 +-
 .../daffodil/extensions/repType/repType.tdml       |   48 +
 .../daffodil/layers/exampleCheckDigit.dfdl.xsd     |    2 +
 .../general/testImportOtherAnnotationSchema.tdml   |    8 +
 .../general/testUnparserFileBuffering.tdml         |    8 +-
 .../section00/general/testUnparserGeneral.tdml     |    5 +-
 .../daffodil/section00/general/tunables.tdml       |    6 +-
 .../SchemaDefinitionErrors.tdml                    |   69 +-
 .../section02/validation_errors/Validation.tdml    |  103 +-
 .../apache/daffodil/section05/facets/Facets.tdml   |    2 +-
 .../daffodil/section05/facets/PatternRanges.tdml   |    3 +-
 .../daffodil/section05/simple_types/BitOrder.tdml  |    4 +-
 .../section05/simple_types/SimpleTypes.tdml        |   34 +-
 .../simple_types/nonNegativeInteger.dfdl.xsd       |    5 +-
 .../section06/entities/DefaultProperties.dfdl.xsd  |    2 +-
 .../section06/namespaces/ABC_invalid.dfdl.xsd      |    2 +-
 .../section06/namespaces/cycle_base.dfdl.xsd       |    5 +-
 .../section06/namespaces/cycle_step.dfdl.xsd       |    5 +-
 ...est05sch6.dfdl.xsd => generalFormat01.dfdl.xsd} |   23 +-
 .../namespaces/generalFormat02.dfdl.xsd}           |   22 +-
 ...est05sch6.dfdl.xsd => generalFormat03.dfdl.xsd} |   25 +-
 ...est05sch6.dfdl.xsd => generalFormat04.dfdl.xsd} |   23 +-
 .../section06/namespaces/includeImport.tdml        |   41 +-
 .../section06/namespaces/multi_A_03.dfdl.xsd       |    4 +-
 .../section06/namespaces/multi_base_01.dfdl.xsd    |    5 +-
 .../section06/namespaces/multi_base_02.dfdl.xsd    |    5 +-
 .../section06/namespaces/multi_base_03.dfdl.xsd    |    4 +-
 .../section06/namespaces/multi_base_04.dfdl.xsd    |    5 +-
 .../namespaces/multi_base_06_valid.dfdl.xsd        |    5 +-
 .../section06/namespaces/multi_base_09.dfdl.xsd    |  Bin 7634 -> 7572 bytes
 .../daffodil/section06/namespaces/namespaces.tdml  |    9 +-
 .../namespaces/primTypesPrefixes.dfdl.xsd          |    2 +-
 .../daffodil/section06/namespaces/qname1.dfdl.xsd  |    2 +-
 .../daffodil/section06/namespaces/qname2.dfdl.xsd  |    2 +-
 .../org/apache/daffodil/section06/namespaces/shi   |    2 +-
 .../section07/discriminators/discriminator.tdml    |   48 +-
 .../discriminators/multipleDiscriminators.tdml     |    2 +-
 .../discriminators/nestedChoiceDiscriminator.tdml  |    6 -
 .../daffodil/section07/variables/variables.tdml    |   28 +
 .../property_scoping/PropertyScoping.tdml          |    4 +-
 .../PropertiesDefined.dfdl.xsd                     |    4 +-
 .../PropertiesNotDefined.dfdl.xsd                  |    2 +-
 .../representation_properties/RepProps.tdml        |   19 +-
 .../representation_properties/encodings.tdml       |    2 +
 .../section12/aligned_data/Aligned_Data.tdml       |   12 +-
 .../section12/lengthKind/PrefixedTests.tdml        |    4 +-
 .../apache/daffodil/section13/boolean/boolean.tdml |   13 +-
 .../daffodil/section13/nillable/nillable.tdml      |    4 +-
 .../text_number_props/TextNumberProps.tdml         |   28 +-
 .../section14/sequence_groups/SequenceGroup.tdml   | 1111 ++++++++++----------
 .../SequenceGroupInitiatedContent.tdml             |    2 +-
 .../unordered_sequences/UnorderedSequences.tdml    |    4 +-
 .../unordered_namespaces_03.dfdl.xsd               |    5 +-
 .../section15/choice_groups/choice1773.tdml        |   12 +-
 .../section15/choice_groups/testSharedGroups.tdml  |   18 +
 .../section16/array_optional_elem/ArrayComb.tdml   |   12 +-
 .../array_optional_elem/ArrayOptionalElem.tdml     |   20 +-
 .../UnparseArrayDelimitedOptionalElem.tdml         |    7 +-
 .../arrays_optional_elements.dfdl.xsd              |    2 +-
 .../array_optional_elem/backtracking.tdml          |    2 +-
 .../section17/calc_value_properties/AQ.tdml        |    2 +-
 .../section17/calc_value_properties/AR.tdml        |    2 +-
 .../computedLengthFields.tdml                      |    4 +-
 .../calc_value_properties/inputValueCalc.tdml      |    7 +-
 .../calc_value_properties/outputValueCalc2.tdml    |    4 +-
 .../section23/dfdl_expressions/expressions.tdml    |   70 +-
 .../section23/dfdl_expressions/expressions3.tdml   |  108 +-
 .../section23/dfdl_functions/Functions.tdml        |   10 +-
 .../section23/dfdl_functions/first_schema.dfdl.xsd |    2 +-
 .../section23/dfdl_functions/home_schema.dfdl.xsd  |    2 +-
 .../dfdl_functions/second_schema.dfdl.xsd          |    2 +-
 .../runtime_properties/runtime-properties.tdml     |    8 +-
 .../resources/org/apache/daffodil/udf/udfs.tdml    |    2 +-
 .../daffodil/unparser/parseUnparseMode.dfdl.xsd    |    2 +-
 .../org/apache/daffodil/usertests/SepTests.tdml    |   21 +-
 .../apache/daffodil/infoset/TestStringAsXml.scala  |   16 +-
 .../schema_definition_errors/TestSDE.scala         |    8 +
 .../validation_errors/TestValidationErr.scala      |    3 +
 .../section05/simple_types/TestSimpleTypes.scala   |    2 -
 .../section06/namespaces/TestNamespaces.scala      |    5 +
 .../section07/variables/TestVariables.scala        |    3 +
 .../dfdl_expressions/TestDFDLExpressions3.scala    |    6 +-
 .../apache/daffodil/usertests/TestSepTests.scala   |    4 +-
 project/Dependencies.scala                         |    2 +-
 144 files changed, 1828 insertions(+), 1289 deletions(-)
 copy 
daffodil-test/src/test/resources/org/apache/daffodil/section06/namespaces/{test05sch6.dfdl.xsd
 => generalFormat01.dfdl.xsd} (73%)
 copy 
daffodil-test/src/test/resources/org/apache/daffodil/{extensions/repType/repType_01_a.dfdl.xsd
 => section06/namespaces/generalFormat02.dfdl.xsd} (70%)
 copy 
daffodil-test/src/test/resources/org/apache/daffodil/section06/namespaces/{test05sch6.dfdl.xsd
 => generalFormat03.dfdl.xsd} (68%)
 copy 
daffodil-test/src/test/resources/org/apache/daffodil/section06/namespaces/{test05sch6.dfdl.xsd
 => generalFormat04.dfdl.xsd} (72%)

Reply via email to