-
Notifications
You must be signed in to change notification settings - Fork 17
Bump version to 2.0.4-SNAPSHOT #80
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
Conversation
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.
Pull Request Overview
This PR bumps the project version from 2.0.2-SNAPSHOT to 2.0.4-SNAPSHOT and makes minor adjustments to plugin configurations and dependency version expressions.
- Update parent and dependency versions across multiple pom.xml files
- Add a maven-deploy-plugin configuration to skip deployment for the flink-sql example
- Reorganize module profiles and update dependency version expressions to use ${project.version}
Reviewed Changes
Copilot reviewed 20 out of 44 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| examples/flink-sql/pom.xml | Version bump and addition of maven-deploy-plugin configuration to skip deployment |
| distributions/pom.xml | Version bump and update of dependency versions/modalities; removal of an include entry from fileSet and adjustments in profiles |
| connectors/zeppelin-interpreter/pom.xml | Version bump for the Zeppelin connector |
| connectors/spark-tsfile/pom.xml | Version bump in both parent and dependency versions |
| connectors/spark-iotdb-table-connector/pom.xml | Version bump and removal of an obsolete plugin configuration |
| connectors/spark-iotdb-table-connector/* | Version bump across submodules for table connectors |
| connectors/spark-iotdb-connector/* | Version bump for Spark IoTDB connector modules (including Scala-specific poms) |
| connectors/pom.xml | Version bump and reorganization of module profiles |
| connectors/hive-connector/pom.xml | Version bump and dependency version update |
| connectors/hadoop/pom.xml | Version bump for the Hadoop TSFile connector |
| connectors/grafana-plugin/pom.xml | Version bump and explicit version update for frontend-maven-plugin |
| connectors/grafana-connector/pom.xml | Version bump for the Grafana connector |
| connectors/flink-tsfile-connector/pom.xml | Version bump and dependency version update for the Flink TSFile connector |
| connectors/flink-sql-iotdb-connector/pom.xml | Version bump for the Flink SQL IoTDB connector |
| connectors/flink-iotdb-connector/pom.xml | Version bump for the Flink IoTDB connector |
Comments suppressed due to low confidence (4)
examples/flink-sql/pom.xml:101
- Verify that the newly added maven-deploy-plugin configuration with true is intended for this module, as it disables artifact deployment.
<groupId>org.apache.maven.plugins</groupId>
distributions/pom.xml:39
- Confirm that switching from a fixed version to ${project.version} for the Spark IoTDB connector dependencies aligns with your overall versioning strategy.
<version>${project.version}</version>
distributions/pom.xml:91
- Ensure that the removal of the include entry for the flink-sql-connector binary is intentional and does not exclude an expected artifact from the final assembly.
<include>apache-iotdb-${project.version}-spark-connector-bin.zip</include>
connectors/grafana-plugin/pom.xml:34
- The explicit version for the frontend-maven-plugin improves build reproducibility; please confirm that version 1.15.1 is compatible with all required frontend tasks.
<version>1.15.1</version>
Bumps the project version from 2.0.2-SNAPSHOT to 2.0.4-SNAPSHOT and makes minor adjustments to plugin configurations and dependency version expressions.