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

Bump the all-dependencies group across 1 directory with 4 updates #1518

Merged
merged 1 commit into from
Feb 25, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 25, 2025

Bumps the all-dependencies group with 4 updates in the / directory: com.gradleup.shadow, org.flywaydb.flyway, io.github.miniplaceholders:miniplaceholders-api and redis.clients:jedis.

Updates com.gradleup.shadow from 8.3.3 to 8.3.6

Release notes

Sourced from com.gradleup.shadow's releases.

8.3.6

Added

  • Support Java 24. (#1222)

8.3.5

Fixed

  • Revert "Bump Java level to 11" (#1011).
    This reverts the change to maintain compatibility with 8.x versions. The Java level will be bumped to 11 or above in the next major release.

8.3.4

Fixed

  • Apply legacy plugin last, and declare capabilities for old plugins, fixes #964. (#991)
Commits

Updates org.flywaydb.flyway from 11.1.0 to 11.3.3

Updates io.github.miniplaceholders:miniplaceholders-api from 2.2.2 to 2.3.0

Release notes

Sourced from io.github.miniplaceholders:miniplaceholders-api's releases.

2.3.0

What's Changed

New Contributors

Sponsors

Now you can support the development of MiniPlaceholders with your sponsor! https://github.com/sponsors/4drian3d

Full Changelog: MiniPlaceholders/MiniPlaceholders@2.2.4...2.3.0

2.2.4

What's Changed

... (truncated)

Commits
  • adde850 release: Version 2.3.0
  • 94d97b9 Added expansions subcommand (#255)
  • 122e338 chore(deps): update plugin idea-ext to v1.1.10 (#251)
  • 32fa6bc chore(deps): update plugin quiet-fabric-loom to v1.10.316 (#248)
  • 373c061 fix(deps): update kotlin monorepo to v2.1.10 (#250)
  • 8addfe3 chore(deps): update dependency me.champeau.jmh to v0.7.3 (#252)
  • 0e7fe5f fix(deps): update dependency org.junit:junit-bom to v5.12.0 (#254)
  • f0bce37 fix(deps): update adventure to v4.19.0 (#253)
  • 4bd423b fix(docs): Fixed Dokka docs generation and updated to V2
  • 2d75b5f build: Updated gradle to 8.12.1
  • Additional commits viewable in compare view

Updates redis.clients:jedis from 4.3.1 to 5.2.0

Release notes

Sourced from redis.clients:jedis's releases.

5.2.0 GA

Enhanced Client-side caching

We are happy to announce that improved server-assisted, client-side caching is now generally available! Special thanks to all our beta testers for their valuable feedback, which helped us refine and improve the initial implementation.

Client-side caching is supported exclusively with the RESP3 protocol with Redis >= 7.4 and is available in UnifiedJedis, JedisPooled, and JedisCluster and other classes.

How to try Client-Side Caching

  1. Install Jedis 5.2.0
  2. Use the following code example to get started:
public class CSCExampleTest {
  public static void main() {
HostAndPort node = HostAndPort.from("localhost:6379");
JedisClientConfig clientConfig = DefaultJedisClientConfig.builder()
    .resp3()                // RESP3 protocol is required for client-side caching
    //.user("myuser")       // Redis server username (optional)
    //.password("mypass")   // Redis user's password (optional)
    .build();
CacheConfig cacheConfig = getCacheConfig();
Cache cache = CacheFactory.getCache(cacheConfig);
try (UnifiedJedis client = new UnifiedJedis(node, clientConfig, cache)) {
client.set("foo", "bar");
client.get("foo");
client.get("foo"); // Cache hit
System.out.println("Cache size: " + cache.getSize()); // 1
System.out.println(cache.getStats().toString());
//Let's change the value of "foo" to invalidate the value stored in the local cache
client.mset("foo", "new_value", "ignore_me:1", "another_value");
Thread.sleep(1000); // wait for the cache invalidation to happen
System.out.println(client.get("foo")); // Cache miss
System.out.println(cache.getStats().toString());
client.get("ignore_me:1"); // Client will ignore this key
System.out.println("Cache size: " + cache.getSize()); // still 1
// check the cache stats
System.out.println(cache.getStats().toString());
} catch (InterruptedException e) {
throw new RuntimeException(e);
}

</tr></table>

... (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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 4 updates in the / directory: [com.gradleup.shadow](https://github.com/GradleUp/shadow), org.flywaydb.flyway, [io.github.miniplaceholders:miniplaceholders-api](https://github.com/MiniPlaceholders/MiniPlaceholders) and [redis.clients:jedis](https://github.com/redis/jedis).


Updates `com.gradleup.shadow` from 8.3.3 to 8.3.6
- [Release notes](https://github.com/GradleUp/shadow/releases)
- [Commits](GradleUp/shadow@8.3.3...8.3.6)

Updates `org.flywaydb.flyway` from 11.1.0 to 11.3.3

Updates `io.github.miniplaceholders:miniplaceholders-api` from 2.2.2 to 2.3.0
- [Release notes](https://github.com/MiniPlaceholders/MiniPlaceholders/releases)
- [Commits](MiniPlaceholders/MiniPlaceholders@2.2.2...2.3.0)

Updates `redis.clients:jedis` from 4.3.1 to 5.2.0
- [Release notes](https://github.com/redis/jedis/releases)
- [Commits](redis/jedis@v4.3.1...v5.2.0)

---
updated-dependencies:
- dependency-name: com.gradleup.shadow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: org.flywaydb.flyway
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: io.github.miniplaceholders:miniplaceholders-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: redis.clients:jedis
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 25, 2025
@Mykindos Mykindos merged commit c5141c7 into master Feb 25, 2025
3 checks passed
@Mykindos Mykindos deleted the dependabot/gradle/all-dependencies-dfc0079438 branch February 25, 2025 05:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant