Skip to content

Commit

Permalink
deploy: bump docs to 2025.01.01 (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpro7 authored Jan 15, 2025
1 parent 7ac0273 commit 2748cd3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dsp/dsp-api
Submodule dsp-api updated 571 files
2 changes: 1 addition & 1 deletion dsp/dsp-app
2 changes: 1 addition & 1 deletion dsp/dsp-ingest
Submodule dsp-ingest updated 108 files
2 changes: 1 addition & 1 deletion dsp/dsp-tools
Submodule dsp-tools updated 39 files
+1 −1 .github/release-please-manifest.json
+35 −0 CHANGELOG.md
+43 −0 docs/developers/decision-log.md
+4 −2 justfile
+8 −1 mkdocs.yml
+2 −3 pyproject.toml
+19 −15 src/dsp_tools/commands/ingest_xmlupload/bulk_ingest_client.py
+92 −2 src/dsp_tools/commands/validate_data/constants.py
+83 −63 src/dsp_tools/commands/validate_data/deserialise_input.py
+25 −94 src/dsp_tools/commands/validate_data/make_data_rdf.py
+89 −52 src/dsp_tools/commands/validate_data/models/data_deserialised.py
+6 −9 src/dsp_tools/commands/validate_data/sparql/value_shacl.py
+5 −5 src/dsp_tools/commands/validate_data/validate_data.py
+1 −1 src/dsp_tools/resources/start-stack/docker-compose-validation.yml
+4 −4 src/dsp_tools/resources/start-stack/docker-compose.yml
+1 −1 src/dsp_tools/resources/start-stack/start-stack-config.yml
+90 −0 src/dsp_tools/xmllib/internal_helpers.py
+235 −123 src/dsp_tools/xmllib/models/dsp_base_resources.py
+47 −64 src/dsp_tools/xmllib/models/resource.py
+0 −251 src/dsp_tools/xmllib/models/values.py
+0 −0 src/dsp_tools/xmllib/serialise/__init__.py
+147 −0 src/dsp_tools/xmllib/serialise/serialise_values.py
+88 −92 test/e2e_validate_data/test_validate_data.py
+12 −3 test/integration/commands/xmlupload/test_resource_creation.py
+0 −1 test/unittests/commands/ingest_xmlupload/test_bulk_ingest_client.py
+121 −102 test/unittests/commands/validate_data/fixtures/data_deserialised.py
+19 −18 test/unittests/commands/validate_data/fixtures/validation_result.py
+136 −104 test/unittests/commands/validate_data/test_deserialise_input.py
+46 −106 test/unittests/commands/validate_data/test_make_data_rdf.py
+8 −8 test/unittests/commands/validate_data/test_reformat_validaton_result.py
+8 −2 test/unittests/commands/xmlupload/test_resource_create_client.py
+61 −5 test/unittests/xmllib/models/test_dsp_base_resources.py
+4 −4 test/unittests/xmllib/models/test_resource.py
+0 −293 test/unittests/xmllib/models/test_values.py
+0 −0 test/unittests/xmllib/serialise/__init__.py
+295 −0 test/unittests/xmllib/serialise/test_serialise_values.py
+ testdata/bitstreams/test with special chars àéèêëôû äöüß 0123456789 _-'()[]{}+=!<>| 漢が글ርبيةб中.png
+1 −1 testdata/xml-data/test-data-systematic.xml
+118 −131 uv.lock
10 changes: 5 additions & 5 deletions release.mk
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# for DSP, API, APP, Ingest, see https://github.com/dasch-swiss/ops-deploy/blob/main/versions/RELEASE.json
# for TOOLS, see https://github.com/dasch-swiss/dsp-tools/releases
# for META, see https://github.com/dasch-swiss/dsp-meta/tags (NB: tags start with 'dsp-meta-')
DSP := "2024.12.01"
API := "v31.1.0"
APP := "v11.22.4"
TOOLS := "v10.0.0"
INGEST := "v0.16.0"
DSP := "2025.01.01"
API := "v31.2.0"
APP := "v11.22.5"
TOOLS := "v10.1.1"
INGEST := "v0.17.0"
META := "dsp-meta-v2.3.3"

0 comments on commit 2748cd3

Please sign in to comment.