Skip to content

chore(deps): update dependency ubi:render-oss/cli to v2.14.0#588

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/ubi-render-oss-cli-2.x
Open

chore(deps): update dependency ubi:render-oss/cli to v2.14.0#588
renovate[bot] wants to merge 1 commit intomainfrom
renovate/ubi-render-oss-cli-2.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2026

This PR contains the following updates:

Package Update Change
ubi:render-oss/cli minor 2.6.12.14.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

render-oss/cli (ubi:render-oss/cli)

v2.14.0

Compare Source

Added
  • Support for IP allow list, previews, and additional service fields in services create
  • workflows init command for scaffolding new workflow projects from templates
  • Added local workflows task output to local task server logs
Changed
  • Reformatted CLI help output with new visual styles
Fixed
  • Fixed flag parsing to preserve user intent by treating unset flags as nil
  • Fixed local workflows task runs not being visible in interactive list

v2.13.0

Compare Source

Added
  • services create command to create services via the CLI

v2.12.0

Compare Source

Added
  • Support for paginated workflows task run listing
  • Handle succeeded workflows task run status
Changed
  • Renamed "task identifier" / "task ID" to "task slug" in error messages and help text for workflows

v2.11.0

Compare Source

Added
Workflows
  • render workflows list interactive palette for browsing and managing workflows
  • Support for named-parameter (object) input for task runs (Python workflows only)
Early Access
  • render ea objects delete supports deleting multiple objects
Changed
General
  • Skip auth and workspace selection prompts for --local commands
Workflows
  • Breaking: Promoted workflows commands from render ea to render workflows
  • Breaking: Moved taskruns start to tasks start
  • Breaking: Renamed taskruns command to runs
  • Moved local development dev command from workflows tasks to workflows
  • Skip version selection step in interactive task navigation (use most recent version)
  • Use compact tables for workflows task and task run lists
  • Improved tasks dev startup output
Fixed
General
  • Show loading spinner in content pane only, keeping header and footer visible
Workflows
  • Fixed --wait on versions release to poll until completion
  • Fixed tasks dev hang when start command is invalid or crashes
  • Fixed local task run input display and interactive mode bugs
  • Fixed local taskruns list when no task id specified or id is a slug
  • Fixed local dev server generating UUIDs instead of XIDs for task IDs
  • Fixed local dev server logs endpoint returning incorrect response format
  • Fixed referencing local dev server tasks by slug only
  • Fixed malformed format string in taskruns show -o text
  • Fixed "service id" error typo when validating TaskRunInput
  • Fixed missing parent and root task ids in local task runs
  • Fixed local dev server returning task runs with attempts: null
  • Fixed error message when starting a task run for a nonexistent task in local dev

v2.10

Compare Source

Fixes & Improvements

  • Render skills CLI management: We added a CLI command to help users install, update and manage skills for AI agents from render-oss/skills.

Full Changelog: render-oss/cli@v2.9.1...v2.10

v2.9.1

Compare Source

Fixes & Improvements

  • Restore text as default output format for non-TTY output: when the CLI detects a non-interactive context (e.g., piped output), the auto-resolved output format is text. Previously, v2.9.0 changed the default output to JSON for non-interactive contexts.
  • Show user email in workspaces header: the breadcrumb header for render workspaces displays the user's email instead of the workspace name ([user email] > Workspaces)
  • Pre-select current workspace: For both render workspaces and render workspace set, the current workspace is pre-selected in the TUI

Full Changelog: render-oss/cli@v2.9.0...v2.9.1

v2.9.0

Compare Source

Features

Ephemeral shell via render ssh

Connect to a temporary, isolated shell instance with --ephemeral / -e.

# Interactive: select a service from the current workspace, then connect ephemerally
render ssh

# Launch an ephemeral shell for a service
render ssh my-service --ephemeral

# Short flag
render ssh my-service -e
Support RENDER_OUTPUT env var

Globally configure an output format without needing to specify it with every command.

Order of precedence:

  1. Value of a command's --output / -o flag
  2. Value of RENDER_OUTPUT environment variable
  3. Auto-detection based on TTY/CI signals
# Set default output format for all commands
export RENDER_OUTPUT=json

# Override default per command
render services list -o yaml

Fixes & Improvements

  • Support ~ expansion in file path flags. --flag=~/path now correctly resolves to $HOME/path for objects put/get --file, taskruns start --input-file, and blueprints validate [file]
  • Skip TUI for non-interactive commands. Eliminates a visual flash for commands that don't render a TUI

Full Changelog: render-oss/cli@v2.8.0...v2.9.0

v2.8.0

Compare Source

Features

  • render psql now supports non-interactive usage:

    • --command / -c — run a query and exit; output format via -o json|yaml|text.
    • Passthrough of extra psql flags via -- [args] (e.g. -- --csv, -- -t -A).

    Examples:

    # Interactive mode (default)
    render psql my-database
    
    # Single value, plain text
    render psql my-database -c "SELECT NOW();" -o text
    
    # Table as JSON or YAML (e.g. for scripts or tooling)
    render psql my-database -c "SELECT id, name FROM projects LIMIT 5;" -o json
    render psql my-database -c "SELECT id, name FROM projects LIMIT 5;" -o yaml
    
    # CSV output via psql passthrough
    render psql my-database -c "SELECT id, email FROM users;" -o text -- --csv
    
    # Multiple queries in one call (separate with semicolons)
    render psql my-database -c "SELECT 1 AS a; SELECT 2 AS b;" -o text
  • render workspaces lists available workspaces

    • Interactive (default) and non-interactive output: -o text, -o json, -o yaml.

    Examples:

    # Interactive mode (default): browse workspaces in the terminal
    render workspaces
    
    # Plain text table (e.g. for logs or quick scans)
    render workspaces -o text
    
    # JSON for scripts, CI, or piping into jq
    render workspaces -o json
    render workspaces -o json | jq '.[].name'
    
    # YAML for config or docs
    render workspaces -o yaml

Fixes & Improvements

  • --version prints new version if available
  • Fixed anchor link for installation instructions URL

Full Changelog: render-oss/cli@v2.7.1...v2.8.0

v2.7.1

Compare Source

Changing blueprint Validate types to KeyValue from Redis

Full Changelog: render-oss/cli@v2.7.0...v2.7.1

v2.7.0

Compare Source

Added blueprint validate command

Full Changelog: render-oss/cli@v2.6.1...v2.7.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jan 30, 2026
@renovate renovate bot requested a review from ryo246912 January 30, 2026 04:37
@coderabbitai
Copy link

coderabbitai bot commented Jan 30, 2026

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from bbf67f0 to 59d82d6 Compare January 31, 2026 04:49
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.7.0 chore(deps): update dependency ubi:render-oss/cli to v2.7.1 Jan 31, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from 59d82d6 to fd5f094 Compare February 2, 2026 21:48
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch 2 times, most recently from 6a77dee to 9bdd167 Compare February 12, 2026 23:40
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.7.1 chore(deps): update dependency ubi:render-oss/cli to v2.8.0 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from 9bdd167 to 811bbaa Compare February 15, 2026 01:48
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.8.0 chore(deps): update dependency ubi:render-oss/cli to v2.9.0 Feb 15, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from 811bbaa to 95cd33b Compare February 15, 2026 18:04
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.9.0 chore(deps): update dependency ubi:render-oss/cli to v2.9.1 Feb 15, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from 95cd33b to 929535e Compare February 20, 2026 21:41
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.9.1 chore(deps): update dependency ubi:render-oss/cli to v2.10 Feb 20, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from 929535e to 44086ce Compare March 7, 2026 04:52
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.10 chore(deps): update dependency ubi:render-oss/cli to v2.11.0 Mar 7, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from 44086ce to b818551 Compare March 9, 2026 21:58
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.11.0 chore(deps): update dependency ubi:render-oss/cli to v2.12.0 Mar 9, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from b818551 to e998223 Compare March 13, 2026 02:06
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.12.0 chore(deps): update dependency ubi:render-oss/cli to v2.13.0 Mar 13, 2026
@renovate renovate bot force-pushed the renovate/ubi-render-oss-cli-2.x branch from e998223 to 9c9c72e Compare March 17, 2026 05:48
@renovate renovate bot changed the title chore(deps): update dependency ubi:render-oss/cli to v2.13.0 chore(deps): update dependency ubi:render-oss/cli to v2.14.0 Mar 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants