From a2f6f7bb419ca914cc03ec942d098f71286b8824 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:28:41 +0000 Subject: [PATCH 1/2] chore(deps): bump org.camunda.bpm:camunda-bpm-assert Bumps org.camunda.bpm:camunda-bpm-assert from 7.21.0 to 7.22.0. --- updated-dependencies: - dependency-name: org.camunda.bpm:camunda-bpm-assert dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- integration/camunda-bpm/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/camunda-bpm/pom.xml b/integration/camunda-bpm/pom.xml index a5418f83c..97fb5b240 100644 --- a/integration/camunda-bpm/pom.xml +++ b/integration/camunda-bpm/pom.xml @@ -15,7 +15,7 @@ pom - 7.21.0 + 7.22.0 ${camunda-bpm.version} 7.21.0 From 3a4efa5c4ff7d64c1c3ceac0bcb7f7a73d702bcb Mon Sep 17 00:00:00 2001 From: Simon Zambrovski Date: Fri, 11 Oct 2024 10:16:42 +0200 Subject: [PATCH 2/2] upgrade schema to 7.22 --- .../V0_0_3__postgres_engine_7.21_to_7.22.sql | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 integration/camunda-bpm/taskpool-collector/src/test/resources/db/migrations/h2-postgresql/V0_0_3__postgres_engine_7.21_to_7.22.sql diff --git a/integration/camunda-bpm/taskpool-collector/src/test/resources/db/migrations/h2-postgresql/V0_0_3__postgres_engine_7.21_to_7.22.sql b/integration/camunda-bpm/taskpool-collector/src/test/resources/db/migrations/h2-postgresql/V0_0_3__postgres_engine_7.21_to_7.22.sql new file mode 100644 index 000000000..55583c6f4 --- /dev/null +++ b/integration/camunda-bpm/taskpool-collector/src/test/resources/db/migrations/h2-postgresql/V0_0_3__postgres_engine_7.21_to_7.22.sql @@ -0,0 +1,29 @@ +-- +-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH +-- under one or more contributor license agreements. See the NOTICE file +-- distributed with this work for additional information regarding copyright +-- ownership. Camunda licenses this file to you under the Apache License, +-- Version 2.0; you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- + +insert into ACT_GE_SCHEMA_LOG +values ('1100', CURRENT_TIMESTAMP, '7.22.0'); + +alter table ACT_RU_TASK add column TASK_STATE_ varchar(64); + +alter table ACT_HI_TASKINST add column TASK_STATE_ varchar(64); + +alter table ACT_RU_JOB add column BATCH_ID_ varchar(64); +alter table ACT_HI_JOB_LOG add column BATCH_ID_ varchar(64); + +alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ varchar(64); +create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);