Bump gson from 2.9.1 to 2.10#592
Merged
mergify[bot] merged 1 commit intoNov 19, 2022
Merged
Conversation
Bumps [gson](https://github.com/google/gson) from 2.9.1 to 2.10. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/master/CHANGELOG.md) - [Commits](google/gson@gson-parent-2.9.1...gson-parent-2.10) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
robfrank
approved these changes
Nov 19, 2022
mergify Bot
added a commit
that referenced
this pull request
May 24, 2026
…o 5.22.0 in /studio [skip ci] Bumps [enhanced-resolve](https://github.com/webpack/enhanced-resolve) from 5.21.3 to 5.22.0. Release notes *Sourced from [enhanced-resolve's releases](https://github.com/webpack/enhanced-resolve/releases).* > v5.22.0 > ------- > > ### Minor Changes > > * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591)) > > v5.21.6 > ------- > > ### Patch Changes > > * Speed up alias resolution on the hot path. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589)) > > + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`. > + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup. > > Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%. > > v5.21.5 > ------- > > ### Patch Changes > > * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd)) > > v5.21.4 > ------- > > ### Patch Changes > > * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585)) Changelog *Sourced from [enhanced-resolve's changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md).* > 5.22.0 > ------ > > ### Minor Changes > > * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591)) > > 5.21.6 > ------ > > ### Patch Changes > > * Speed up alias resolution on the hot path. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589)) > > + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`. > + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup. > > Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%. > > 5.21.5 > ------ > > ### Patch Changes > > * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd)) > > 5.21.4 > ------ > > ### Patch Changes > > * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585)) Commits * [`25b923a`](webpack/enhanced-resolve@25b923a) chore(release): new release ([#592](https://redirect.github.com/webpack/enhanced-resolve/issues/592)) * [`a0f6257`](webpack/enhanced-resolve@a0f6257) feat: add exact option to CachedInputFileSystem#purge ([#591](https://redirect.github.com/webpack/enhanced-resolve/issues/591)) * [`658315c`](webpack/enhanced-resolve@658315c) chore(release): new release ([#590](https://redirect.github.com/webpack/enhanced-resolve/issues/590)) * [`7d8c24f`](webpack/enhanced-resolve@7d8c24f) perf: bucket alias options by first char & sort exports keys by priority ([#589](https://redirect.github.com/webpack/enhanced-resolve/issues/589)) * [`6a83888`](webpack/enhanced-resolve@6a83888) chore(release): new release ([#588](https://redirect.github.com/webpack/enhanced-resolve/issues/588)) * [`61f36fd`](webpack/enhanced-resolve@61f36fd) chore: add changelog entry * [`9ceca83`](webpack/enhanced-resolve@9ceca83) fix: don't add configDir to modules when tsconfig has no baseUrl ([#587](https://redirect.github.com/webpack/enhanced-resolve/issues/587)) * [`e6f2158`](webpack/enhanced-resolve@e6f2158) chore(release): new release ([#586](https://redirect.github.com/webpack/enhanced-resolve/issues/586)) * [`ec533b6`](webpack/enhanced-resolve@ec533b6) fix: TsconfigPathsPlugin walks up parent directories when tsconfig is true (#... * [`9e1c1e1`](webpack/enhanced-resolve@9e1c1e1) chore(deps): bump actions/create-github-app-token from 3.1.1 to 3.2.0 in the ... * Additional commits viewable in [compare view](webpack/enhanced-resolve@v5.21.3...v5.22.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)
tae898
pushed a commit
to humemai/arcadedb-embedded-python
that referenced
this pull request
Jun 28, 2026
…m.google.code.gson-gson-2.10 Bump gson from 2.9.1 to 2.10
tae898
pushed a commit
to humemai/arcadedb-embedded-python
that referenced
this pull request
Jun 28, 2026
…o 5.22.0 in /studio [skip ci] Bumps [enhanced-resolve](https://github.com/webpack/enhanced-resolve) from 5.21.3 to 5.22.0. Release notes *Sourced from [enhanced-resolve's releases](https://github.com/webpack/enhanced-resolve/releases).* > v5.22.0 > ------- > > ### Minor Changes > > * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591)) > > v5.21.6 > ------- > > ### Patch Changes > > * Speed up alias resolution on the hot path. (by [`@alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589)) > > + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`. > + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup. > > Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%. > > v5.21.5 > ------- > > ### Patch Changes > > * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd)) > > v5.21.4 > ------- > > ### Patch Changes > > * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [ArcadeData#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585)) Changelog *Sourced from [enhanced-resolve's changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md).* > 5.22.0 > ------ > > ### Minor Changes > > * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591)) > > 5.21.6 > ------ > > ### Patch Changes > > * Speed up alias resolution on the hot path. (by [`@alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589)) > > + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`. > + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup. > > Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%. > > 5.21.5 > ------ > > ### Patch Changes > > * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd)) > > 5.21.4 > ------ > > ### Patch Changes > > * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [ArcadeData#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585)) Commits * [`25b923a`](webpack/enhanced-resolve@25b923a) chore(release): new release ([ArcadeData#592](https://redirect.github.com/webpack/enhanced-resolve/issues/592)) * [`a0f6257`](webpack/enhanced-resolve@a0f6257) feat: add exact option to CachedInputFileSystem#purge ([ArcadeData#591](https://redirect.github.com/webpack/enhanced-resolve/issues/591)) * [`658315c`](webpack/enhanced-resolve@658315c) chore(release): new release ([ArcadeData#590](https://redirect.github.com/webpack/enhanced-resolve/issues/590)) * [`7d8c24f`](webpack/enhanced-resolve@7d8c24f) perf: bucket alias options by first char & sort exports keys by priority ([ArcadeData#589](https://redirect.github.com/webpack/enhanced-resolve/issues/589)) * [`6a83888`](webpack/enhanced-resolve@6a83888) chore(release): new release ([#588](https://redirect.github.com/webpack/enhanced-resolve/issues/588)) * [`61f36fd`](webpack/enhanced-resolve@61f36fd) chore: add changelog entry * [`9ceca83`](webpack/enhanced-resolve@9ceca83) fix: don't add configDir to modules when tsconfig has no baseUrl ([ArcadeData#587](https://redirect.github.com/webpack/enhanced-resolve/issues/587)) * [`e6f2158`](webpack/enhanced-resolve@e6f2158) chore(release): new release ([ArcadeData#586](https://redirect.github.com/webpack/enhanced-resolve/issues/586)) * [`ec533b6`](webpack/enhanced-resolve@ec533b6) fix: TsconfigPathsPlugin walks up parent directories when tsconfig is true (#... * [`9e1c1e1`](webpack/enhanced-resolve@9e1c1e1) chore(deps): bump actions/create-github-app-token from 3.1.1 to 3.2.0 in the ... * Additional commits viewable in [compare view](webpack/enhanced-resolve@v5.21.3...v5.22.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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps gson from 2.9.1 to 2.10.
Release notes
Sourced from gson's releases.
... (truncated)
Changelog
Sourced from gson's changelog.
Commits
dd92e49[maven-release-plugin] prepare release gson-parent-2.107ca36c5Add a\<developers>section to the mainpom.xml.79c27dd[maven-release-plugin] prepare for next development iteration87e9ee5[maven-release-plugin] prepare release gson-parent-2.104705518Revise the version regex inGsonVersionDiagnosticsTest. (#2228)7bca5c4[maven-release-plugin] rollback the release of gson-parent-2.10c7544a0[maven-release-plugin] prepare for next development iteration9efdfad[maven-release-plugin] prepare release gson-parent-2.104f948ddAutomatically replace version references onrelease:prepare(#2212)9578583Small tweaks to fix Error Prone warnings. (#2227)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)