Skip to content

chore: bump bundled fnox to 1.23.0#11

Merged
fullerzz merged 1 commit intomainfrom
sync/fnox-1.23.0
Apr 26, 2026
Merged

chore: bump bundled fnox to 1.23.0#11
fullerzz merged 1 commit intomainfrom
sync/fnox-1.23.0

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

Upstream release

Bumps bundled fnox binary from 1.22.0 to 1.23.0.

Release: https://github.com/jdx/fnox/releases/tag/v1.23.0

Release notes

A small, focused release that adds a line selector for picking a single line out of a multiline secret — most useful for the pass convention of storing the password on line 1 and metadata (username, URL, etc.) on subsequent lines.

Added

Line selector for multiline secrets (#446) -- @fgrosse

Secrets now accept a 1-indexed line field that returns just the Nth line of the resolved value. This matches the pass show <entry> --clip=N convention and lets you expose multiple fields from a single pass entry as separate secrets:

[providers.pass]
type = "password-store"
prefix = "fnox/"

[secrets]
# `pass show fnox/database` returns:
#   <password>
#   <username>
DB_PASSWORD = { provider = "pass", value = "database", line = 1 }
DB_USERNAME = { provider = "pass", value = "database", line = 2 }

Details worth knowing:

  • line is mutually exclusive with json_path; using both on the same secret is an error.
  • Line splitting uses str::lines(), so \r\n endings are handled cleanly and a single trailing newline doesn't shift indices.
  • line = 0 and out-of-range values produce clear error messages (e.g. `line = 5` is out of range; secret has 2 line(s)).
  • Post-processing applies uniformly to provider, default, and env-var sources.
  • fnox sync and fnox reencrypt cache the raw provider value, not the post-processed view, so the selector stays a read-only projection.
  • fnox set still overwrites the entire entry — line is read-only. Edit individual lines of an existing entry with pass edit <entry>.

See the password-store provider docs for a full walkthrough.

New Contributors

Full Changelog: jdx/fnox@v1.22.0...v1.23.0

💚 Sponsor fnox

fnox is maintained by @jdx under en.dev — a small independent studio building developer tooling like mise, aube, hk, and more. Keeping fnox secure, maintained, and free is funded by sponsors.

If fnox is handling secrets or config for you or your team, please consider sponsoring at en.dev. Sponsorships are what let fnox stay independent and the project keep moving.

@fullerzz fullerzz merged commit 9c305f5 into main Apr 26, 2026
@fullerzz fullerzz deleted the sync/fnox-1.23.0 branch April 26, 2026 22:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant