Skip to content
Merged
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: 3 additions & 3 deletions org.knime.features.python3.scripting/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.knime.features.python3.scripting"
label="KNIME Python Integration"
version="5.11.0.qualifier"
version="5.12.0.qualifier"
provider-name="KNIME AG, Zurich, Switzerland">

<description>
Expand Down Expand Up @@ -728,8 +728,8 @@ propagated with or for interoperation with KNIME.
</license>

<requires>
<import feature="org.knime.features.python2" version="5.11.0" match="greaterOrEqual"/>
<import feature="org.knime.features.conda" version="5.11.0" match="greaterOrEqual"/>
<import feature="org.knime.features.python2" version="5.12.0" match="greaterOrEqual"/>
<import feature="org.knime.features.conda" version="5.12.0" match="greaterOrEqual"/>
<import feature="org.knime.features.core.columnar" version="5.11.0" match="greaterOrEqual"/>
<import feature="org.knime.features.pythonscripting" version="5.11.0" match="greaterOrEqual"/>
Comment on lines 733 to 734
Copy link

Copilot AI Feb 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The feature dependencies org.knime.features.core.columnar and org.knime.features.pythonscripting remain at version 5.11.0 while org.knime.features.python2 and org.knime.features.conda were updated to 5.12.0 in the same requires block. This inconsistency should be verified - either all dependencies should be updated together for AP 5.12.0, or there should be a documented reason why these specific dependencies remain at 5.11.0. Since the PR is titled "Incremental version bumps", this may be intentional, but the mixed versions within a single dependency block could lead to confusion or integration issues.

Suggested change
<import feature="org.knime.features.core.columnar" version="5.11.0" match="greaterOrEqual"/>
<import feature="org.knime.features.pythonscripting" version="5.11.0" match="greaterOrEqual"/>
<import feature="org.knime.features.core.columnar" version="5.12.0" match="greaterOrEqual"/>
<import feature="org.knime.features.pythonscripting" version="5.12.0" match="greaterOrEqual"/>

Copilot uses AI. Check for mistakes.
</requires>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<version>${revision}${changelist}</version>
<packaging>pom</packaging>
<properties>
<revision>5.11.0</revision>
<revision>5.12.0</revision>
<changelist>-SNAPSHOT</changelist>
<feature-branch-extension.branchListProperty>git.branch</feature-branch-extension.branchListProperty>
<feature-branch-extension.appendArtifactoryProperties>false</feature-branch-extension.appendArtifactoryProperties>
Expand Down
Loading