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): bump the dependencies group across 1 directory with 5 updates #173

Merged
merged 1 commit into from
Sep 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2024

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

Package From To
com.fasterxml.jackson.module:jackson-module-jaxb-annotations 2.17.2 2.18.0
com.fasterxml.jackson.module:jackson-module-kotlin 2.17.2 2.18.0
com.fasterxml.jackson.dataformat:jackson-dataformat-xml 2.17.2 2.18.0
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.17.2 2.18.0
redis.clients:jedis 5.1.5 5.2.0

Updates com.fasterxml.jackson.module:jackson-module-jaxb-annotations from 2.17.2 to 2.18.0

Commits
  • 684ac1e [maven-release-plugin] prepare release jackson-modules-base-2.18.0
  • 6c844b3 Prepare for 2.18.0 release
  • 7ae022a Update release notes
  • f269b35 Merge pull request #252 from HelloOO7/2.18
  • fb007fd android-record: Adapt generic types returned by Android reflection to follow ...
  • 032b52e android-record: Adapt generic types returned by Android reflection to follow ...
  • 862ff03 Merge pull request #250 from FasterXML/dependabot/github_actions/github-actio...
  • d9fae8e Bump actions/setup-java from 4.2.1 to 4.2.2 in the github-actions group
  • 26a388d Back to snapshot
  • 919d636 [maven-release-plugin] prepare for next development iteration
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.module:jackson-module-kotlin from 2.17.2 to 2.18.0

Commits
  • 89c01e1 [maven-release-plugin] prepare release jackson-module-kotlin-2.18.0
  • 3cc03a7 Prepare for 2.18.0 release
  • 2ca44e8 Back to snapshot
  • 5437f38 [maven-release-plugin] prepare for next development iteration
  • c115a36 [maven-release-plugin] prepare release jackson-module-kotlin-2.18.0-rc1
  • 39514a4 Prepare for 2.18.0-rc1
  • 4d6561a To 2.18.0-rc1-SNAPSHOT
  • 3e85091 Merge branch '2.18' of github.com:FasterXML/jackson-module-kotlin into 2.18
  • 5d3a4e5 backport: build-helper-maven-plugin to attach kotlin sources (#821)
  • 18680f9 Merge branch '2.17' into 2.18
  • Additional commits viewable in compare view

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

Commits
  • 276d060 [maven-release-plugin] prepare release jackson-dataformat-xml-2.18.0
  • 02e8c2e Prepare for 2.18.0 release
  • 139b0b1 Back to snapshot
  • ffc6880 [maven-release-plugin] prepare for next development iteration
  • 1d5b804 [maven-release-plugin] prepare release jackson-dataformat-xml-2.18.0-rc1
  • 25a936e Prepare for 2.18.0-rc1
  • f8f1a85 Update to 2.18.0-rc1-SNAPSHOT
  • 9c238b2 Merge branch '2.17' into 2.18
  • 400de82 Back to snapshot dep
  • e15bbad [maven-release-plugin] prepare for next development iteration
  • Additional commits viewable in compare view

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

Updates com.fasterxml.jackson.module:jackson-module-kotlin from 2.17.2 to 2.18.0

Commits
  • 89c01e1 [maven-release-plugin] prepare release jackson-module-kotlin-2.18.0
  • 3cc03a7 Prepare for 2.18.0 release
  • 2ca44e8 Back to snapshot
  • 5437f38 [maven-release-plugin] prepare for next development iteration
  • c115a36 [maven-release-plugin] prepare release jackson-module-kotlin-2.18.0-rc1
  • 39514a4 Prepare for 2.18.0-rc1
  • 4d6561a To 2.18.0-rc1-SNAPSHOT
  • 3e85091 Merge branch '2.18' of github.com:FasterXML/jackson-module-kotlin into 2.18
  • 5d3a4e5 backport: build-helper-maven-plugin to attach kotlin sources (#821)
  • 18680f9 Merge branch '2.17' into 2.18
  • Additional commits viewable in compare view

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

Commits
  • 276d060 [maven-release-plugin] prepare release jackson-dataformat-xml-2.18.0
  • 02e8c2e Prepare for 2.18.0 release
  • 139b0b1 Back to snapshot
  • ffc6880 [maven-release-plugin] prepare for next development iteration
  • 1d5b804 [maven-release-plugin] prepare release jackson-dataformat-xml-2.18.0-rc1
  • 25a936e Prepare for 2.18.0-rc1
  • f8f1a85 Update to 2.18.0-rc1-SNAPSHOT
  • 9c238b2 Merge branch '2.17' into 2.18
  • 400de82 Back to snapshot dep
  • e15bbad [maven-release-plugin] prepare for next development iteration
  • Additional commits viewable in compare view

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

Updates redis.clients:jedis from 5.1.5 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

…dates

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

| Package | From | To |
| --- | --- | --- |
| [com.fasterxml.jackson.module:jackson-module-jaxb-annotations](https://github.com/FasterXML/jackson-modules-base) | `2.17.2` | `2.18.0` |
| [com.fasterxml.jackson.module:jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) | `2.17.2` | `2.18.0` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) | `2.17.2` | `2.18.0` |
| com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.17.2` | `2.18.0` |
| [redis.clients:jedis](https://github.com/redis/jedis) | `5.1.5` | `5.2.0` |



Updates `com.fasterxml.jackson.module:jackson-module-jaxb-annotations` from 2.17.2 to 2.18.0
- [Commits](FasterXML/jackson-modules-base@jackson-modules-base-2.17.2...jackson-modules-base-2.18.0)

Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.17.2 to 2.18.0
- [Commits](FasterXML/jackson-module-kotlin@jackson-module-kotlin-2.17.2...jackson-module-kotlin-2.18.0)

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 2.17.2 to 2.18.0
- [Commits](FasterXML/jackson-dataformat-xml@jackson-dataformat-xml-2.17.2...jackson-dataformat-xml-2.18.0)

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

Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.17.2 to 2.18.0
- [Commits](FasterXML/jackson-module-kotlin@jackson-module-kotlin-2.17.2...jackson-module-kotlin-2.18.0)

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-xml` from 2.17.2 to 2.18.0
- [Commits](FasterXML/jackson-dataformat-xml@jackson-dataformat-xml-2.17.2...jackson-dataformat-xml-2.18.0)

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

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

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.module:jackson-module-jaxb-annotations
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-xml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-xml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: redis.clients:jedis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner September 30, 2024 11:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 30, 2024
@MikAoJk MikAoJk merged commit 74e7311 into main Sep 30, 2024
8 checks passed
@MikAoJk MikAoJk deleted the dependabot/gradle/dependencies-68b04f52f2 branch September 30, 2024 11:54
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 java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant