Skip to content

Commit

Permalink
chore(release): 3.0.0-rc.22 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0-rc.22](v3.0.0-rc.21...v3.0.0-rc.22) (2023-06-30)

### Bug Fixes

* loading plugins ([94715a7](94715a7))
  • Loading branch information
semantic-release-bot committed Jun 30, 2023
1 parent 94715a7 commit b998527
Show file tree
Hide file tree
Showing 65 changed files with 73 additions and 66 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
# [3.0.0-rc.22](https://github.com/bendavies99/BabbleBot-Server/compare/v3.0.0-rc.21...v3.0.0-rc.22) (2023-06-30)


### Bug Fixes

* loading plugins ([94715a7](https://github.com/bendavies99/BabbleBot-Server/commit/94715a7c9dd5afbab4f6768d10308e2c1e60e93f))

# [3.0.0-rc.21](https://github.com/bendavies99/BabbleBot-Server/compare/v3.0.0-rc.20...v3.0.0-rc.21) (2023-06-30)


Expand Down
Expand Up @@ -44,23 +44,23 @@ public interface ICommandResponse
* Respond with a {@link EmbedMessage}
*
* @param embed the embed message to send
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
boolean sendEmbed(EmbedMessage embed);

/**
* Respond with a {@link EmbedMessage} using a {@link Mono}
*
* @param embed the embed message to send
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
boolean sendEmbed(Mono<EmbedMessage> embed);

/**
* Respond with a {@link EmbedMessage} using a {@link Flux}
*
* @param embed the embed message to send
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
boolean sendEmbed(Flux<EmbedMessage> embed);

Expand Down
Expand Up @@ -34,7 +34,7 @@
* Connect Queue Metadata
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Connect Queue Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public interface IConnectQueue<T extends Serializable>
{
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Connect Queue Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public interface IConnectQueueResponse<T extends Serializable, R extends Serializable> extends
IConnectQueue<T>
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Announcement Service to send announcements through the announcement channel for important updates
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Service
public interface IAnnouncementService
Expand Down
Expand Up @@ -36,7 +36,7 @@
* Response Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -38,7 +38,7 @@
* Generic Response for a Rest Request
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Babblebot Event interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public interface IEvent extends Serializable
{
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Babblebot Event Dispatcher
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Component
public interface IEventDispatcher
Expand Down
Expand Up @@ -36,7 +36,7 @@
* An Event that will trigger when the {@link net.bdavies.babblebot.api.plugins.IPluginContainer} gets a new plugin
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -36,7 +36,7 @@
* plugin
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Event will fire on Babblebot shutdown
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Discord Color Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Text Channel Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Guild Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -38,7 +38,7 @@
* An Object for the DiscordId
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -39,7 +39,7 @@
* Discord Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Author Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Author Object for an Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Field Object for an Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Footer Object for a Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -40,7 +40,7 @@
* Embedded Message Dto as a Response
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Plugin model Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public interface IPluginModel extends Serializable
{
Expand Down
Expand Up @@ -35,7 +35,7 @@
* Plugin Permission Container
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
public class PluginPermissionContainer extends ArrayList<EPluginPermission>
Expand Down
Expand Up @@ -29,7 +29,7 @@
* Plugin type enum
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public enum PluginType
{
Expand Down
Expand Up @@ -29,7 +29,7 @@
* A Function that is Exceptional
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@FunctionalInterface
public interface FunctionEx<I, R>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,2 +1,2 @@
version = 3.0.0-rc.21
version = 3.0.0-rc.22
systemProp.org.gradle.internal.publish.checksums.insecure = true
Expand Up @@ -36,7 +36,7 @@
* DiscordCommandContext
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
public class DiscordCommandContext extends AbstractCommandContext
Expand Down
Expand Up @@ -34,7 +34,7 @@
* from a command will then rendered to the output for discord it will render it on the discord channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public interface CommandRenderer extends Serializable
{
Expand Down
Expand Up @@ -39,7 +39,7 @@
* Discord Command Renderer that will send the response to the channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -47,7 +47,7 @@
* Renderer for an Interaction event from Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Base Response Class
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -39,7 +39,7 @@
* Configuration for the Config Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Configuration
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Config Repository
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Repository
public interface ConfigRepository extends JpaRepository<Config, Long>
Expand Down
Expand Up @@ -35,7 +35,7 @@
* Configuration Properties for Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@ConfigurationProperties(prefix = "discord")
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Connect Client that will handle receiving messages
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
public interface ConnectClient
{
Expand Down
Expand Up @@ -36,7 +36,7 @@
* Configuration Properties for Babblebot Connect
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@ConfigurationProperties(prefix = "connect")
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Connect Server that will handle sending messages
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Service
public interface ConnectServer
Expand Down
Expand Up @@ -37,7 +37,7 @@
* A Dto for a received message on the queue
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -41,7 +41,7 @@
* Discord Connect Queue
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.21
* @since 3.0.0-rc.22
*/
@ConnectQueue
@Slf4j
Expand Down

0 comments on commit b998527

Please sign in to comment.