From 4a17e3da5b876f21ba3f9f8f084be5f384e0291a Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Sat, 17 Aug 2024 14:33:20 +0000
Subject: [PATCH] chore(deps): update all non-major dependencies (#70)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
This PR contains the following updates:
| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
| debian | final | digest | `5f7d566` -> `2ccc7e3` | | | | |
| maven | stage | digest | `6bfb613` -> `7bec384` | | | | |
| rust | stage | minor | `1.79.0-bookworm` -> `1.80.1-bookworm` | [![age](https://developer.mend.io/api/mc/badges/age/docker/rust/1.80.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/docker/rust/1.80.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/docker/rust/1.79.0/1.80.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/rust/1.79.0/1.80.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [net.dv8tion:JDA](https://togithub.com/discord-jda/JDA) | compile | patch | `5.0.1` -> `5.0.2` | [![age](https://developer.mend.io/api/mc/badges/age/maven/net.dv8tion:JDA/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/net.dv8tion:JDA/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/net.dv8tion:JDA/5.0.1/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/net.dv8tion:JDA/5.0.1/5.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [com.github.sealedtx:java-youtube-downloader](https://togithub.com/sealedtx/java-youtube-downloader) | compile | patch | `3.2.3` -> `3.2.4` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.github.sealedtx:java-youtube-downloader/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.github.sealedtx:java-youtube-downloader/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.github.sealedtx:java-youtube-downloader/3.2.3/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.github.sealedtx:java-youtube-downloader/3.2.3/3.2.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
discord-jda/JDA (net.dv8tion:JDA)
### [`v5.0.2`](https://togithub.com/discord-jda/JDA/releases/tag/v5.0.2): | Single time event listener
### Overview
This release includes some bug fixes as well as a new event listener feature to add a one-time-use event listener.
##### Once Event Listener ([#2683](https://togithub.com/discord-jda/JDA/issues/2683))
A common problem that developers run into, is "waiting" for a specific event in the context of some command. For instance, waiting for a user to add a reaction or reply with a message in response to some prompt.
This can now be achieved using the new [listenOnce](https://docs.jda.wiki/net/dv8tion/jda/api/JDA.html#listenOnce\(java.lang.Class\)) event listener:
```java
// listen for a message event
jda.listenOnce(MessageReceivedEvent.class)
// filter for specific event
.filter(event -> event.getChannel().equals(channel))
.filter(event -> event.getAuthor().equals(user))
// handle timeout
.timeout(timeout, () -> hook.editOriginal("Timeout!").queue())
// subscribe to first event that matches filters
.subscribe(event -> {
hook.editOriginal("You sent: " + event.getMessage().getContentRaw()).queue();
});
```
#### New Features
- Add `TeamMember.RoleType` by [@freya022](https://togithub.com/freya022) in [https://github.com/discord-jda/JDA/pull/2703](https://togithub.com/discord-jda/JDA/pull/2703)
- Add abstract `createCopy` method in `SelectMenu` by [@Kaktushose](https://togithub.com/Kaktushose) in [https://github.com/discord-jda/JDA/pull/2684](https://togithub.com/discord-jda/JDA/pull/2684)
- Add `JDA#listenOnce` by [@freya022](https://togithub.com/freya022) in [https://github.com/discord-jda/JDA/pull/2683](https://togithub.com/discord-jda/JDA/pull/2683)
- Add support for profile automod by [@MinnDevelopment](https://togithub.com/MinnDevelopment) in [https://github.com/discord-jda/JDA/pull/2580](https://togithub.com/discord-jda/JDA/pull/2580)
#### Changes
- Expand list of retried http error codes by [@MinnDevelopment](https://togithub.com/MinnDevelopment) in [https://github.com/discord-jda/JDA/pull/2710](https://togithub.com/discord-jda/JDA/pull/2710)
- Update to Jackson 2.17.2 by [@freya022](https://togithub.com/freya022) in [https://github.com/discord-jda/JDA/pull/2695](https://togithub.com/discord-jda/JDA/pull/2695)
#### Bug Fixes
- Fix deserialization of interaction components by [@WitchBoo](https://togithub.com/WitchBoo) in [https://github.com/discord-jda/JDA/pull/2711](https://togithub.com/discord-jda/JDA/pull/2711)
**Full Changelog**: https://github.com/discord-jda/JDA/compare/v5.0.1...v5.0.2
### Installation
#### Gradle
```gradle
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.0.2")
}
```
#### Maven
```xml
net.dv8tion
JDA
5.0.2
```
sealedtx/java-youtube-downloader (com.github.sealedtx:java-youtube-downloader)
### [`v3.2.4`](https://togithub.com/sealedtx/java-youtube-downloader/releases/tag/3.2.4)
[Compare Source](https://togithub.com/sealedtx/java-youtube-downloader/compare/3.2.3...3.2.4)
added missing itags
---
### Configuration
📅 **Schedule**: Branch creation - "before 6am on saturday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
â™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.
---
- [ ] If you want to rebase/retry this PR, check this box
---
This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/SvenKirschbaum/musikbot-client).
---
Dockerfile | 6 +++---
pom.xml | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 2836f2d..cf20a0a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
#BUILD APP
-FROM maven:3.9.8-amazoncorretto-21@sha256:6bfb613ad72c84e8055566c3c908235b1218520b8d7a9ead710640419c7b22a5 AS build_app
+FROM maven:3.9.8-amazoncorretto-21@sha256:7bec3845398642fbd54cdba65508d8fff0c7f66cde821d93dd96265eee09de76 AS build_app
WORKDIR /usr/src/app
COPY pom.xml .
COPY lib lib
@@ -8,7 +8,7 @@ COPY src/ ./src/
RUN mvn -f ./pom.xml package
#BUILD SPOTIFYD
-FROM rust:1.79.0-bookworm@sha256:4c45f61ebe054560190f232b7d883f174ff287e1a0972c8f6d7ab88da0188870 AS build_spotifyd
+FROM rust:1.80.1-bookworm@sha256:29fe4376919e25b7587a1063d7b521d9db735fc137d3cf30ae41eb326d209471 AS build_spotifyd
RUN apt-get update && apt-get install -y libasound2-dev libssl-dev libpulse-dev libdbus-1-dev
RUN git clone https://github.com/Spotifyd/spotifyd.git /usr/src/spotifyd
COPY token_auth.diff /token_auth.diff
@@ -17,7 +17,7 @@ RUN git apply < /token_auth.diff
RUN cargo build --release --no-default-features --features pulseaudio_backend
#PACKAGE
-FROM debian:12.6-slim@sha256:5f7d5664eae4a192c2d2d6cb67fc3f3c7891a8722cd2903cc35aa649a12b0c8d
+FROM debian:12.6-slim@sha256:2ccc7e39b0a6f504d252f807da1fc4b5bcd838e83e4dec3e2f57b2a4a64e7214
RUN \
apt-get update \
&& apt-get install -y wget gnupg2 software-properties-common \
diff --git a/pom.xml b/pom.xml
index 1935fa3..6714197 100644
--- a/pom.xml
+++ b/pom.xml
@@ -88,7 +88,7 @@
com.github.sealedtx
java-youtube-downloader
- 3.2.3
+ 3.2.4
org.springframework.boot
@@ -97,7 +97,7 @@
net.dv8tion
JDA
- 5.0.1
+ 5.0.2
org.springframework.boot