ppkarwasz commented on issue #3441: URL: https://github.com/apache/logging-log4j2/issues/3441#issuecomment-2646358675
Hi @JWT007, > I added some convenience methods to the `ConfigurationBuilder` interface and this is now being reported as a Major change by the baseline plugin. It is a `MAJOR` change because the methods are abstract. You can fix it by: - adding those methods as `default` methods, which is the less invasive change. - or marking the `ConfigurationBuilder` class using the `@ProviderType`. This means that the type is not meant to be implemented by most users (the "Consumers"), which will not suffer from the change. Only "Providers" will need to update their code. See [`@ConsumerType`](https://docs.osgi.org/javadoc/osgi.annotation/7.0.0/org/osgi/annotation/versioning/ConsumerType.html)/[`@ProviderType`](https://docs.osgi.org/javadoc/osgi.annotation/7.0.0/org/osgi/annotation/versioning/ProviderType.html) -- 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: notifications-unsubscr...@logging.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org