ci(dependabot): stop proposing cassandra-driver-core 4.x - #1579
Merged
Merged
Conversation
Dependabot re-proposes cassandra-driver-core 3.11.5 -> 4.0.0 on every run, but 4.0.0 is a full driver rewrite: the API moved from com.datastax.driver.core.* to com.datastax.oss.driver.api.core.*, so CassandraReader, CassandraReaderHelper, CassandraWriter and CassandraWriterHelper no longer compile (#1577). Migrating the two cassandra plugins is a separate task, so 3.11.5 stays. The ignore rule mirrors the existing entries for paimon and flight-sql-jdbc-core.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Dependabot re-proposes
com.datastax.cassandra:cassandra-driver-core3.11.5 → 4.0.0 on every daily run. That bump is not applicable, so this adds an ignore rule rather than leaving the PR to be closed by hand each time.Related Issue(s)
Relates to #1577 (closed)
What type of change is this?
Changes
.github/dependabot.yml: ignorecom.datastax.cassandra:cassandra-driver-coreversions4.x.Motivation and Context
cassandra-driver-core:4.0.0is the promoted alias of the DataStax 4.x driver. Its API lives incom.datastax.oss.driver.api.core.*, while both cassandra plugins import the 3.x namespace, so the build fails:Migrating means replacing
Cluster/Session/RowwithCqlSession/AsyncCqlSession/Rowand reworking the codec registry and connection options — a plugin rewrite, not a dependency update. 3.11.5 is the last 3.x line and still works, so the plugins stay on it until that migration is scheduled.The rule follows the existing pattern used for
org.apache.paimon:*andorg.apache.arrow:flight-sql-jdbc-core.How has this been tested?
verifyruns the fullmvn verify+enforcer:enforceon this branch.Checklist (required)
Signed-off-byline in the final commit message if required by the project.Breaking changes / Migration
None.
Additional context
The closed PR #1577 carries the full compile-error log for reference.