Skip to content

Commit

Permalink
Update submodule dependency
Browse files Browse the repository at this point in the history
To latest 4.X

Signed-off-by: Erik Jaegervall <erik.jaegervall@se.bosch.com>
  • Loading branch information
erikbosch committed Nov 14, 2023
1 parent c425873 commit 2284131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vss-tools
Submodule vss-tools updated 82 files
+17 −0 .github/actions/verify-headers/action.yml
+38 −0 .github/actions/verify-headers/verify-headers.py
+15 −34 .github/workflows/buildcheck.yml
+28 −0 .github/workflows/check-header.yml
+0 −13 .github/workflows/dco.yaml
+1 −0 .pre-commit-config.yaml
+13 −0 binary/Makefile
+9 −10 binary/README.md
+28 −119 binary/c_parser/cparserlib.c
+4 −5 binary/c_parser/cparserlib.h
+12 −58 binary/c_parser/testparser.c
+19 −160 binary/go_parser/datamodel/datamodel.go
+3 −0 binary/go_parser/go.mod
+13 −16 binary/go_parser/parserlib/parser.go
+11 −6 binary/go_parser/testparser.go
+5 −7 contrib/vspec2ttl/vspec2ttl.py
+80 −3 docs/vspec2x.md
+4 −1 docs/vspec2x_arch.md
+9 −0 setup.py
+14 −0 tests/binary/test.vspec
+66 −0 tests/binary/test_binary.py
+0 −2 tests/instances/resources/instance_exclude_node.vspec
+17 −0 tests/instances/resources/instance_extended_attribute.vspec
+36 −6 tests/instances/test_instances.py
+1 −0 tests/vspec/test_comment/expected.jsonschema
+1 −0 tests/vspec/test_datatypes/expected.jsonschema
+1 −1 tests/vspec/test_datatypes_error/test.vspec
+11 −0 tests/vspec/test_datatypes_error/test_datatype_branch.vspec
+16 −0 tests/vspec/test_datatypes_error/test_datatypes_error.py
+2 −1 tests/vspec/test_generic.py
+1 −0 tests/vspec/test_instances/expected.jsonschema
+10 −0 tests/vspec/test_no_expand/expected.csv
+62 −0 tests/vspec/test_no_expand/expected.fidl
+98 −0 tests/vspec/test_no_expand/expected.graphql
+47 −0 tests/vspec/test_no_expand/expected.idl
+84 −0 tests/vspec/test_no_expand/expected.json
+26 −0 tests/vspec/test_no_expand/expected.proto
+59 −0 tests/vspec/test_no_expand/expected.yaml
+632 −0 tests/vspec/test_no_expand/expected_overlay_expand.json
+114 −0 tests/vspec/test_no_expand/expected_overlay_no_expand.json
+34 −0 tests/vspec/test_no_expand/overlay.vspec
+53 −0 tests/vspec/test_no_expand/test.vspec
+89 −0 tests/vspec/test_no_expand/test_no_expand.py
+2 −2 tests/vspec/test_overlay_on_instance/test.vspec
+26 −0 tests/vspec/test_structs/VehicleDataTypesStructWithUnit.vspec
+0 −2 tests/vspec/test_structs/test-invalid-datatypes.vspec
+42 −0 tests/vspec/test_structs/test.idl
+0 −2 tests/vspec/test_structs/test.vspec
+0 −2 tests/vspec/test_structs/test2.vspec
+1 −1 tests/vspec/test_structs/test_commandline.py
+13 −6 tests/vspec/test_structs/test_data_type_parsing.py
+21 −0 tests/vspec/test_structs/test_with_unit_on_struct_signal.vspec
+5 −1 tests/vspec/test_units/test_units.py
+10 −0 tests/vspec/test_units/unit_on_branch.vspec
+6 −6 vspec/__init__.py
+8 −2 vspec/loggingconfig.py
+7 −0 vspec/model/__init__.py
+5 −4 vspec/model/constants.py
+5 −4 vspec/model/exceptions.py
+30 −18 vspec/model/vsstree.py
+7 −0 vspec/utils/__init__.py
+7 −5 vspec/utils/stringstyle.py
+7 −0 vspec/vssexporters/__init__.py
+11 −4 vspec/vssexporters/vss2binary.py
+24 −12 vspec/vssexporters/vss2csv.py
+112 −28 vspec/vssexporters/vss2ddsidl.py
+11 −4 vspec/vssexporters/vss2franca.py
+10 −4 vspec/vssexporters/vss2graphql.py
+17 −4 vspec/vssexporters/vss2json.py
+159 −0 vspec/vssexporters/vss2jsonschema.py
+11 −4 vspec/vssexporters/vss2protobuf.py
+17 −7 vspec/vssexporters/vss2yaml.py
+6 −5 vspec2binary.py
+6 −4 vspec2csv.py
+6 −4 vspec2ddsidl.py
+7 −5 vspec2franca.py
+6 −4 vspec2graphql.py
+6 −4 vspec2json.py
+19 −0 vspec2jsonschema.py
+8 −0 vspec2protobuf.py
+21 −9 vspec2x.py
+6 −4 vspec2yaml.py

0 comments on commit 2284131

Please sign in to comment.