FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

openapi-java-migration/migration-notes/8.26.2_8.27.2.md at main · unblu/openapi-java-migration · GitHub

Latest commit

 

History

History
34 lines (22 loc) · 844 Bytes

File metadata and controls

34 lines (22 loc) · 844 Bytes

8.26.2 → 8.27.2

A message translation property was renamed.

This release breaks java code. See Required migration.

What changed

TextMessageTranslation.translatedText was renamed to text. The old getter, setter and fluent setter were removed.

Required migration

Rename the accessors.

// before
translation.setTranslatedText("Willkommen");
String value = translation.getTranslatedText();

// after
translation.setText("Willkommen");
String value = translation.getText();

Working examples

Each of these compiles against 8.26.2 and fails to compile against 8.27.2:


Generated from revapi/8.26.2_8.27.2/, which holds the full report for both artifacts.


Back | FazBrowse Home | New Git URL