pf-wikis / bots

A repository containing and running the bots for pathfinderwiki.com
0 stars 0 forks source link

Bump the dependencies group across 1 directory with 8 updates #63

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 2 weeks ago

Bumps the dependencies group with 8 updates in the / directory:

Package From To
io.github.classgraph:classgraph 4.8.176 4.8.177
ch.qos.logback:logback-classic 1.5.8 1.5.12
com.fasterxml.jackson.core:jackson-databind 2.17.2 2.18.0
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.17.2 2.18.0
com.fasterxml.jackson.datatype:jackson-datatype-guava 2.17.2 2.18.0
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.17.2 2.18.0
com.google.apis:google-api-services-drive v3-rev20240914-2.0.0 v3-rev20241014-2.0.0
net.dv8tion:JDA 5.1.1 5.1.2

Updates io.github.classgraph:classgraph from 4.8.176 to 4.8.177

Release notes

Sourced from io.github.classgraph:classgraph's releases.

classgraph-4.8.177

Throw IllegalStateException rather than NPE if the user tries to access a resource after the ScanResult has been closed (#885, thanks to @​sebthom for reporting).

Commits
  • 8841196 [maven-release-plugin] prepare release classgraph-4.8.177
  • e5422fb Reset version number
  • a138641 Fix previous commit
  • dcd7ece Don't allow resources to be opened after ScanResult is closed (#885)
  • b61f6e0 [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view


Updates ch.qos.logback:logback-classic from 1.5.8 to 1.5.12

Commits
  • 3a64b51 prepare release 1.5.12
  • ecae664 fix issues/879
  • 85968fa logger call ends with two exceptions - fix issues/876
  • ea3cec8 Update README.md
  • 887cbba update README.md
  • df2a3b6 start work on 1.5.12-SNAPSHOT
  • 3aa0730 prepare release of version 1.5.11
  • 8bcfd9a allow for InsertFromJNDIModelHandler to be callable from logback-tyler
  • 75bee86 refactorings in support of logback-tyler
  • 8749edc start work on 1.5.11-SNAPSHOT
  • Additional commits viewable in compare view


Updates com.fasterxml.jackson.core:jackson-databind from 2.17.2 to 2.18.0

Commits


Updates com.fasterxml.jackson.dataformat:jackson-dataformat-yaml from 2.17.2 to 2.18.0

Commits
  • 13e4274 [maven-release-plugin] prepare release jackson-dataformats-text-2.18.0
  • cd642d3 Prepare for 2.18.0 release
  • 4496d13 Add YAML test, too, for #497
  • 5b2415e ...
  • 3b9c691 Improve #497 test (to validate content)
  • c86b438 Add failing test for #497 (#498)
  • 288eacc Back to snapshot
  • 7d23986 [maven-release-plugin] prepare for next development iteration
  • a36cf83 [maven-release-plugin] prepare release jackson-dataformats-text-2.18.0-rc1
  • ee4e830 Prepare for 2.18.0-rc1
  • Additional commits viewable in compare view


Updates com.fasterxml.jackson.datatype:jackson-datatype-guava from 2.17.2 to 2.18.0

Commits
  • e2cee41 [maven-release-plugin] prepare release jackson-datatypes-collections-2.18.0
  • 2f3db97 Prepare for 2.18.0 release
  • 5ad9f42 Try to fix #160 (OSGi dep problem wrt Guava) (#161)
  • f76649a Bump actions/setup-java from 4.2.1 to 4.2.2 in the github-actions group (#159)
  • 021e87b Back to snapshots
  • 9437e20 [maven-release-plugin] prepare for next development iteration
  • ccd538d [maven-release-plugin] prepare release jackson-datatypes-collections-2.18.0-rc1
  • 19c1046 Prepare for 2.18.0-rc1
  • 575cfdd Update to 2.18.0-rc1-SNAPSHOT
  • 32f6a0f Merge branch '2.17' into 2.18
  • Additional commits viewable in compare view


Updates com.fasterxml.jackson.datatype:jackson-datatype-jsr310 from 2.17.2 to 2.18.0

Updates com.google.apis:google-api-services-drive from v3-rev20240914-2.0.0 to v3-rev20241014-2.0.0

Updates net.dv8tion:JDA from 5.1.1 to 5.1.2

Release notes

Sourced from net.dv8tion:JDA's releases.

v5.1.2 | Message Forwarding and Voice Messages

Overview

This release adds support for new message features.

Forwarding messages (#2744)

You can now handle forwarded messages using the new message snapshots.

@Override
public void onMessageReceived(MessageReceivedEvent event) {
    MessageReference messageReference = event.getMessage().getMessageReference();
    // Forwarded messages have a reference of type FORWARD
    if (messageReference != null && messageReference.getType() == MessageReference.MessageReferenceType.FORWARD) {
        // The content of the forwarded message is provided as a snapshot
        MessageSnapshot snapshot = event.getMessage().getMessageSnapshots().getFirst();
        System.out.println("Received forwarded message with content: " + snapshot.getContentRaw());
    }
}

A bot can also forward a message using Message#fowardTo. Note that a forwarded message cannot contain any additional content.

Voice messages (#2738)

You can now send voice messages with JDA, by utilizing the new FileUpload#asVoiceMessage method on your audio attachments.

channel.sendFiles(
  FileUpload.fromData(audioFile)
    .asVoiceMessage(MediaType.parse("audio/ogg"), waveform, 10.5) // 10.5 seconds audio/ogg message
).queue();

To create a voice message, you must first determine the audio media type of your voice message and sample a waveform up to 256 bytes. Voice messages require a valid audio/* media type like audio/ogg.

The waveform is used to render the voice message shape in the preview. It must not be an accurate sampling of the actual audio.

New Features

Bug Fixes

Full Changelog: https://github.com/discord-jda/JDA/compare/v5.1.1...v5.1.2

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 1 week ago

Superseded by #64.