Skip to content

Commit

Permalink
chore(release): 3.0.0-rc.29 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0-rc.29](v3.0.0-rc.28...v3.0.0-rc.29) (2023-08-03)

### Bug Fixes

* Namespace issue with slash commands ([567d1b3](567d1b3))
  • Loading branch information
semantic-release-bot committed Aug 3, 2023
1 parent 567d1b3 commit 655e168
Show file tree
Hide file tree
Showing 85 changed files with 93 additions and 86 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
# [3.0.0-rc.29](https://github.com/babblebot-server/server/compare/v3.0.0-rc.28...v3.0.0-rc.29) (2023-08-03)


### Bug Fixes

* Namespace issue with slash commands ([567d1b3](https://github.com/babblebot-server/server/commit/567d1b3e0b9acf6d3ec75a5f49bcbde5de75da0f))

# [3.0.0-rc.28](https://github.com/babblebot-server/server/compare/v3.0.0-rc.27...v3.0.0-rc.28) (2023-08-03)


Expand Down
Expand Up @@ -34,7 +34,7 @@
* Command Middleware
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/

@Target({ElementType.METHOD, ElementType.TYPE})
Expand Down
Expand Up @@ -30,7 +30,7 @@
* context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
public enum CommandType
{
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.28
* @since 3.0.0-rc.29
*/
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.28
* @since 3.0.0-rc.29
*/
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.28
* @since 3.0.0-rc.29
*/
boolean sendEmbed(Flux<EmbedMessage> embed);

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.28
* @since 3.0.0-rc.29
*/
@Service
public interface IAnnouncementService
Expand Down
Expand Up @@ -43,7 +43,7 @@
* Sending spec for a DiscordMessage
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Data
@Builder(toBuilder = true)
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Service for sending messages through discord to a channel or a private message etc
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Service
public interface IDiscordMessagingService
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/dto/Response.java
Expand Up @@ -36,7 +36,7 @@
* Response Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/dto/ResponseBag.java
Expand Up @@ -38,7 +38,7 @@
* Generic Response for a Rest Request
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/obj/DiscordColor.java
Expand Up @@ -32,7 +32,7 @@
* Discord Color Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Guild Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -41,7 +41,7 @@
* Discord Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Author Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -29,7 +29,7 @@

/**
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
public interface InteractionItem extends Serializable
{
Expand Down
Expand Up @@ -40,7 +40,7 @@

/**
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -38,7 +38,7 @@

/**
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -27,7 +27,7 @@

/**
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
public enum ButtonType
{
Expand Down
Expand Up @@ -42,7 +42,7 @@
* Dropdown Menu Interaction
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Builder(toBuilder = true)
Expand Down
Expand Up @@ -35,7 +35,7 @@
* Dropdown Menu Interaction
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Builder
Expand Down
Expand Up @@ -40,7 +40,7 @@
* Dropdown Menu Interaction
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Builder
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Plugin model Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
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.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
public enum PluginType
{
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Version Service for Getting the server version
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Service
public interface IVersionService
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/util/FunctionEx.java
Expand Up @@ -29,7 +29,7 @@
* A Function that is Exceptional
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@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.28
version = 3.0.0-rc.29
systemProp.org.gradle.internal.publish.checksums.insecure = true
Expand Up @@ -406,7 +406,7 @@ public List<ICommand> getCommands(String type)
* @param namespace the command namespace
* @param commandName the alias of the command
* @return {@link Optional} of a {@link ICommand} if a command is found
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
public Optional<ICommand> findCommand(ICommandContext ctx, String namespace, String commandName)
{
Expand Down
Expand Up @@ -39,7 +39,7 @@
* Command Execution Policy
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -46,7 +46,7 @@
* Command Executor
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Service
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.28
* @since 3.0.0-rc.29
*/
public interface CommandRenderer extends Serializable
{
Expand Down
Expand Up @@ -38,7 +38,7 @@
* Discord Command Renderer that will send the response to the channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -41,7 +41,7 @@
* Renderer for an Interaction event from Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -35,7 +35,7 @@
* Base Response Class
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.28
* @since 3.0.0-rc.29
*/
@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.28
* @since 3.0.0-rc.29
*/
@Slf4j
@Configuration
Expand Down

0 comments on commit 655e168

Please sign in to comment.