Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Downstream code should now depend on the diagram services module for that bean.

=== Dependency update

- Downgrade liquibase from 5.0.3 to 4.33.0.
Liquibase 5 has switched from the Apache License v2.0 to the Functional Source License.
As a result, future versions of Liquibase cannot be used directly in SysON (downstream projects can do anything they want of course) since the FSL is not an approved license for third party dependencies in the Eclipse Foundation.
From our tests, the downgrade to 4.33.0 does not break anything in SysON, and we will continue to monitor the situation for future versions of Liquibase.
In any case, it is strongly recommended to back up your data before proceeding with any migration.

=== Bug fixes

- https://github.com/eclipse-syson/syson/issues/2359[#2359] [diagrams] Fix `Comment` graphical nodes so changing their background color no longer changes their border color.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ If you're upgrading from an older version of {product} to the latest release, th

In any case, it is strongly recommended to back up your data before proceeding with any migration.

== 2026.9.0

Liquibase 5 has switched from the Apache License v2.0 to the Functional Source License.
As a result, future versions of Liquibase cannot be used directly in SysON (downstream projects can do anything they want of course) since the FSL is not an approved license for third party dependencies in the Eclipse Foundation.
So, SysON 2026.9.0 has downgraded Liquibase from 5.0.3 to 4.33.0.
From our tests, the downgrade to 4.33.0 does not break anything in SysON, and we will continue to monitor the situation for future versions of Liquibase.

But in any case, please download all your models/projects and back up your database before upgrading to 2026.7.0.

Also please remember only YEAR.MONTH.0 versions are stable and suitable for production deployments.
Other versions, such as intermediate releases, are intended solely for testing purposes.

== 2026.7.0

Adopting the 2026.7.0 version doesn't require a migration process.
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,11 @@
<artifactId>syson-tree-services</artifactId>
<version>${syson.version}</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>4.33.0</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
Loading