liquibase.exception.UnexpectedLiquibaseException: Resource does not exist

Hi Team,

Need help in resolving this issue, recently we are planning to upgrade from 4.16.1 to 4.19.1 and we see below issue

Caused by: liquibase.exception.LiquibaseParseException: liquibase.exception.UnexpectedLiquibaseException: Resource does not exist
at liquibase.parser.core.yaml.YamlSnapshotParser.parse(YamlSnapshotParser.java:72)
at liquibase.database.OfflineConnection.(OfflineConnection.java:101)
… 16 more
Caused by: liquibase.exception.UnexpectedLiquibaseException: Resource does not exist
at liquibase.resource.ResourceAccessor$NotFoundResource.openInputStream(ResourceAccessor.java:224)
at liquibase.parser.core.yaml.YamlSnapshotParser.parse(YamlSnapshotParser.java:42)
… 17 more

Looks like the recent changes are done and its causing the issue. YamlSnapshotParser.java the way ResourceAccessor reads the file is different from way it was in 4.16.1.

resourceAccessor.openStream(null, path) - 4.16.1
resourceAccessor.get(path) - 4.19.1

Any update from liquibase team