lukecwik edited a comment on issue #11151: [BEAM-9468] Hl7v2 io URL: https://github.com/apache/beam/pull/11151#issuecomment-612242130 > @lukecwik that's what I thought to but when I do that I get the output in [this comment](https://github.com/apache/beam/pull/11151#discussion_r406551322) A lot of google libraries have three parts to the version string (API major version, API minor version, shared lib version) You have to find and upgrade the client libraries to versions that contain the 1.30.9 shared lib version like: google-api-services-cloudresourcemanager:v1-rev20191206-1.30.4 becomes google-api-services-cloudresourcemanager:v1-rev20200311-1.30.9 Best way to find matching versions is to look at the index of the maven repo for each artifact (e.g.): https://repo1.maven.org/maven2/com/google/apis/google-api-services-cloudresourcemanager/ Find ones that have the same API major version and any newer API minor version with the shard lib version being 1.30.9. Major version changes are breaking API changes, minor version increases are meant to be safe to upgrade and shared lib version just needs to be the same across all deps.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
