Skip to content

Bump jedis from 3.7.1 to 4.3.0#555

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/maven/redis.clients-jedis-4.3.0
Closed

Bump jedis from 3.7.1 to 4.3.0#555
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/maven/redis.clients-jedis-4.3.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 10, 2022

Bumps jedis from 3.7.1 to 4.3.0.

Release notes

Sourced from jedis's releases.

4.3.0

Changes

4.3.0-m2 release notes 4.3.0-m1 release notes

Following are the changes only since the last milestone release. Please check the notes for milestone releases for all changes.

🧪 Experimental Features

  • Support TDIGEST.[BY][REV]RANK commands (#3158)
  • Support TDIGEST.ADD changes (#3156)

Note - changes to TDIGEST commands may be incompatible with the previous milestone releases.

🐛 Bug Fixes

  • Validate host and port of jedis connection (to sentinel master) (#3155)
  • Fix null property value parsing of search document (#3148)

🧰 Maintenance

  • Upgrade org.JSON to 20220320 (#3161)
  • Upgrade SLF4J to 1.7.36 (#3160)
  • Improve jedis.get doc (#3150)

Contributors

We'd like to thank all the contributors who worked on this release!

@​chayim, @​sazzad16, @​shangjin92, @​shkediy and @​tianshuang

4.3.0-m2

Breaking Changes

  • Separate package for RedisBloom commands (#3112)
  • Add search restrictions while setting field attribute (#3124)

🧪 Experimental Features

  • Support TDIGEST commands (#3097)
  • Re-work on FT.SEARCH, FT.CREATE and FT.ALTER (#3138) (#3120)
  • Migrating QueryBuilders from JRediSearch to support searching (#3107)

🚀 New Features

  • Add SortingOrder argument for GeoRadius, GeoSearch (#3135)
  • Improved binary support for SET command with GET option (#3134)
  • Support remaining TS.ALTER params (#3116)
  • Adding support for custom a CommandExecutor with UnifiedJedis (#3104)
  • Make getBackoffSleepMillis in ClusterCommandExecutor nondeterministic (#3118)

... (truncated)

Commits

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [jedis](https://github.com/redis/jedis) from 3.7.1 to 4.3.0.
- [Release notes](https://github.com/redis/jedis/releases)
- [Commits](redis/jedis@v3.7.1...v4.3.0)

---
updated-dependencies:
- dependency-name: redis.clients:jedis
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java labels Oct 10, 2022
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Oct 24, 2022

Superseded by #587.

@dependabot dependabot Bot closed this Oct 24, 2022
@dependabot dependabot Bot deleted the dependabot/maven/redis.clients-jedis-4.3.0 branch October 24, 2022 04:06
mergify Bot added a commit that referenced this pull request Apr 26, 2026
…o 5.21.0 in /studio [skip ci]

Bumps [enhanced-resolve](https://github.com/webpack/enhanced-resolve) from 5.20.1 to 5.21.0.
Release notes

*Sourced from [enhanced-resolve's releases](https://github.com/webpack/enhanced-resolve/releases).*

> v5.21.0
> -------
>
> ### Minor Changes
>
> * Added promise API and support to resolve without `context` and `resolveContext`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#520](https://redirect.github.com/webpack/enhanced-resolve/pull/520))
> * Add `extensionAliasForExports` option. When `true`, `extensionAlias` also applies to paths resolved through the `package.json` `exports` field. Off by default to match Node.js; opt in for full TypeScript-resolver parity with packages that ship `.ts` sources alongside the compiled `.js` they declare in `exports`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#554](https://redirect.github.com/webpack/enhanced-resolve/pull/554))
>
> ### Patch Changes
>
> * Properly handle DOS device paths (`\\?\…` and `\\.\…`). (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#551](https://redirect.github.com/webpack/enhanced-resolve/pull/551))
> * Prevent fallback to parent node\_modules when the `exports` field target file is not found. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#495](https://redirect.github.com/webpack/enhanced-resolve/pull/495))
> * Imports field spec deviation: non-relative targets (e.g. `"#a": "#b"`) no longer re-enter imports resolution, aligning with the Node.js ESM spec where `PACKAGE_IMPORTS_RESOLVE` does not recursively resolve `#` specifiers. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#503](https://redirect.github.com/webpack/enhanced-resolve/pull/503))
>
>   Previously `{ "#a": "#b", "#b": "./the.js" }` would chain-resolve `#a` to `./the.js`; now it correctly fails, matching Node.js behavior.
> * Move `cachedJoin`/`cachedDirname`/`createCachedBasename` caches from module-level globals to per-Resolver instances. This prevents unbounded memory growth in long-running processes — when a Resolver is garbage collected, its join/dirname/basename caches are released with it. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#507](https://redirect.github.com/webpack/enhanced-resolve/pull/507))
> * Fixed when `tsconfig: true` is used (default config file) and no `tsconfig.json` exists. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#502](https://redirect.github.com/webpack/enhanced-resolve/pull/502))
> * Apply the `extensionAlias` option to the `imports` field to be align with typescript resolution. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#549](https://redirect.github.com/webpack/enhanced-resolve/pull/549))
> * Improved performance of the many plugins. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#529](https://redirect.github.com/webpack/enhanced-resolve/pull/529))
> * Replace the `Set<string>`-based resolver stack with a singly-linked `StackEntry` class that exposes a Set-compatible API. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#526](https://redirect.github.com/webpack/enhanced-resolve/pull/526))
>
>   Each `doResolve` call now prepends a single linked-list node instead of cloning the entire Set, making stack push O(1) in time and memory. Recursion detection walks the linked list (O(n)), but because the stack is typically shallow this is much cheaper than cloning a Set per call.
> * Cache the result of `stripJsonComments` + `JSON.parse` in `readJson` using a `WeakMap` keyed by the raw file buffer. This avoids redundant comment-stripping and JSON parsing on every resolve call that reads tsconfig.json files (via `stripComments: true`), improving TsconfigPathsPlugin warm performance by ~20-35% depending on the depth of the `extends` chain. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#524](https://redirect.github.com/webpack/enhanced-resolve/pull/524))
> * Avoid OOM in CachedInputFileSystem when duration is Infinity. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#527](https://redirect.github.com/webpack/enhanced-resolve/pull/527))


Changelog

*Sourced from [enhanced-resolve's changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md).*

> 5.21.0
> ------
>
> ### Minor Changes
>
> * Added promise API and support to resolve without `context` and `resolveContext`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#520](https://redirect.github.com/webpack/enhanced-resolve/pull/520))
> * Add `extensionAliasForExports` option. When `true`, `extensionAlias` also applies to paths resolved through the `package.json` `exports` field. Off by default to match Node.js; opt in for full TypeScript-resolver parity with packages that ship `.ts` sources alongside the compiled `.js` they declare in `exports`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#554](https://redirect.github.com/webpack/enhanced-resolve/pull/554))
>
> ### Patch Changes
>
> * Properly handle DOS device paths (`\\?\…` and `\\.\…`). (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#551](https://redirect.github.com/webpack/enhanced-resolve/pull/551))
> * Prevent fallback to parent node\_modules when the `exports` field target file is not found. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#495](https://redirect.github.com/webpack/enhanced-resolve/pull/495))
> * Imports field spec deviation: non-relative targets (e.g. `"#a": "#b"`) no longer re-enter imports resolution, aligning with the Node.js ESM spec where `PACKAGE_IMPORTS_RESOLVE` does not recursively resolve `#` specifiers. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#503](https://redirect.github.com/webpack/enhanced-resolve/pull/503))
>
>   Previously `{ "#a": "#b", "#b": "./the.js" }` would chain-resolve `#a` to `./the.js`; now it correctly fails, matching Node.js behavior.
> * Move `cachedJoin`/`cachedDirname`/`createCachedBasename` caches from module-level globals to per-Resolver instances. This prevents unbounded memory growth in long-running processes — when a Resolver is garbage collected, its join/dirname/basename caches are released with it. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#507](https://redirect.github.com/webpack/enhanced-resolve/pull/507))
> * Fixed when `tsconfig: true` is used (default config file) and no `tsconfig.json` exists. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#502](https://redirect.github.com/webpack/enhanced-resolve/pull/502))
> * Apply the `extensionAlias` option to the `imports` field to be align with typescript resolution. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#549](https://redirect.github.com/webpack/enhanced-resolve/pull/549))
> * Improved performance of the many plugins. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#529](https://redirect.github.com/webpack/enhanced-resolve/pull/529))
> * Replace the `Set<string>`-based resolver stack with a singly-linked `StackEntry` class that exposes a Set-compatible API. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#526](https://redirect.github.com/webpack/enhanced-resolve/pull/526))
>
>   Each `doResolve` call now prepends a single linked-list node instead of cloning the entire Set, making stack push O(1) in time and memory. Recursion detection walks the linked list (O(n)), but because the stack is typically shallow this is much cheaper than cloning a Set per call.
> * Cache the result of `stripJsonComments` + `JSON.parse` in `readJson` using a `WeakMap` keyed by the raw file buffer. This avoids redundant comment-stripping and JSON parsing on every resolve call that reads tsconfig.json files (via `stripComments: true`), improving TsconfigPathsPlugin warm performance by ~20-35% depending on the depth of the `extends` chain. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#524](https://redirect.github.com/webpack/enhanced-resolve/pull/524))
> * Avoid OOM in CachedInputFileSystem when duration is Infinity. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#527](https://redirect.github.com/webpack/enhanced-resolve/pull/527))


Commits

* [`35035ca`](webpack/enhanced-resolve@35035ca) chore(release): new release ([#496](https://redirect.github.com/webpack/enhanced-resolve/issues/496))
* [`fd688b1`](webpack/enhanced-resolve@fd688b1) perf: cache conditionalMapping + per-plugin description-file lookups ([#556](https://redirect.github.com/webpack/enhanced-resolve/issues/556))
* [`26f15b0`](webpack/enhanced-resolve@26f15b0) fix(path): classify DOS device paths as Windows-absolute ([#551](https://redirect.github.com/webpack/enhanced-resolve/issues/551))
* [`a04bc4c`](webpack/enhanced-resolve@a04bc4c) docs: add resolvePromise examples for Resolver and ResolverFactory ([#555](https://redirect.github.com/webpack/enhanced-resolve/issues/555))
* [`f9f6d57`](webpack/enhanced-resolve@f9f6d57) Merge pull request [#554](https://redirect.github.com/webpack/enhanced-resolve/issues/554) from webpack/claude/fix-extension-alias-alignment-xC6sZ
* [`c1319d1`](webpack/enhanced-resolve@c1319d1) chore: regenerate types.d.ts after option rename
* [`5a00e63`](webpack/enhanced-resolve@5a00e63) refactor: rename applyExtensionAliasToExportsField to extensionAliasForExports
* [`f5adeee`](webpack/enhanced-resolve@f5adeee) test(alias): guard that absolute path aliasing is not skipped ([#553](https://redirect.github.com/webpack/enhanced-resolve/issues/553))
* [`faa178f`](webpack/enhanced-resolve@faa178f) fix(TsconfigPathsPlugin): give references priority over main paths ([#552](https://redirect.github.com/webpack/enhanced-resolve/issues/552))
* [`e82275d`](webpack/enhanced-resolve@e82275d) test(imports/exports): cover query and fragment in field resolution
* Additional commits viewable in [compare view](webpack/enhanced-resolve@v5.20.1...v5.21.0)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=enhanced-resolve&package-manager=npm\_and\_yarn&previous-version=5.20.1&new-version=5.21.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
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 show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
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

None yet

Development

Successfully merging this pull request may close these issues.

0 participants