@@ -97,9 +97,19 @@ Command execution is now handled by a `CommandExecutor` which can be retrieved f
9797This allows suggestion providers to consume more than a single token at a time, and also gives them access to whitespace
9898information. This allows for better multi-token suggestions.
9999
100+ ** Simplify execution coordination API ([ #609 ] ( https://github.com/Incendo/cloud/pull/609 ) )**
101+ It is easier to create & modify execution coordinators.
102+
103+ ** Make ParserRegistry easier to use ((#592 )[ https://github.com/Incendo/cloud/pull/592 ] )**
104+ You may now register ` ParserDescriptor ` instances.
105+
100106** Move confirmation system to external repository ([ #620 ] ( https://github.com/Incendo/cloud/pull/620 ) )**
101107The confirmation system now lives in [ cloud-processors] ( https://github.com/Incendo/cloud-processors ) .
102108
109+ ** Add Either ([ 647] ( https://github.com/Incendo/cloud/pull/647 ) )**
110+ ` Either<A, B> ` can be parsed by ` ArgumentParser.firstOf(ParserDescriptor, ParserDescriptor) ` which allows
111+ for multiple variable components on the same level.
112+
103113### Annotations
104114
105115** Lenient ` @Suggestions ` methods ([ #496 ] ( https://github.com/Incendo/cloud/pull/496 ) , [ #617 ] ( https://github.com/Incendo/cloud/pull/617 ) )**
@@ -134,6 +144,12 @@ Decorators are like builder modifiers, but they're applied to _all_ builders con
134144** Allow for a different class loader when parsing command containers**
135145This fixes issues with platforms that use custom class loaders for plugins.
136146
147+ ** Use the same parameter matching logic everywhere ([ 617] ( https://github.com/Incendo/cloud/pull/617 ) )**
148+ This allows for injections and more flexible signatures in more places.
149+
150+ ** Support Gradle incremental compilation ([ #624 ] ( https://github.com/Incendo/cloud/pull/624 ) )**
151+ Faster compilation.
152+
137153### Kotlin
138154
139155** Support default values ([ #511 ] ( https://github.com/Incendo/cloud/pull/511 ) )**
@@ -165,6 +181,9 @@ Brigadier doesn't display suggestions for numbers.
165181Issues with inner nodes in aggregate components have been resolved and these nodes are now constructed in the
166182same way as other nodes.
167183
184+ ** Remove checked exception from creating Bukkit/Paper command managers**
185+ It simplifies the setup process. They may still throw runtime exceptions, so make sure to read the documentation.
186+
168187#### Bukkit
169188
170189** Description resolution ([ #530 ] ( https://github.com/Incendo/cloud/pull/530 ) )**
0 commit comments