Skip to content

Commit 20d57e7

Browse files
renovate[bot]gjong
andauthored
Update dependency org.camunda.bpm:camunda-engine to v7.21.0 (#33)
* Update dependency org.camunda.bpm:camunda-engine to v7.21.0 * Fix build issue after upgrade to latest version of camunda. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gerben Jongerius <g.jongerius@jong-soft.com>
1 parent d00d8e7 commit 20d57e7

File tree

3 files changed

+55
-1
lines changed

3 files changed

+55
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
--
2+
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
3+
-- under one or more contributor license agreements. See the NOTICE file
4+
-- distributed with this work for additional information regarding copyright
5+
-- ownership. Camunda licenses this file to you under the Apache License,
6+
-- Version 2.0; you may not use this file except in compliance with the License.
7+
-- You may obtain a copy of the License at
8+
--
9+
-- http://www.apache.org/licenses/LICENSE-2.0
10+
--
11+
-- Unless required by applicable law or agreed to in writing, software
12+
-- distributed under the License is distributed on an "AS IS" BASIS,
13+
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
-- See the License for the specific language governing permissions and
15+
-- limitations under the License.
16+
--
17+
18+
insert into ACT_GE_SCHEMA_LOG
19+
values ('1000', CURRENT_TIMESTAMP, '7.21.0');
20+
21+
alter table ACT_RU_EXT_TASK
22+
add column CREATE_TIME_ timestamp;
23+
24+
alter table ACT_RU_JOB
25+
add column ROOT_PROC_INST_ID_ varchar(64);
26+
27+
create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
--
2+
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
3+
-- under one or more contributor license agreements. See the NOTICE file
4+
-- distributed with this work for additional information regarding copyright
5+
-- ownership. Camunda licenses this file to you under the Apache License,
6+
-- Version 2.0; you may not use this file except in compliance with the License.
7+
-- You may obtain a copy of the License at
8+
--
9+
-- http://www.apache.org/licenses/LICENSE-2.0
10+
--
11+
-- Unless required by applicable law or agreed to in writing, software
12+
-- distributed under the License is distributed on an "AS IS" BASIS,
13+
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
-- See the License for the specific language governing permissions and
15+
-- limitations under the License.
16+
--
17+
18+
insert into ACT_GE_SCHEMA_LOG
19+
values ('1000', CURRENT_TIMESTAMP, '7.21.0');
20+
21+
alter table ACT_RU_EXT_TASK
22+
add column CREATE_TIME_ datetime(3);
23+
24+
alter table ACT_RU_JOB
25+
add column ROOT_PROC_INST_ID_ varchar(64);
26+
27+
create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencyResolutionManagement {
2424
library("lang", "com.jongsoft.lang", "language").version("1.1.6")
2525
library("lang.xml", "com.jongsoft.lang", "language-fasterxml").version("1.1.0")
2626
library("otp", "dev.samstevens.totp", "totp").version("1.7.1")
27-
library("camunda", "org.camunda.bpm", "camunda-engine").version("7.20.0")
27+
library("camunda", "org.camunda.bpm", "camunda-engine").version("7.21.0")
2828
library("bouncy", "org.bouncycastle", "bcprov-jdk18on").version("1.78.1")
2929
library("bcpkix", "org.bouncycastle", "bcpkix-jdk18on").version("1.78.1")
3030
library("bcrypt", "at.favre.lib", "bcrypt").version("0.10.2")

0 commit comments

Comments
 (0)