From 019a4a02d9c2d366aae5fb303abb1dab1fd7f397 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 30 Apr 2020 14:22:57 +0200 Subject: [PATCH 01/11] Update flyway-core to 6.4.1 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 3fc6ef99..3a4a5ad0 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -13,7 +13,7 @@ object Dependencies { val EmilVersion = "0.5.1" val FastparseVersion = "2.1.3" val FlexmarkVersion = "0.61.20" - val FlywayVersion = "6.4.0" + val FlywayVersion = "6.4.1" val Fs2Version = "2.3.0" val H2Version = "1.4.200" val Http4sVersion = "0.21.4" From 0a1b3fcf957324737a5f1bb87b523c445f0e6d6c Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Wed, 29 Apr 2020 22:44:05 +0200 Subject: [PATCH 02/11] Set list-id header for notification mails --- Changelog.md | 11 ++++++++++- build.sbt | 3 +++ .../main/scala/docspell/backend/ops/OMail.scala | 1 + .../scala/docspell/common/MailSendConfig.scala | 3 +++ modules/joex/src/main/resources/reference.conf | 13 +++++++++++++ .../joex/src/main/scala/docspell/joex/Config.scala | 5 +++-- .../src/main/scala/docspell/joex/JoexAppImpl.scala | 2 +- .../main/scala/docspell/joex/mail/EmilHeader.scala | 14 ++++++++++++++ .../docspell/joex/notify/NotifyDueItemsTask.scala | 13 +++++++++---- 9 files changed, 57 insertions(+), 8 deletions(-) create mode 100644 modules/common/src/main/scala/docspell/common/MailSendConfig.scala create mode 100644 modules/joex/src/main/scala/docspell/joex/mail/EmilHeader.scala diff --git a/Changelog.md b/Changelog.md index 7f6376d5..1ff637e5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,12 +9,21 @@ the periodic-task framework introduced in the last release. - Fix issues when converting HTML with unkown links. This especially happens with e-mails that contain images to attachments. -- Fix issues when importing e-mail files: +- Fix various issues when importing e-mail files, for example: - fixes encoding problems for mails without explicit transfer encoding - add meta info (from, to, subject) to the converted pdf document - clean html mails to remove unwanted content (like javascript) - Fix classpath issue with javax.mail vs jakarta.mail +### Configuration Changes + +The Joex component has config changes: + +- A new section `send-mail` containing a `List-Id` e-mail header to + use. Use an empty string (the default) to avoid setting such header. + This header is only applied for notification mails. + + ## v0.4.0 *Mar. 29, 2020* diff --git a/build.sbt b/build.sbt index e1c14aa2..04a89ead 100644 --- a/build.sbt +++ b/build.sbt @@ -141,6 +141,9 @@ val openapiScalaSettings = Seq( // --- Modules +// Base module, everything depends on this – including restapi and +// joexapi modules. This should aim to have least possible +// dependencies val common = project.in(file("modules/common")). disablePlugins(RevolverPlugin). settings(sharedSettings). diff --git a/modules/backend/src/main/scala/docspell/backend/ops/OMail.scala b/modules/backend/src/main/scala/docspell/backend/ops/OMail.scala index a51045da..c334964e 100644 --- a/modules/backend/src/main/scala/docspell/backend/ops/OMail.scala +++ b/modules/backend/src/main/scala/docspell/backend/ops/OMail.scala @@ -158,6 +158,7 @@ object OMail { val fields: Seq[Trans[F]] = Seq( From(sett.mailFrom), Tos(m.recipients), + XMailer.emil, Subject(m.subject), TextBody[F](m.body) ) diff --git a/modules/common/src/main/scala/docspell/common/MailSendConfig.scala b/modules/common/src/main/scala/docspell/common/MailSendConfig.scala new file mode 100644 index 00000000..ae05b496 --- /dev/null +++ b/modules/common/src/main/scala/docspell/common/MailSendConfig.scala @@ -0,0 +1,3 @@ +package docspell.common + +case class MailSendConfig(listId: String) diff --git a/modules/joex/src/main/resources/reference.conf b/modules/joex/src/main/resources/reference.conf index b05685a2..ff90f24f 100644 --- a/modules/joex/src/main/resources/reference.conf +++ b/modules/joex/src/main/resources/reference.conf @@ -31,6 +31,19 @@ docspell.joex { password = "" } + send-mail { + # This is used as the List-Id e-mail header when mails are sent + # from docspell to its users (example: for notification mails). It + # is not used when sending to external recipients. If it is empty, + # no such header is added. Using this header is often useful when + # filtering mails. + # + # It should be a string in angle brackets. See + # https://tools.ietf.org/html/rfc2919 for a formal specification + # of this header. + list-id = "" + } + # Configuration for the job scheduler. scheduler { diff --git a/modules/joex/src/main/scala/docspell/joex/Config.scala b/modules/joex/src/main/scala/docspell/joex/Config.scala index d72abcee..98280392 100644 --- a/modules/joex/src/main/scala/docspell/joex/Config.scala +++ b/modules/joex/src/main/scala/docspell/joex/Config.scala @@ -1,7 +1,7 @@ package docspell.joex import docspell.analysis.TextAnalysisConfig -import docspell.common.{Ident, LenientUri} +import docspell.common._ import docspell.joex.scheduler.{PeriodicSchedulerConfig, SchedulerConfig} import docspell.store.JdbcConfig import docspell.convert.ConvertConfig @@ -18,7 +18,8 @@ case class Config( houseKeeping: HouseKeepingConfig, extraction: ExtractConfig, textAnalysis: TextAnalysisConfig, - convert: ConvertConfig + convert: ConvertConfig, + sendMail: MailSendConfig ) object Config { diff --git a/modules/joex/src/main/scala/docspell/joex/JoexAppImpl.scala b/modules/joex/src/main/scala/docspell/joex/JoexAppImpl.scala index 9ab7e46e..e17c4b98 100644 --- a/modules/joex/src/main/scala/docspell/joex/JoexAppImpl.scala +++ b/modules/joex/src/main/scala/docspell/joex/JoexAppImpl.scala @@ -78,7 +78,7 @@ object JoexAppImpl { .withTask( JobTask.json( NotifyDueItemsArgs.taskName, - NotifyDueItemsTask[F](JavaMailEmil(blocker)), + NotifyDueItemsTask[F](cfg.sendMail, JavaMailEmil(blocker)), NotifyDueItemsTask.onCancel[F] ) ) diff --git a/modules/joex/src/main/scala/docspell/joex/mail/EmilHeader.scala b/modules/joex/src/main/scala/docspell/joex/mail/EmilHeader.scala new file mode 100644 index 00000000..9fbdb609 --- /dev/null +++ b/modules/joex/src/main/scala/docspell/joex/mail/EmilHeader.scala @@ -0,0 +1,14 @@ +package docspell.joex.mail + +import emil.builder._ + +object EmilHeader { + + // Remove with next emil version + def optionalHeader[F[_]](name: String, value: Option[String]): Trans[F] = + value.map(v => CustomHeader[F](name, v)).getOrElse(Trans[F](identity)) + + def listId[F[_]](listId: String): Trans[F] = + optionalHeader("List-Id", Option(listId).filter(_.nonEmpty)) + +} diff --git a/modules/joex/src/main/scala/docspell/joex/notify/NotifyDueItemsTask.scala b/modules/joex/src/main/scala/docspell/joex/notify/NotifyDueItemsTask.scala index 67ee2745..2f6eb196 100644 --- a/modules/joex/src/main/scala/docspell/joex/notify/NotifyDueItemsTask.scala +++ b/modules/joex/src/main/scala/docspell/joex/notify/NotifyDueItemsTask.scala @@ -12,6 +12,7 @@ import docspell.store.records._ import docspell.store.queries.QItem import docspell.joex.scheduler.{Context, Task} import cats.data.OptionT +import docspell.joex.mail.EmilHeader import docspell.joex.notify.MailContext import docspell.joex.notify.MailTemplate @@ -19,7 +20,7 @@ object NotifyDueItemsTask { val maxItems: Long = 7 type Args = NotifyDueItemsArgs - def apply[F[_]: Sync](emil: Emil[F]): Task[F, Args, Unit] = + def apply[F[_]: Sync](cfg: MailSendConfig, emil: Emil[F]): Task[F, Args, Unit] = Task { ctx => for { _ <- ctx.logger.info("Getting mail configuration") @@ -27,7 +28,7 @@ object NotifyDueItemsTask { _ <- ctx.logger.info( s"Searching for items due in ${ctx.args.remindDays} days…." ) - _ <- createMail(mailCfg, ctx) + _ <- createMail(cfg, mailCfg, ctx) .semiflatMap { mail => for { _ <- ctx.logger.info(s"Sending notification mail to ${ctx.args.recipients}") @@ -56,12 +57,13 @@ object NotifyDueItemsTask { } def createMail[F[_]: Sync]( + sendCfg: MailSendConfig, cfg: RUserEmail, ctx: Context[F, Args] ): OptionT[F, Mail[F]] = for { items <- OptionT.liftF(findItems(ctx)).filter(_.nonEmpty) - mail <- OptionT.liftF(makeMail(cfg, ctx.args, items)) + mail <- OptionT.liftF(makeMail(sendCfg, cfg, ctx.args, items)) } yield mail def findItems[F[_]: Sync](ctx: Context[F, Args]): F[Vector[QItem.ListItem]] = @@ -81,6 +83,7 @@ object NotifyDueItemsTask { } yield res def makeMail[F[_]: Sync]( + sendCfg: MailSendConfig, cfg: RUserEmail, args: Args, items: Vector[QItem.ListItem] @@ -99,7 +102,9 @@ object NotifyDueItemsTask { MailBuilder.build( From(cfg.mailFrom), Tos(recp), - Subject("Next due items"), + XMailer.emil, + Subject("[Docspell] Next due items"), + EmilHeader.listId(sendCfg.listId), MarkdownBody[F](md).withConfig( MarkdownConfig("body { font-size: 10pt; font-family: sans-serif; }") ) From 1d1df58cb9f8098737b08c650ed951ba5f1ac544 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Wed, 29 Apr 2020 22:59:07 +0200 Subject: [PATCH 03/11] Put edit notes icon in item action bar --- .../webapp/src/main/elm/Comp/ItemDetail.elm | 34 +++++++++---------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/modules/webapp/src/main/elm/Comp/ItemDetail.elm b/modules/webapp/src/main/elm/Comp/ItemDetail.elm index 03fb356b..c093e023 100644 --- a/modules/webapp/src/main/elm/Comp/ItemDetail.elm +++ b/modules/webapp/src/main/elm/Comp/ItemDetail.elm @@ -1033,7 +1033,7 @@ view inav model = [ ( "toggle item", True ) , ( "active", model.menuOpen ) ] - , title "Edit item" + , title "Edit Metadata" , onClick ToggleMenu , href "" ] @@ -1050,6 +1050,21 @@ view inav model = ] [ i [ class "mail outline icon" ] [] ] + , a + [ classList + [ ( "toggle item", True ) + , ( "active", isEditNotes model.notesField ) + ] + , if isEditNotes model.notesField then + title "Cancel editing" + + else + title "Edit Notes" + , onClick ToggleEditNotes + , href "#" + ] + [ i [ class "edit outline icon" ] [] + ] ] , renderMailForm model , div [ class "ui grid" ] @@ -1137,13 +1152,6 @@ renderNotes model = ] [ i [ class "eye slash icon" ] [] ] - , a - [ class "ui right corner label" - , onClick ToggleEditNotes - , href "#" - ] - [ i [ class "edit icon" ] [] - ] ] ] @@ -1545,16 +1553,6 @@ renderEditButtons model = [ i [ class "trash icon" ] [] , text "Delete" ] - , button - [ classList - [ ( "ui secondary right floated icon button", True ) - , ( "basic", model.notesField == HideNotes || model.notesField == ViewNotes ) - ] - , title "Toggle Notes Form" - , onClick ToggleEditNotes - ] - [ i [ class "edit outline icon" ] [] - ] ] From 485d9952778d37c79e3a98048450eb6b6fde9135 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 21:28:28 +0200 Subject: [PATCH 04/11] Add list-id option to nixos module --- nix/buildvm.sh | 2 +- nix/configuration-test.nix | 4 ++-- nix/module-joex.nix | 27 +++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/nix/buildvm.sh b/nix/buildvm.sh index 6c240738..a5363c96 100755 --- a/nix/buildvm.sh +++ b/nix/buildvm.sh @@ -7,4 +7,4 @@ fi nixos-rebuild build-vm \ -I nixos-config=./configuration-test.nix \ - -I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.09.tar.gz + -I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-20.03.tar.gz diff --git a/nix/configuration-test.nix b/nix/configuration-test.nix index 5697dc5c..71948b19 100644 --- a/nix/configuration-test.nix +++ b/nix/configuration-test.nix @@ -6,9 +6,9 @@ in imports = docspell.modules; i18n = { - consoleKeyMap = "neo"; defaultLocale = "en_US.UTF-8"; }; + console.keyMap = "neo"; users.users.root = { password = "root"; @@ -56,6 +56,6 @@ in firewall.allowedTCPPorts = [7880]; }; - system.stateVersion = "19.09"; + system.stateVersion = "20.03"; } diff --git a/nix/module-joex.nix b/nix/module-joex.nix index 1c81addc..928e53bc 100644 --- a/nix/module-joex.nix +++ b/nix/module-joex.nix @@ -21,6 +21,9 @@ let user = "sa"; password = ""; }; + send-mail = { + list-id = ""; + }; scheduler = { pool-size = 2; counting-scheme = "4,1"; @@ -202,6 +205,30 @@ in { description = "Database connection settings"; }; + send-mail = mkOption { + type = types.submodule({ + options = { + list-id = mkOption { + type = types.str; + default = defaults.send-mail.list-id; + description = '' + This is used as the List-Id e-mail header when mails are sent + from docspell to its users (example: for notification mails). It + is not used when sending to external recipients. If it is empty, + no such header is added. Using this header is often useful when + filtering mails. + + It should be a string in angle brackets. See + https://tools.ietf.org/html/rfc2919 for a formal specification + ''; + }; + + }; + }); + default = defaults.send-mail; + description = "Settings for sending mails."; + }; + scheduler = mkOption { type = types.submodule({ options = { From a9869e927ea8bc4c3aaae19f83b6db526b31a9a0 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 21:41:08 +0200 Subject: [PATCH 05/11] Add new feature to list --- modules/microsite/docs/features.md | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/microsite/docs/features.md b/modules/microsite/docs/features.md index 71104bff..52b7120d 100644 --- a/modules/microsite/docs/features.md +++ b/modules/microsite/docs/features.md @@ -20,6 +20,7 @@ permalink: features - Web-UI included - Create “share-urls” to upload files anonymously - Send documents via e-mail +- E-Mail notification for documents with due dates - REST server and document processing are separate applications which can be scaled-out independently - Everything stored in a SQL database: PostgreSQL, MariaDB or H2 From 96c5e99f19e14590550dbf74b561d3fd7e89115a Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 22:04:08 +0200 Subject: [PATCH 06/11] Fix scaladoc tag There is no scaladoc tag @implNote. --- .../src/main/scala/docspell/store/usertask/UserTaskStore.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/store/src/main/scala/docspell/store/usertask/UserTaskStore.scala b/modules/store/src/main/scala/docspell/store/usertask/UserTaskStore.scala index 7ee312d5..86f47d8f 100644 --- a/modules/store/src/main/scala/docspell/store/usertask/UserTaskStore.scala +++ b/modules/store/src/main/scala/docspell/store/usertask/UserTaskStore.scala @@ -18,7 +18,7 @@ import docspell.store.queries.QUserTask * `RPeriodicTask`. A user task is associated to a specific user (not * just the collective). * - * @implNote: The mapping is as follows: The collective is the task + * implNote: The mapping is as follows: The collective is the task * group. The submitter property contains the username. Once a task * is saved to the database, it can only be refernced uniquely by its * id. A user may submit multiple same tasks (with different From 0455078b2c45987e810b86eeef6a8bef0c4d51d6 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 22:01:22 +0200 Subject: [PATCH 07/11] Update changelog --- Changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 1ff637e5..bd5efb6c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,7 +2,7 @@ ## v0.5.0 -*Unknown* +*May 1st, 2020* - Allow to delete attachments of an item. - Allow to be notified via e-mail for items with a due date. This uses From e1117bcc9255118b3296089d1f4eec1f84bd88cd Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 21:35:08 +0200 Subject: [PATCH 08/11] Set version to 0.5.0 --- modules/joexapi/src/main/resources/joex-openapi.yml | 2 +- modules/restapi/src/main/resources/docspell-openapi.yml | 2 +- version.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/joexapi/src/main/resources/joex-openapi.yml b/modules/joexapi/src/main/resources/joex-openapi.yml index 96343e4c..60f4660d 100644 --- a/modules/joexapi/src/main/resources/joex-openapi.yml +++ b/modules/joexapi/src/main/resources/joex-openapi.yml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: Docspell JOEX - version: 0.5.0-SNAPSHOT + version: 0.5.0 servers: - url: /api/v1 diff --git a/modules/restapi/src/main/resources/docspell-openapi.yml b/modules/restapi/src/main/resources/docspell-openapi.yml index 13e55f73..f27dced1 100644 --- a/modules/restapi/src/main/resources/docspell-openapi.yml +++ b/modules/restapi/src/main/resources/docspell-openapi.yml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: Docspell - version: 0.5.0-SNAPSHOT + version: 0.5.0 description: | This is the remote API to Docspell, a personal document organizer. diff --git a/version.sbt b/version.sbt index 404aa03e..0d6d27c4 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.5.0-SNAPSHOT" +version in ThisBuild := "0.5.0" From 45ff865ed1bc8a5860ee4f7c3993683d6d096e2c Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 22:23:02 +0200 Subject: [PATCH 09/11] Update nix files to new version --- nix/pkg.nix | 2 +- nix/release.nix | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/nix/pkg.nix b/nix/pkg.nix index a021fff3..322c4896 100644 --- a/nix/pkg.nix +++ b/nix/pkg.nix @@ -10,7 +10,7 @@ in { server = stdenv.mkDerivation rec { name = "docspell-server-${cfg.version}"; - src = fetchzip cfg.server; + src = fetchzip cfg.server; buildInputs = [ jre8 ]; diff --git a/nix/release.nix b/nix/release.nix index c94601ac..9f45812b 100644 --- a/nix/release.nix +++ b/nix/release.nix @@ -1,5 +1,20 @@ rec { cfg = { + v0_5_0 = rec { + version = "0.5.0"; + server = { + url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-restserver-${version}.zip"; + sha256 = "1cr1x5ncl8prrp50mip17filyh2g1hq4ycjq4h4zmaj1nlvzrfy5"; + }; + joex = { + url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-joex-${version}.zip"; + sha256 = "1pgkay99h59c2hnxhibrg8dy2j5bmlkv1hi18snccf7d304xl6w6"; + }; + tools = { + url = "https://github.com/eikek/docspell/releases/download/v${version}/docspell-tools-${version}.zip"; + sha256 = "1bqm3bwg4n2llbsipp9ydmlkk3hv0x0jx482x4jb98x0fjyipzyy"; + }; + }; v0_4_0 = rec { version = "0.4.0"; server = { @@ -62,7 +77,7 @@ rec { }; }; pkg = v: import ./pkg.nix v; - currentPkg = pkg cfg.v0_4_0; + currentPkg = pkg cfg.v0_5_0; module-joex = ./module-joex.nix; module-restserver = ./module-server.nix; module-consumedir = ./module-consumedir.nix; From 8f46f6b57bd9422d439b5aa5906fdc717b7477c2 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 22:38:53 +0200 Subject: [PATCH 10/11] Update docker setup --- docker/build-images.sh | 11 +++++++++++ docker/docker-compose.yml | 4 ++-- docker/joex.dockerfile | 2 +- docker/joex/entrypoint.sh | 2 +- docker/restserver.dockerfile | 4 ++-- 5 files changed, 17 insertions(+), 6 deletions(-) create mode 100755 docker/build-images.sh diff --git a/docker/build-images.sh b/docker/build-images.sh new file mode 100755 index 00000000..f9da01cd --- /dev/null +++ b/docker/build-images.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +set -e + +# Update the versions in joex.dockerfile and restserver.dockerfile, +# docker-compose.yml and joex/entrypoint.sh; update versions here + +docker build -t eikek0/docspell:joex-0.5.0 -f joex.dockerfile . +docker build -t eikek0/docspell:restserver-0.5.0 -f restserver.dockerfile . + +# test with docker-compose up diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index bc3c208f..bb11c5f5 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.7' services: restserver: - image: eikek0/docspell:restserver-0.4.0 + image: eikek0/docspell:restserver-0.5.0 container_name: docspell-restserver command: /opt/docspell.conf ports: @@ -20,7 +20,7 @@ services: - POSTGRES_PASSWORD=dbpass - POSTGRES_DB=dbname joex: - image: eikek0/docspell:joex-0.4.0 + image: eikek0/docspell:joex-0.5.0 container_name: docspell-joex command: /opt/docspell.conf ports: diff --git a/docker/joex.dockerfile b/docker/joex.dockerfile index 58b86407..c08f3ade 100644 --- a/docker/joex.dockerfile +++ b/docker/joex.dockerfile @@ -24,7 +24,7 @@ RUN apk add --no-cache openjdk11-jre \ && ln -s /usr/bin/python3 /usr/bin/python \ && mkdir -p /opt \ && cd /opt \ - && curl -L -o docspell.zip https://github.com/eikek/docspell/releases/download/v0.4.0/docspell-joex-0.4.0.zip \ + && curl -L -o docspell.zip https://github.com/eikek/docspell/releases/download/v0.5.0/docspell-joex-0.5.0.zip \ && unzip docspell.zip \ && rm docspell.zip \ && apk del curl unzip diff --git a/docker/joex/entrypoint.sh b/docker/joex/entrypoint.sh index e27d1938..fca8fac6 100755 --- a/docker/joex/entrypoint.sh +++ b/docker/joex/entrypoint.sh @@ -3,4 +3,4 @@ echo "Starting unoconv listener" unoconv -l & -/opt/docspell-joex-0.4.0/bin/docspell-joex "$@" +/opt/docspell-joex-0.5.0/bin/docspell-joex "$@" diff --git a/docker/restserver.dockerfile b/docker/restserver.dockerfile index a5262910..ee0d7770 100644 --- a/docker/restserver.dockerfile +++ b/docker/restserver.dockerfile @@ -6,11 +6,11 @@ RUN apk add --no-cache openjdk11-jre unzip curl bash RUN mkdir -p /opt \ && cd /opt \ - && curl -L -o docspell.zip https://github.com/eikek/docspell/releases/download/v0.4.0/docspell-restserver-0.4.0.zip \ + && curl -L -o docspell.zip https://github.com/eikek/docspell/releases/download/v0.5.0/docspell-restserver-0.5.0.zip \ && unzip docspell.zip \ && rm docspell.zip \ && apk del unzip curl EXPOSE 7880 -ENTRYPOINT ["/opt/docspell-restserver-0.4.0/bin/docspell-restserver"] +ENTRYPOINT ["/opt/docspell-restserver-0.5.0/bin/docspell-restserver"] From 9ec75cf85eb12e97f56ba4de500573def03ad625 Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 30 Apr 2020 22:39:02 +0200 Subject: [PATCH 11/11] Set next version to 0.6.0-SNAPSHOT --- modules/joexapi/src/main/resources/joex-openapi.yml | 2 +- modules/restapi/src/main/resources/docspell-openapi.yml | 2 +- version.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/joexapi/src/main/resources/joex-openapi.yml b/modules/joexapi/src/main/resources/joex-openapi.yml index 60f4660d..98f38cd2 100644 --- a/modules/joexapi/src/main/resources/joex-openapi.yml +++ b/modules/joexapi/src/main/resources/joex-openapi.yml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: Docspell JOEX - version: 0.5.0 + version: 0.6.0-SNAPSHOT servers: - url: /api/v1 diff --git a/modules/restapi/src/main/resources/docspell-openapi.yml b/modules/restapi/src/main/resources/docspell-openapi.yml index f27dced1..61ad220a 100644 --- a/modules/restapi/src/main/resources/docspell-openapi.yml +++ b/modules/restapi/src/main/resources/docspell-openapi.yml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: Docspell - version: 0.5.0 + version: 0.6.0-SNAPSHOT description: | This is the remote API to Docspell, a personal document organizer. diff --git a/version.sbt b/version.sbt index 0d6d27c4..3f478e0c 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.5.0" +version in ThisBuild := "0.6.0-SNAPSHOT"