generated from micronaut-projects/micronaut-project-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove deprecated code for Micronaut Framework 5 and document breakin…
- Loading branch information
Showing
5 changed files
with
22 additions
and
56 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
34 changes: 0 additions & 34 deletions
34
.../src/main/java/io/micronaut/email/validation/AnyRecipientConstraintValidationFactory.java
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
projectVersion=2.5.0-SNAPSHOT | ||
projectVersion=3.0.0-SNAPSHOT | ||
|
||
projectGroup=io.micronaut.email | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
=== Micronaut Email 2 | ||
This section documents breaking changes between Micronaut EMail versions: | ||
|
||
Micronaut Email 2 migrates to https://jakartaee.github.io/mail-api/[Jakarta Mail] package namespaces, from `javax.mail` to `jakarta.mail`. Moreover, it uses transitive dependency `jakarta.mail:jakarta.mail-api` instead of `com.sun.mail:javax.mail`. Jakarta Mail also separates API and Implementation. Previous implementation sources are now part of the https://eclipse-ee4j.github.io/angus-mail/[Eclipse Angus] project, the direct successor to JavaMail/JakartaMail. In addition to `jakarta-mail-api` an additional dependency on `org.eclipse.angus:angus-mail` is required. Note that for Eclipse Angus, module and package prefixes changed from `com.sun.mail` to `org.eclipse.angus.mail`. | ||
=== Micronaut Email 3.0.0 | ||
|
||
- The constructor `io.micronaut.email.Attachment(String, String, byte[], String)` deprecated previously has been removed. Use `Attachment(String, String, byte[], String, String instead)`. | ||
|
||
- the class `io.micronaut.email.validation.AnyRecipientConstraintValidationFactory` deprecated previously has been removed. The `@Factory` annotation was intentionally removed. Thus, this class does nothing. `AnyRecipientValidator` is used instead. | ||
|
||
=== Micronaut Email 2.0.0 | ||
|
||
Micronaut Email 2.0.0 migrates to https://jakartaee.github.io/mail-api/[Jakarta Mail] package namespaces, from `javax.mail` to `jakarta.mail`. Moreover, it uses transitive dependency `jakarta.mail:jakarta.mail-api` instead of `com.sun.mail:javax.mail`. Jakarta Mail also separates API and Implementation. Previous implementation sources are now part of the https://eclipse-ee4j.github.io/angus-mail/[Eclipse Angus] project, the direct successor to JavaMail/JakartaMail. In addition to `jakarta-mail-api` an additional dependency on `org.eclipse.angus:angus-mail` is required. Note that for Eclipse Angus, module and package prefixes changed from `com.sun.mail` to `org.eclipse.angus.mail`. | ||
|
||
This release also updates the ActiveCampaign Postmark library from 1.8.x to 1.9.0. Although it's a minor revision otherwise it refactors package names and the dependency groupId from `com.wildbit.java` to `com.postmarkapp`. |