Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhwaniartefact committed Jan 18, 2024
1 parent af80678 commit 4347f29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack/submodules/archivematica-storage-service
Submodule archivematica-storage-service updated 90 files
+19 −6 .github/workflows/test.yml
+10 −0 .markdownlint.jsonc
+29 −11 .pre-commit-config.yaml
+5 −3 CHANGELOG.md
+3 −3 CODE_OF_CONDUCT.md
+140 −69 CONTRIBUTING.md
+55 −26 README.md
+22 −17 SECURITY.md
+385 −291 install/README.md
+38 −42 integration/test_integration.py
+0 −1 requirements-dev.in
+67 −76 requirements-dev.txt
+51 −50 requirements.txt
+21 −0 storage_service/administration/tests/test_views.py
+2 −1 storage_service/administration/views.py
+13 −13 storage_service/common/premis.py
+19 −7 storage_service/common/signals.py
+4 −4 storage_service/common/utils.py
+3 −1 storage_service/locations/api/resources.py
+1 −1 storage_service/locations/api/sword/helpers.py
+5 −0 storage_service/locations/constants.py
+1 −1 storage_service/locations/datatable_utils.py
+0 −16 storage_service/locations/fixtures/vcr_cassettes/api_download_package_arkivum_error.yaml
+0 −84 storage_service/locations/fixtures/vcr_cassettes/api_download_package_arkivum_not_available.yaml
+0 −77 storage_service/locations/fixtures/vcr_cassettes/arkivum_delete.yaml
+0 −35 storage_service/locations/fixtures/vcr_cassettes/arkivum_post_move_from_ss.yaml
+0 −47 storage_service/locations/fixtures/vcr_cassettes/arkivum_update_package_status.yaml
+0 −71 storage_service/locations/fixtures/vcr_cassettes/arkivum_update_package_status_uncompressed.yaml
+0 −109 storage_service/locations/fixtures/vcr_cassettes/dataverse_browse_all.yaml
+0 −666 storage_service/locations/fixtures/vcr_cassettes/dataverse_browse_filter.yaml
+0 −74 storage_service/locations/fixtures/vcr_cassettes/dataverse_move_to.yaml
+0 −63 storage_service/locations/fixtures/vcr_cassettes/dspace_get_sword_connection.yaml
+0 −320 storage_service/locations/fixtures/vcr_cassettes/dspace_move_from_ss.yaml
+0 −106 storage_service/locations/fixtures/vcr_cassettes/duracloud_browse.yaml
+0 −52 storage_service/locations/fixtures/vcr_cassettes/duracloud_browse_split_files.yaml
+0 −351 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_chunked_file.yaml
+0 −84 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_file.yaml
+0 −251 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_folder.yaml
+0 −84 storage_service/locations/fixtures/vcr_cassettes/duracloud_delete_percent_encoding.yaml
+0 −576 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_chunked.yaml
+0 −501 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_chunked_resume.yaml
+0 −92 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_file.yaml
+0 −182 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_folder.yaml
+0 −92 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_from_ss_percent_encoding.yaml
+0 −2,890 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_chunked_file.yaml
+0 −30 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_file.yaml
+0 −164 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_folder.yaml
+0 −164 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_folder_globbing.yaml
+0 −30 storage_service/locations/fixtures/vcr_cassettes/duracloud_move_to_ss_percent_encoding.yaml
+0 −29 storage_service/locations/fixtures/vcr_cassettes/package_fixity_amber_arkivum.yaml
+0 −23 storage_service/locations/fixtures/vcr_cassettes/package_fixity_failure_arkivum.yaml
+0 −16 storage_service/locations/fixtures/vcr_cassettes/package_fixity_scheduled_arkivum.yaml
+0 −29 storage_service/locations/fixtures/vcr_cassettes/package_fixity_success_arkivum.yaml
+0 −24 storage_service/locations/fixtures/vcr_cassettes/pipeline_approve_transfer.yaml
+0 −23 storage_service/locations/fixtures/vcr_cassettes/pipeline_list_unapproved_transfers.yaml
+0 −76 storage_service/locations/fixtures/vcr_cassettes/swift_browse.yaml
+0 −92 storage_service/locations/fixtures/vcr_cassettes/swift_browse_unicode.yaml
+0 −124 storage_service/locations/fixtures/vcr_cassettes/swift_delete.yaml
+0 −168 storage_service/locations/fixtures/vcr_cassettes/swift_delete_folder.yaml
+0 −131 storage_service/locations/fixtures/vcr_cassettes/swift_move_from.yaml
+0 −76 storage_service/locations/fixtures/vcr_cassettes/swift_move_to.yaml
+0 −76 storage_service/locations/fixtures/vcr_cassettes/swift_move_to_bad_etag.yaml
+0 −148 storage_service/locations/fixtures/vcr_cassettes/swift_move_to_folder.yaml
+0 −116 storage_service/locations/fixtures/vcr_cassettes/swift_move_to_not_exist.yaml
+0 −25 storage_service/locations/fixtures/vcr_cassettes/test_lockssomatic_bad_url.yaml
+6 −0 storage_service/locations/forms.py
+89 −0 storage_service/locations/migrations/0036_archipelago.py
+1 −1 storage_service/locations/migrations/0037_django42.py
+1 −0 storage_service/locations/models/__init__.py
+259 −0 storage_service/locations/models/archipelago.py
+1 −1 storage_service/locations/models/arkivum.py
+4 −4 storage_service/locations/models/duracloud.py
+1 −1 storage_service/locations/models/lockssomatic.py
+1 −1 storage_service/locations/models/s3.py
+17 −38 storage_service/locations/models/space.py
+1 −1 storage_service/locations/models/swift.py
+44 −23 storage_service/locations/tests/test_api.py
+360 −0 storage_service/locations/tests/test_archipelago.py
+115 −65 storage_service/locations/tests/test_arkivum.py
+320 −14 storage_service/locations/tests/test_dataverse.py
+72 −27 storage_service/locations/tests/test_dspace.py
+592 −574 storage_service/locations/tests/test_duracloud.py
+3 −9 storage_service/locations/tests/test_lockssomatic.py
+76 −19 storage_service/locations/tests/test_package.py
+34 −14 storage_service/locations/tests/test_pipeline.py
+266 −28 storage_service/locations/tests/test_swift.py
+1 −1 storage_service/storage_service/__init__.py
+9 −5 storage_service/storage_service/settings/base.py
+1 −1 storage_service/storage_service/wsgi.py
+14 −4 tox.ini

0 comments on commit 4347f29

Please sign in to comment.