Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Nov 25, 2024
1 parent aac15ac commit c4c95e4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dsp/dsp-api
Submodule dsp-api updated 126 files
2 changes: 1 addition & 1 deletion dsp/dsp-app
2 changes: 1 addition & 1 deletion dsp/dsp-ingest
Submodule dsp-ingest updated 36 files
+1 −1 .github/workflows/ci.yml
+53 −0 CHANGELOG.md
+12 −12 build.sbt
+1 −0 docker-compose.yml
+2 −1 docs/service-configuration.md
+5 −1 justfile
+1 −1 project/build.properties
+2 −2 project/plugins.sbt
+2 −0 src/main/resources/application.conf
+4 −8 src/main/scala/swiss/dasch/FetchAssetPermissions.scala
+2 −2 src/main/scala/swiss/dasch/api/AuthService.scala
+2 −8 src/main/scala/swiss/dasch/api/BaseEndpoints.scala
+1 −12 src/main/scala/swiss/dasch/api/MaintenanceEndpoints.scala
+0 −19 src/main/scala/swiss/dasch/api/MaintenanceEndpointsHandler.scala
+14 −19 src/main/scala/swiss/dasch/api/ProjectsEndpoints.scala
+18 −14 src/main/scala/swiss/dasch/api/ProjectsEndpointsHandler.scala
+1 −0 src/main/scala/swiss/dasch/config/Configuration.scala
+2 −0 src/main/scala/swiss/dasch/domain/AssetFilename.scala
+2 −3 src/main/scala/swiss/dasch/domain/AuthScope.scala
+5 −6 src/main/scala/swiss/dasch/domain/BulkIngestService.scala
+3 −98 src/main/scala/swiss/dasch/domain/MaintenanceActions.scala
+1 −1 src/main/scala/swiss/dasch/domain/MimeTypeGuesser.scala
+7 −0 src/main/scala/swiss/dasch/domain/PathOps.scala
+1 −1 src/main/scala/swiss/dasch/domain/ProjectService.scala
+4 −3 src/main/scala/swiss/dasch/domain/SupportedFileType.scala
+20 −11 src/main/scala/swiss/dasch/infrastructure/Logger.scala
+1 −1 src/test/scala/swiss/dasch/FetchAssetPermissionsMock.scala
+2 −5 src/test/scala/swiss/dasch/api/AuthServiceLiveSpec.scala
+3 −4 src/test/scala/swiss/dasch/api/AuthorizationHandlerSpec.scala
+2 −84 src/test/scala/swiss/dasch/api/MaintenanceEndpointsSpec.scala
+11 −26 src/test/scala/swiss/dasch/api/ProjectsEndpointSpec.scala
+1 −2 src/test/scala/swiss/dasch/api/SpecJwtTokens.scala
+2 −2 src/test/scala/swiss/dasch/domain/BulkIngestServiceSpec.scala
+7 −6 src/test/scala/swiss/dasch/domain/MimeTypeGuesserSpec.scala
+1 −1 src/test/scala/swiss/dasch/domain/SupportedFileTypeSpec.scala
+0 −1 src/test/scala/swiss/dasch/infrastructure/AggregatedHealthSpec.scala
14 changes: 7 additions & 7 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/releases (NB: tags start with 'dsp-meta-')
DSP := "2024.09.01"
API := "v30.19.0"
APP := "v11.20.4"
TOOLS := "b3960a4ed6af60114927c71ff319cbac1798cc2a"
INGEST := "v0.13.0"
META := "dsp-meta-v2.3.0"
# for META, see https://github.com/dasch-swiss/dsp-meta/tags (NB: tags start with 'dsp-meta-')
DSP := "2024.11.01"
API := "v30.21.0"
APP := "v11.22.1"
TOOLS := "v9.2.0"
INGEST := "v0.14.1"
META := "dsp-meta-v2.3.2"

0 comments on commit c4c95e4

Please sign in to comment.