Skip to content

Commit

Permalink
bump to 2023.10.01
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Oct 5, 2023
1 parent 08d2676 commit fd6950a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dsp/dsp-api
Submodule dsp-api updated 149 files
2 changes: 1 addition & 1 deletion dsp/dsp-app
2 changes: 1 addition & 1 deletion dsp/dsp-tools
Submodule dsp-tools updated 54 files
+0 −14 .github/pull_request_template.md
+3 −0 .github/workflows/tests-on-push.yml
+8 −3 .pre-commit-config.yaml
+31 −0 CHANGELOG.md
+2 −6 docs/file-formats/xml-data-file.md
+1 −1 docs/internal/fast-xmlupload.md
+105 −200 poetry.lock
+7 −1 pyproject.toml
+3 −3 src/dsp_tools/cli.py
+1 −1 src/dsp_tools/fast_xmlupload/process_files.py
+1 −1 src/dsp_tools/fast_xmlupload/upload_files.py
+3 −3 src/dsp_tools/fast_xmlupload/upload_xml.py
+1 −1 src/dsp_tools/models/connection.py
+9 −2 src/dsp_tools/models/value.py
+1 −1 src/dsp_tools/models/xmlresource.py
+5 −5 src/dsp_tools/resources/start-stack/docker-compose.yml
+1 −1 src/dsp_tools/resources/start-stack/start-stack-config.yml
+2 −0 src/dsp_tools/utils/create_logger.py
+1 −1 src/dsp_tools/utils/excel2json/resources.py
+3 −3 src/dsp_tools/utils/id2iri.py
+41 −11 src/dsp_tools/utils/project_create.py
+1 −1 src/dsp_tools/utils/project_create_lists.py
+1 −1 src/dsp_tools/utils/project_get.py
+2 −2 src/dsp_tools/utils/rosetta.py
+5 −5 src/dsp_tools/utils/shared.py
+1 −1 src/dsp_tools/utils/stack_handling.py
+0 −1,197 src/dsp_tools/utils/xml_upload.py
+105 −0 src/dsp_tools/utils/xml_utils.py
+0 −0 src/dsp_tools/utils/xmlupload/__init__.py
+61 −0 src/dsp_tools/utils/xmlupload/ark2iri.py
+212 −0 src/dsp_tools/utils/xmlupload/read_validate_xml_file.py
+117 −0 src/dsp_tools/utils/xmlupload/resource_multimedia.py
+163 −0 src/dsp_tools/utils/xmlupload/stash_circular_references.py
+211 −0 src/dsp_tools/utils/xmlupload/upload_stashed_resptr_props.py
+383 −0 src/dsp_tools/utils/xmlupload/upload_stashed_xml_texts.py
+119 −0 src/dsp_tools/utils/xmlupload/write_diagnostic_info.py
+572 −0 src/dsp_tools/utils/xmlupload/xmlupload.py
+2 −2 test/e2e/test_00A1_import_scripts.py
+1 −1 test/e2e/test_cli.py
+3 −3 test/e2e/test_xmlupload.py
+0 −0 test/unittests/test_xmlupload/__init__.py
+86 −0 test/unittests/test_xmlupload/test_upload_stashed_xml_texts.py
+17 −16 test/unittests/test_xmlupload/test_xmlupload.py
+0 −0 test/unittests/test_xmlupload/test_xmlvalue.py
+1 −1 testdata/invalid-testdata/json-project/circular-ontology.json
+1 −1 testdata/invalid-testdata/json-project/hlist-refers-nonexisting-list.json
+1 −1 testdata/invalid-testdata/json-project/invalid-super-property.json
+1 −1 testdata/invalid-testdata/json-project/nonexisting-cardinality.json
+1 −1 testdata/invalid-testdata/json-project/nonexisting-super-property.json
+1 −1 testdata/invalid-testdata/json-project/nonexisting-super-resource.json
+1 −1 testdata/json-project/test-project-fast-xmlupload.json
+1 −1 testdata/json-project/test-project-hlist-refers-label.json
+3 −3 testdata/json-project/test-project-systematic.json
+1 −0 testdata/xml-data/test-data-systematic.xml
8 changes: 4 additions & 4 deletions release.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# for DSP, API, APP, see https://github.com/dasch-swiss/ops-deploy/blob/main/roles/dsp-deploy/files/RELEASE.json
# for TOOLS, see https://github.com/dasch-swiss/dsp-tools/releases
DSP := "2023.09.02"
API := "v30.2.1"
APP := "v10.23.4"
TOOLS := "v5.0.1"
DSP := "2023.10.01"
API := "v30.3.0"
APP := "v10.23.7"
TOOLS := "v5.0.2"

0 comments on commit fd6950a

Please sign in to comment.