DEVOPS-3809: Incremental version bumps for AP 5.12.0#78
DEVOPS-3809: Incremental version bumps for AP 5.12.0#78knime-ghub-bot merged 1 commit intomasterfrom
Conversation
DEVOPS-3809 (Incremental version bumps for AP 5.12.0)
There was a problem hiding this comment.
Pull request overview
This PR performs an incremental version bump from 5.11.0 to 5.12.0 for KNIME Analytics Platform 5.12.0 release. The changes are selective, updating only specific components rather than performing a comprehensive version bump across the entire repository.
Changes:
- Updated root POM revision from 5.11.0 to 5.12.0
- Updated Python3 Scripting feature version and selected dependency versions in feature.xml
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pom.xml | Updated <revision> property from 5.11.0 to 5.12.0 in the root POM |
| org.knime.features.python3.scripting/feature.xml | Updated feature version to 5.12.0 and selectively updated python2 and conda dependency versions to 5.12.0, leaving core.columnar and pythonscripting at 5.11.0 |
| <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"/> |
There was a problem hiding this comment.
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.
| <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"/> |
|



DEVOPS-3809 (Incremental version bumps for AP 5.12.0)