Skip to content

Commit

Permalink
IKASAN-2318 ikasan upgrade sorting out liquibase upgrade. Note bug on…
Browse files Browse the repository at this point in the history
… 4.25.0 of liquibase. liquibase/liquibase#5271. Using liquibase 4.24.0.
  • Loading branch information
mick-stewart73 committed Jan 12, 2024
1 parent b311e7d commit e31c89d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<!-- We need to set the HarvestedDateTime > 0 if we have already been harvested. -->
<sql>
UPDATE ErrorOccurrence SET HarvestedDateTime = 1
WHERE Harvested = 1
WHERE Harvested = true
</sql>

</changeSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<!-- We need to set the HarvestedDateTime > 0 if we have already been harvested. -->
<sql>
UPDATE ExclusionEvent SET HarvestedDateTime = 1
WHERE Harvested = 1
WHERE Harvested = true
</sql>

</changeSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<!-- We need to set the HarvestedDateTime > 0 if we have already been harvested. -->
<sql>
UPDATE FlowInvocationMetric SET HarvestedDateTime = 1
WHERE Harvested = 1
WHERE Harvested = true
</sql>

</changeSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<!-- We need to set the HarvestedDateTime > 0 if we have already been harvested. -->
<sql>
UPDATE IkasanWiretap SET HarvestedDateTime = 1
WHERE Harvested = 1
WHERE Harvested = true
</sql>

</changeSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<!-- We need to set the HarvestedDateTime > 0 if we have already been harvested. -->
<sql>
UPDATE ReplayEvent SET HarvestedDateTime = 1
WHERE Harvested = 1
WHERE Harvested = true
</sql>

</changeSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<!-- We need to set the HarvestedDateTime > 0 if we have already been harvested. -->
<sql>
UPDATE IkasanWiretap SET HarvestedDateTime = 1
WHERE Harvested = 1
WHERE Harvested = true
</sql>

</changeSet>
Expand Down
2 changes: 1 addition & 1 deletion ikasaneip/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@
<version.com.unboundid>6.0.9</version.com.unboundid>
<version.org.quartz-scheduler>2.2.3</version.org.quartz-scheduler>
<version.com.h2database>2.1.214</version.com.h2database>
<version.org.liquibase>4.25.0</version.org.liquibase>
<version.org.liquibase>4.24.0</version.org.liquibase>
<version.org.yaml.snakeyaml>1.28</version.org.yaml.snakeyaml>
<version.org.subethamail>1.2</version.org.subethamail>
<version.org.eclipse.jetty>11.0.18</version.org.eclipse.jetty>
Expand Down

0 comments on commit e31c89d

Please sign in to comment.