Skip to content

Commit f5cf2dd

Browse files
committed
camunda version upgrade 7.22 -> 7.23
1 parent 3171144 commit f5cf2dd

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 ('1200', CURRENT_TIMESTAMP, '7.23.0');
20+
21+
alter table ACT_HI_COMMENT
22+
add column REV_ integer not null
23+
default 1;
24+
25+
alter table ACT_RU_EXECUTION add column PROC_DEF_KEY_ varchar(255);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<databaseChangeLog
3+
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
6+
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"
7+
logicalFilePath="db/db.camunda_engine.changelog-1.8.0.xml">
8+
9+
<changeSet author="camunda.org" id="db.camunda_engine.changelog-1.8.0">
10+
<sqlFile dbms="postgresql" encoding="utf8" path="bpe/db/camunda/postgres_engine_7.22_to_7.23.sql" />
11+
</changeSet>
12+
13+
</databaseChangeLog>

dsf-bpe/dsf-bpe-server/src/main/resources/bpe/db/db.changelog.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@
1919
<include file="bpe/db/db.camunda_engine.changelog-1.5.1.xml" />
2020

2121
<include file="bpe/db/db.camunda_engine.changelog-1.6.0.xml" />
22+
23+
<include file="bpe/db/db.camunda_engine.changelog-1.8.0.xml" />
2224
</databaseChangeLog>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<tyrus.version>2.2.0</tyrus.version>
2929
<spring.version>6.2.7</spring.version>
3030
<jackson.version>2.19.0</jackson.version>
31-
<camunda.version>7.22.0</camunda.version>
31+
<camunda.version>7.23.0</camunda.version>
3232
<hapi.fhir.version.v1>5.1.0</hapi.fhir.version.v1>
3333
<hapi.fhir.version.v2>8.2.0</hapi.fhir.version.v2>
3434
<hapi.fhir.org.hl7.version.v2>6.4.0</hapi.fhir.org.hl7.version.v2>

0 commit comments

Comments
 (0)