All Versions
17
Latest Version
Avg Release Cycle
256 days
Latest Release
321 days ago

Changelog History
Page 1

  • v1.6.2 Changes

    July 30, 2025

    What's Changed

    • ๐Ÿ”’ [StepSecurity] Apply security best practices by @stepsecurity-app[bot] in #262
    • โช Restore fish completion by @jasonkarns in #264

    Full Changelog : v1.6.1...v1.6.2

  • v1.6.1 Changes

    July 27, 2025

    Full Changelog : v1.6.0...v1.6.1

  • v1.6.0 Changes

    July 27, 2025

    What's Changed

    • rbenv upstream by @jasonkarns in #224
    • ๐Ÿ›  Fix npm pkg warnings by @jasonkarns in #225
    • โž• Add dependabot configuration by @jasonkarns in #226
    • โฌ†๏ธ Bump actions/checkout from 3 to 4 by @dependabot[bot] in #228
    • โฌ†๏ธ Bump bats-assert from 8200039 to e2d855b by @dependabot[bot] in #229
    • โฌ†๏ธ Bump mislav/bump-homebrew-formula-action from 2 to 3 by @dependabot[bot] in #227
    • โฌ†๏ธ Bump bats-support from 004e707 to 9bf10e8 by @dependabot[bot] in #231
    • โฌ†๏ธ Bump actions/setup-node from 3 to 4 by @dependabot[bot] in #230
    • โฌ†๏ธ Bump nodenv/.github from 3 to 4 by @dependabot[bot] in #233
    • โฌ†๏ธ Bump github/super-linter from 4 to 6 by @dependabot[bot] in #232
    • Increase dependabot running to weekly by @jasonkarns in #234
    • โšก๏ธ Update bats 1.11.0 โ†’ 1.11.1 (patch) by @depfu[bot] in #239
    • โšก๏ธ Update bats 1.11.1 โ†’ 1.12.0 (minor) by @depfu[bot] in #244
    • ๐Ÿ”’ [StepSecurity] Apply security best practices by @stepsecurity-app[bot] in #245
    • Batch and cooldown dependabot PRs by @jasonkarns in #246
    • โšก๏ธ Bump the dev-deps group with 2 updates by @dependabot[bot] in #247
    • โฌ†๏ธ Bump to latest nodenv test workflow by @jasonkarns in #248
    • Ungroup dependabot PRs by @jasonkarns in #249
    • โฌ†๏ธ Bump github/super-linter from 6 to 7 by @dependabot[bot] in #237
    • ๐Ÿšš Move rbenv tags to rbtags namespace by @jasonkarns in #250
    • Pull upstream changes from rbenv (most of 1.3.0) by @jasonkarns in #251
    • ๐Ÿ‘• Prettier format and lintfixes by @jasonkarns in #252
    • โšก๏ธ Pull updates from rbenv upstream (~1.3.0) by @jasonkarns in #254
    • Clean up gitignore by @jasonkarns in #255
    • โšก๏ธ Merge in updates from rbenv 1.3.0 by @jasonkarns in #256
    • โšก๏ธ Merge updates from rbenv 1.3.1 by @jasonkarns in #258
    • โšก๏ธ Pull updates from rbenv 1.3.2 by @jasonkarns in #259
    • ๐Ÿ‘‰ Use asciidoctor.js for manpage generation by @jasonkarns in #260
    • โœ‚ Remove old native_ext src tree by @jasonkarns in #261

    ๐Ÿ†• New Contributors

    • @dependabot[bot] made their first contribution in #228
    • @stepsecurity-app[bot] made their first contribution in #245

    Full Changelog : v1.5.0...v1.6.0

  • v1.5.0 Changes

    May 27, 2024

    What's Changed

    ๐Ÿ†• New Contributors

    Full Changelog : v1.4.1...v1.5.0

  • v1.4.1

    February 18, 2023
  • v1.4.0 Changes

    July 20, 2020

    ๐Ÿ– Handle aliases in lts dir for versions

    โšก๏ธ Update to add support for direct lts aliases

    Presence of bin/ subdir determines versionness

    Only recurses into lts/ subdir to find versions but now uses the
    presence of a bin/ subdir to determine if a given directory should be
    considered a node version and listed.

    This covers whether "lts" is itself a direct named version, alias, or
    namespace for other versions/aliases.

  • v1.3.2 Changes

    March 31, 2020

    ๐Ÿ“‡ workflow and metadata maintenance

  • v1.3.1 Changes

    November 04, 2019

    Clarify the description of rbenv versions

    ๐Ÿ›  Fixes #1148

    rbenv 1.1.2

    ๐Ÿ’Ž Disallow path segments and directory traversal in .ruby-version files

    ๐Ÿ’Ž A malicious .ruby-version file in the current directory could inject
    ../../../ into the version string and trigger execution of binaries
    outside of RBENV_ROOT/versions/.

    ๐Ÿ›  Fixes #977 OVE-20170303-0004

    ๐Ÿ‘‰ Make --version more semver friendly

    The current output of nodenv --version is essentially the direct output
    of git-describe, which is TAG-COMMITS_SINCE_TAG-gSHA.

    ๐Ÿ“‡ The commits-since, and sha segments would be considered build metadata
    in semver parlance.

    This change tweaks the output of git-describe such that it is in a
    semver compliant format; despite not strictly being semver compliant in
    semantics. (Which isn't really possible with edge/HEAD anyway)

    It also eliminates the "g" prefix which is used to denote the sha
    references the git SCM.

    rbenv help: fix 'type: write error: Broken pipe'

    Sometimes the command fails with a 'type: write error: Broken pipe'.
    This is because 'head -1' only reads the first line, then exits.
    If 'type' writes the second line after 'head -1' has already exited,
    then the aforementioned error is triggered.

    We fix this by buffering the entire output of 'type' before
    invoking 'head -1'.

    Silence errors when piping type | head -1

    ๐Ÿ‘ Allow / in version names

    ๐Ÿšš rbenv removed support for directory traversal .. as well as path
    segments. However, nodenv has a valid use-case for path segments: the
    lts alias names.

    This change keeps the .. pattern blocked, while allowing forward
    slashes in the version name.

    ๐Ÿ‘€ see:
    rbenv/rbenv#977 (comment)

  • v1.3.0 Changes

    May 04, 2019

    nodenv-version learns to describe aliases

    ๐Ÿ–จ When printing the current node version and its origin (how it was set),
    nodenv-version now resolves any symlinks to determine the final
    targeted version.

    ๐Ÿ–จ It prints the version name as selected, an arrow and the aliased version
    name, and finally the origin.
    If the version is not an alias, the output is the same as before.

    This only affects the output of nodenv version;
    nodenv-version-name and nodenv-version-origin are unaffected.

    โœ‚ Remove test-only abort messages

    These messages are only printed if NODENV_NATIVE_EXT is set; and it is
    โœ… only set for test runs. (It is not expected to be set by users.) Thus
    these messages are only useful when running on travis, and I'd rather
    โœ… there not be test-only code running for users.

    Ignore errors if nodenv-prefix fails

    ๐Ÿ–จ nodenv-prefix will print errors to STDERR if node isn't available in
    ๐Ÿšš PATH. (As demonstrated on Travis, since the nvm's nodes are removed from
    โœ… PATH by the test-helper.)

    We don't actually care if node is available in PATH or not for this
    ๐Ÿ–จ check, we only care to print the selected node and follow it if it's a
    symlink. So if nodenv-prefix fails, the path would be empty, thus no
    ๐Ÿ–จ need to follow it and we just print the same message as before.

    ๐Ÿ–จ Print versions in semantic order

    ๐Ÿ— Take sort_versions function from node-build (which is broken).
    ๐Ÿ‘‰ Use extended regular expression for simplicity
    ๐Ÿšš Ignore semver-spec characters from sorting. (remove , ~, etc)
    Ensure shorter version names sort first (.0 instead of .z)
    Ensure node versions sort above others; iojs, chakra, etc (prefix a. if
    leading digit)

    ๐Ÿ›  Fix incorrect count of versions in nodenv versions

  • v1.2.0 Changes

    December 23, 2018

    ๐Ÿ›  Fix fish subcommand completion

    ๐Ÿ’… This allows subcommand style plugins to properly autocomplete.
    Existing commands are not affected.

    ๐Ÿ‘ Example, say you have support for rbenv foo bar --flag, then
    this allows the last --flag argument to be properly completed.

    ๐Ÿ›  Fix pyenv -> rbenv typo

    partly resolve #759

    • some versions of bash (e.g. 4.3.11) complain about clobbering
      /dev/null, use bash's explicit >| operator to ignore noclober
    • not sure if the original #759 report has the same cause

    - rbenv/rbenv#759 (comment)

    Enforce absolute RBENV_DIR

    This prevents CDPATH from becoming an issue.

    Closes #866.

    Don't unset CDPATH

    rbenv-version-file: ensure that the version file is a file

    Forwarded from pyenv/pyenv#606.

    rbenv 1.1.1

    ๐Ÿ›  Fixed rbenv init - output to work w/ no args and bash's set -u.

    Quote directory name in variable assignment

    ๐Ÿ›  Fix some issues reported by shellcheck

    ๐Ÿ‘ Better error message for rbenv shell

    0๏ธโƒฃ Shell integration is not enabled by default. This means that, from all the
    commands from rbenv commands, only "shell" won't work right away.

    Replace "no such command" with a more descriptive message that points to
    rbenv init instead.

    ๐Ÿ›  Fix rbenv/rbenv#1065

    ๐Ÿ’Ž Command rbenv version-name > .ruby-version will create an empty .ruby-version file
    before running rbenv-version-file. This causes rbenv-version-file to return empty
    string which in turn causes rbenv-version-name to return system.

    โ†ช Ensure size of .ruby-version is non-zero as a workaround.

    โœ‚ Remove ableist language

    rbenv-which: change PATH only for the "command -v" lookup

    This is not really necessary, because rbenv-which is used in a subshell
    currently, but makes a difference if rbenv-which would be sourced.

    rbenv-prefix: do not silence rbenv-which for system version

    This suppressed any output when using RBENV_DEBUG=1 and does not really
    hurt to have in the unlikely case that it should fail; you would get
    two error messages now:

    ๐Ÿ’Ž rbenv: ruby: command not found
    rbenv: system version not found in PATH