-
Notifications
You must be signed in to change notification settings - Fork 38
DEVOPS-3809: Incremental version bumps for AP 5.12.0 #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,22 +2,22 @@ Manifest-Version: 1.0 | |||||
| Bundle-ManifestVersion: 2 | ||||||
| Bundle-Name: KNIME Python - Data Transfer using Apache Arrow | ||||||
| Bundle-SymbolicName: org.knime.python3.arrow;singleton:=true | ||||||
| Bundle-Version: 5.11.0.qualifier | ||||||
| Bundle-Version: 5.12.0.qualifier | ||||||
| Bundle-ClassPath: knime-python3-arrow.jar | ||||||
| Bundle-Vendor: KNIME AG, Zurich, Switzerland | ||||||
| Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||||||
| Bundle-ActivationPolicy: lazy | ||||||
| Require-Bundle: org.knime.python3;bundle-version="[5.11.0,6.0.0)", | ||||||
| org.knime.core.table;bundle-version="[5.9.0,6.0.0)", | ||||||
| org.knime.core.columnar;bundle-version="[5.11.0,6.0.0)", | ||||||
|
||||||
| org.knime.core.columnar;bundle-version="[5.11.0,6.0.0)", | |
| org.knime.core.columnar;bundle-version="[5.12.0,6.0.0)", |
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -2,14 +2,14 @@ Manifest-Version: 1.0 | |||||||||
| Bundle-ManifestVersion: 2 | ||||||||||
| Bundle-Name: KNIME Python 3 - Scripting Nodes | ||||||||||
| Bundle-SymbolicName: org.knime.python3.scripting.nodes;singleton:=true | ||||||||||
| Bundle-Version: 5.11.0.qualifier | ||||||||||
| Bundle-Version: 5.12.0.qualifier | ||||||||||
| Bundle-ClassPath: knime-python3-scripting-nodes.jar | ||||||||||
| Bundle-Vendor: KNIME AG, Zurich, Switzerland | ||||||||||
| Bundle-RequiredExecutionEnvironment: JavaSE-17 | ||||||||||
| Bundle-ActivationPolicy: lazy | ||||||||||
| Require-Bundle: org.knime.core;bundle-version="[5.11.0,6.0.0)", | ||||||||||
| org.knime.base;bundle-version="[5.11.0,6.0.0)", | ||||||||||
| org.knime.core.columnar.arrow;bundle-version="[5.11.0,6.0.0)", | ||||||||||
| Require-Bundle: org.knime.core;bundle-version="[5.12.0,6.0.0)", | ||||||||||
| org.knime.base;bundle-version="[5.12.0,6.0.0)", | ||||||||||
| org.knime.core.columnar.arrow;bundle-version="[5.12.0,6.0.0)", | ||||||||||
| org.knime.core.columnar;bundle-version="[5.11.0,6.0.0)", | ||||||||||
|
||||||||||
| org.knime.core.columnar;bundle-version="[5.11.0,6.0.0)", | |
| org.knime.core.columnar;bundle-version="[5.12.0,6.0.0)", |
Copilot
AI
Mar 5, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
org.knime.conda and org.knime.conda.envbundling are still pinned to a >= 5.11.0 lower bound while other AP dependencies in this manifest were bumped to >= 5.12.0. If the goal is to enforce an AP 5.12.0 baseline, these should likely be bumped to >= 5.12.0 for consistency (and to match the feature requirement on org.knime.features.conda 5.12.0).
| org.knime.conda;bundle-version="[5.11.0,6.0.0)", | |
| org.knime.conda.envbundling;bundle-version="[5.11.0,6.0.0)", | |
| org.knime.conda;bundle-version="[5.12.0,6.0.0)", | |
| org.knime.conda.envbundling;bundle-version="[5.12.0,6.0.0)", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the AP 5.12.0 version-bump context, the required features were mostly bumped to 5.12.0, but org.knime.features.pythonscripting is still listed with a 5.11.0 lower bound. If the intention is to require a full 5.12.0 baseline, this import should likely be updated to 5.12.0 for consistency.