Skip to content

chore(deps): bump github.com/tomwright/dasel/v3 from 3.3.2 to 3.10.1#1104

Open
dependabot[bot] wants to merge 1 commit into
v3from
dependabot/go_modules/github.com/tomwright/dasel/v3-3.10.1
Open

chore(deps): bump github.com/tomwright/dasel/v3 from 3.3.2 to 3.10.1#1104
dependabot[bot] wants to merge 1 commit into
v3from
dependabot/go_modules/github.com/tomwright/dasel/v3-3.10.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Bumps github.com/tomwright/dasel/v3 from 3.3.2 to 3.10.1.

Release notes

Sourced from github.com/tomwright/dasel/v3's releases.

v3.10.1

Full Changelog: TomWright/dasel@v3.10.0...v3.10.1

v3.10.0

What's Changed

Full Changelog: TomWright/dasel@v3.9.0...v3.10.0

v3.9.0

New Functions

  • groupBy(expr) — Group array elements by a derived key expression, producing a map of key to matching elements.
[{"name": "Alice", "dept": "eng"}, {"name": "Bob", "dept": "eng"}, {"name":
"Carol", "dept": "sales"}].groupBy(dept)
// {"eng": [...], "sales": [...]}
  • reduce(expr, init, update) — Fold an array into a single value using an accumulator ($acc).
[1, 2, 3, 4].reduce($this, 0, $acc + $this)
// 10
  • mapValues(expr) — Transform all values of a map/object while preserving keys.
{"a": 1, "b": 2, "c": 3}.mapValues($this * 2)
// {"a": 2, "b": 4, "c": 6}

New Iteration Variable: $key

All iteration expressions now expose a $key variable — the current index (for arrays) or key name (for maps).

Supported in: filter, map, each, sortBy, groupBy, any, all, count, reduce, mapValues, search, and recursive descent.

[10, 20, 30].map($key)
// [0, 1, 2]

[10, 20, 30].filter($key >= 1) // [20, 30]

</tr></table>

... (truncated)

Changelog

Sourced from github.com/tomwright/dasel/v3's changelog.

[v3.10.1] - 2026-05-13

Fixed

  • Fixed a non-terminating loop in the selector lexer when tokenizing unterminated regex patterns (e.g. r/abc). The tokenizer now returns an error instead of looping indefinitely.
  • Fix panic when selector query contains a trailing backslash in a quoted string (GHSA-m5j3-4634-c2vq).

[v3.10.0] - 2026-05-13

Added

  • KDL format support (-i kdl / -o kdl) for reading and writing KDL configuration files (#504). Supports both v1 and v2 syntax with automatic version detection. Output version is configurable via --write-flag kdl-version=1 or --write-flag kdl-version=2 (default).

[v3.9.0] - 2026-05-13

Added

  • groupBy(expr) function to group array elements by a derived key expression, producing a map of key to matching elements.
  • reduce(expr, init, update) function for folding arrays into a single value using an accumulator ($acc).
  • mapValues(expr) function for transforming all values of a map/object while preserving keys.
  • $key variable available in all iteration expressions (filter, map, each, sortBy, groupBy, any, all, count, reduce, mapValues, search, recursive descent). Provides the current index (for slices) or key name (for maps).

[v3.8.1] - 2026-04-30

[v3.8.0] - 2026-04-26

Added

  • dasel completion <shell> subcommand to generate shell completion scripts for bash, zsh, fish, and powershell (#497).
  • dasel man subcommand to generate a man page (#497).

Fixed

  • YAML string quote style (double, single, literal, folded) is now preserved on round-trip (#452).

[v3.7.0] - 2026-04-25

Changed

  • merge function now performs deep merge, recursively merging nested maps (#133).

[v3.6.0] - 2026-04-25

Added

  • --compact flag for compact output (no indentation/newlines).

Changed

... (truncated)

Commits
  • e3c6663 Update CHANGELOG for v3.10.1 release
  • 95f8dd3 Merge commit from fork
  • fbae3bf Update CHANGELOG with trailing backslash security fix
  • 5fc1172 Merge commit from fork
  • 7c15ae0 Update CHANGELOG for v3.10.0 release
  • 242bdc9 Add KDL format support (v1 + v2) (#546)
  • 919dc66 Update CHANGELOG for v3.9.0 release
  • d74a00c Add $key variable to iteration executors
  • 3ff0a3b Add test coverage for orderedmap, selector, and selector/ast
  • 32ea87d Increase test coverage for execution, model, and selector/parser
  • Additional commits viewable in compare view

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 show <dependency name> 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/tomwright/dasel/v3](https://github.com/tomwright/dasel) from 3.3.2 to 3.10.1.
- [Release notes](https://github.com/tomwright/dasel/releases)
- [Changelog](https://github.com/TomWright/dasel/blob/master/CHANGELOG.md)
- [Commits](TomWright/dasel@v3.3.2...v3.10.1)

---
updated-dependencies:
- dependency-name: github.com/tomwright/dasel/v3
  dependency-version: 3.10.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels May 19, 2026
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 go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants