|
1 | 1 | # 2.17 |
2 | | -- Added support for 1.21.10 |
| 2 | +- Added support for 1.21.10 |
| 3 | +- Added clarity to documentation for default behavior if the provider doesn't support share accounts. |
| 4 | +- Added clarity to documentation for default behavior if the provider does not support multi-currency. |
| 5 | +- Added clarity to documentation for default behavior if the provider doesn't support multiple worlds. |
| 6 | +- Deprecated ```List<String> accountsAccessTo(@NotNull final String pluginName, @NotNull final UUID accountID, @NotNull final AccountPermission... permissions)``` |
| 7 | + - This method will be removed in a future release as the string return allows ambiguity. |
| 8 | +- Deprecated ```List<String> accountsMemberOf(@NotNull final String pluginName, @NotNull final UUID accountID)``` |
| 9 | + - This method will be removed in a future release as the string return allows ambiguity. |
| 10 | +- Deprecated ```List<String> accountsOwnedBy(@NotNull final String pluginName, @NotNull final UUID accountID)``` |
| 11 | + - This method will be removed in a future release as the string return allows ambiguity. |
| 12 | +- Added ```List<UUID> accountsWithAccessTo(@NotNull final String pluginName, @NotNull final UUID accountID, @NotNull final AccountPermission... permissions)``` |
| 13 | + - This method is a replacement for the now deprecated ```List<String> accountsAccessTo(@NotNull final String pluginName, @NotNull final UUID accountID, @NotNull final AccountPermission... permissions)``` |
| 14 | +- Added ```List<UUID> accountsWithMembershipTo(@NotNull final String pluginName, @NotNull final UUID accountID)``` |
| 15 | + - This method is a replacement for the now deprecated ```List<String> accountsMemberOf(@NotNull final String pluginName, @NotNull final UUID accountID)``` |
| 16 | +- Added ```List<UUID> accountsWithOwnerOf(@NotNull final String pluginName, @NotNull final UUID accountID)``` |
| 17 | + - This method is a replacement for the now deprecated ```List<String> accountsOwnedBy(@NotNull final String pluginName, @NotNull final UUID accountID)``` |
0 commit comments