Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #70

Merged
merged 1 commit into from
Aug 17, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 3, 2024

Mend Renovate

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 adoption passing confidence
net.dv8tion:JDA compile patch 5.0.1 -> 5.0.2 age adoption passing confidence
com.github.sealedtx:java-youtube-downloader compile patch 3.2.3 -> 3.2.4 age adoption passing confidence

Release Notes

discord-jda/JDA (net.dv8tion:JDA)

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)

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 event listener:

// 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

Changes

Bug Fixes

Full Changelog: discord-jda/JDA@v5.0.1...v5.0.2

Installation

Gradle

repositories {
    mavenCentral()
}
dependencies {
    implementation("net.dv8tion:JDA:5.0.2")
}

Maven

<dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>5.0.2</version> 
</dependency>
sealedtx/java-youtube-downloader (com.github.sealedtx:java-youtube-downloader)

v3.2.4

Compare Source

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 if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the minor label Aug 3, 2024
@mergify mergify bot requested a review from SvenKirschbaum August 3, 2024 22:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe8076d to f1f06b7 Compare August 4, 2024 16:10
@renovate renovate bot added the patch label Aug 4, 2024
@renovate renovate bot changed the title chore(deps): update rust docker tag to v1.80.0 chore(deps): update all non-major dependencies Aug 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 12deda8 to a86db00 Compare August 9, 2024 03:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a86db00 to 51344f2 Compare August 13, 2024 01:41
@renovate renovate bot added the digest label Aug 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 8f28ca3 to ef06dcc Compare August 17, 2024 14:06
@renovate renovate bot removed the minor label Aug 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef06dcc to a53c205 Compare August 17, 2024 14:13
@renovate renovate bot added the minor label Aug 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a53c205 to e0e0006 Compare August 17, 2024 14:18
@mergify mergify bot merged commit 4a17e3d into master Aug 17, 2024
6 checks passed
@mergify mergify bot deleted the renovate/all-minor-patch branch August 17, 2024 14:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant