mahimalalwani2312 opened a new issue, #13559: URL: https://github.com/apache/iceberg/issues/13559
### Query engine **Summary** I'm using the latest Iceberg code with the experimental DynamicIcebergSink. My production environment is pinned to managed Flink 1.20.0. **What I've done** Adjusted libs.versions.toml: `flink120 = { strictly = "1.20.1" }` ↓ `flink120 = { strictly = "1.20.0" }` Rebuilt the Iceberg JAR successfully. Deployed and tested on managed Flink 1.20.0, and everything is working without errors. **Observed API change** The CommittableSummary constructor signature differs: > Flink 1.20.0: `public CommittableSummary(int, int, java.lang.Long, int, int, int);` > Flink 1.20.1: `public CommittableSummary(int, int, long, int, int, int);` Switching from boxed Long → primitive long appears to be a breaking change in a patch release. ### Question > Was this constructor signature change in 1.20.1 intended, despite it being a breaking change in a patch version? > Are there known or potential unknown runtime issues when running that build on a managed Flink 1.20.0 environment? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org