Skip to content

chore(deps): update dependency huggingface-hub to v1.14.0#1513

Open
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/huggingface-hub-1.x-lockfile
Open

chore(deps): update dependency huggingface-hub to v1.14.0#1513
red-hat-konflux[bot] wants to merge 1 commit into
mainfrom
konflux/mintmaker/main/huggingface-hub-1.x-lockfile

Conversation

@red-hat-konflux
Copy link
Copy Markdown

@red-hat-konflux red-hat-konflux Bot commented Mar 1, 2026

This PR contains the following updates:

Package Change Age Confidence
huggingface-hub 1.10.11.14.0 age confidence

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

huggingface/huggingface_hub (huggingface-hub)

v1.14.0: [v1.14.0] Handle Spaces secrets & variables from CLI and other improvements

Compare Source

🖥️ Manage Space secrets and variables from the CLI

You can now manage Space secrets and environment variables directly from the command line with two new hf spaces subgroups: secrets and variables. Use hf spaces secrets to add, list, and delete write-only secrets, and hf spaces variables to add, list, and delete readable environment variables. Both add commands support multiple -s/-e flags and --secrets-file/-env-file for loading from dotenv files. On the Python side, HfApi.get_space_secrets() returns secret metadata (key, description, updated timestamp) without ever revealing values.

# List secrets (values are write-only — only keys and timestamps are shown)
$ hf spaces secrets ls username/my-space

# Add secrets
$ hf spaces secrets add username/my-space -s OPENAI_API_KEY=sk-...
$ hf spaces secrets add username/my-space --secrets-file .env.secrets

# Delete a secret (confirmation prompt, use --yes to skip)
$ hf spaces secrets delete username/my-space OPENAI_API_KEY --yes

# List, add, and delete variables (values are readable)
$ hf spaces variables ls username/my-space
$ hf spaces variables add username/my-space -e MODEL_ID=gpt2 -e MAX_TOKENS=512
$ hf spaces variables delete username/my-space MAX_TOKENS --yes

📚 Documentation: CLI guide · Manage your Space

🪣 Rsync-style trailing slash for bucket folder copies

hf buckets cp now supports rsync-style trailing slash semantics when copying folders. A trailing / on the source path copies only the folder's contents to the destination, while omitting it nests the folder itself — matching the behavior you'd expect from rsync. This makes it possible to flatten directory structures during copies, which was not possible before. Additionally, copy_files now raises an explicit EntryNotFoundError when the source path resolves to no files, instead of silently succeeding with zero operations.

# Without trailing slash: "logs" dir is nested => dst/logs/...
$ hf buckets cp hf://buckets/username/src-bucket/logs hf://buckets/username/dst/

# With trailing slash: only contents of "logs" are copied => dst/...
$ hf buckets cp hf://buckets/username/src-bucket/logs/ hf://buckets/username/dst/

📚 Documentation: Buckets guide · CLI guide

💔 Breaking Change

  • [CLI] Rename hf skills upgrade -> hf skills update by @​hanouticelina in #​4176hf skills upgrade no longer exists; use hf skills update instead.
  • [CLI] Add out.status() by @​hanouticelina in #​4171 — status updates (spinners/progress) on hf extensions install and hf spaces dev-mode are now suppressed when using --format json, --quiet, or --format agent.

🖥️ CLI

🐛 Bug and typo fixes

🏗️ Internal

v1.13.0: [v1.13.0] new CLI commands and formatting, and HF URI parsing

Compare Source

🖥️ New CLI commands: repo cards, file listings, and dataset leaderboards

This release adds three new CLI capabilities for exploring Hub content. hf models card, hf datasets card, and hf spaces card fetch the README of any repo and print it to stdout, with --metadata (YAML frontmatter as JSON) and --text (prose only) flags for splitting the card into its structured and unstructured parts. Calling hf models ls <repo_id>, hf datasets ls <repo_id>, or hf spaces ls <repo_id> now switches from listing repos to listing files inside that repo, with --tree, -R, -h, and --revision options mirroring the existing hf buckets ls behavior. And hf datasets leaderboard <dataset_id> surfaces model scores submitted to a benchmark dataset, making it easy to compare models by score from the terminal.

# Get model card metadata as JSON
hf models card google/gemma-4-31B-it --metadata --format json

# List files in a model repo (tree view with sizes)
hf models ls meta-llama/Llama-3.2-1B-Instruct --tree -h

# Show top 5 models on SWE-bench
hf datasets leaderboard SWE-bench/SWE-bench_Verified --limit 5

📚 Documentation: CLI guide

🚀 Manage Spaces from the CLI

Three new hf spaces subcommands bring full lifecycle control to the terminal. hf spaces pause and hf spaces restart stop or rebuild a Space (with --factory-reboot for a clean rebuild), and hf spaces settings lets you configure sleep time and hardware in one call. A companion hf spaces hardware command lists all available hardware flavors with pricing, so you can discover options before changing settings. Pause and restart include a confirmation prompt (-y to skip) since they tear down the running container.

# Pause a Space when not in use (not billed while paused)
hf spaces pause username/my-space

# Restart with a GPU
hf spaces settings username/my-space --hardware t4-medium --sleep-time 3600

# List available hardware options
hf spaces hardware

📚 Documentation: CLI guide — Spaces

🔃 hf update replaces the auto-update prompt

The blocking interactive Y/n auto-update prompt at CLI startup is gone. It was catching too many non-interactive contexts (CI runners, Homebrew post-install hooks, Jupyter notebooks) and hanging automation. In its place, a single yellow stderr warning suggests running hf update — a new command that detects how hf was installed (Homebrew, standalone installer, or pip) and runs the right upgrade command. Set HF_HUB_DISABLE_UPDATE_CHECK=1 to silence the startup check entirely, for example in offline CI.

hf update

📚 Documentation: CLI guide — Updating

✏️ Global output formatting for every command

The --format, --json, and -q / --quiet flags are now handled globally by the CLI framework instead of being declared individually on each command. This means every hf command automatically accepts them — no more per-command --format boilerplate, and the flags are properly documented in a dedicated "Formatting options" section in every --help page. --format auto (the default) picks human for interactive terminals and agent when invoked by an AI agent, making CLI output automatically suitable for both people and tools.

# JSON output for scripting
hf models ls --search bert --limit 2 --json | jq '.[].id'

# IDs only, one per line
hf collections ls --owner nvidia -q

📚 Documentation: CLI guide — Output formatting

🔗 Centralized hf:// URI parsing

A new parse_hf_uri function and HfUri dataclass provide a single source of truth for parsing hf://... strings across the library. Whether you reference a model, dataset, space, bucket, or file inside a repo, the parser handles all valid URI shapes — type prefixes, revisions, and paths — and rejects invalid ones with clear error messages. A companion parse_hf_mount / HfMount handles volume mount specifications (hf://...:/mnt:ro). Both are pure string parsers (no network calls) and round-trippable via .to_uri().

from huggingface_hub import parse_hf_uri, parse_hf_mount

parse_hf_uri("hf://datasets/namespace/my-dataset@refs/pr/3/train.json")

# HfUri(type='dataset', id='namespace/my-dataset', revision='refs/pr/3', path_in_repo='train.json')

parse_hf_mount("hf://buckets/my-org/my-bucket/sub/dir:/mnt:ro")

# HfMount(source=HfUri(type='bucket', id='my-org/my-bucket', ...), mount_path='/mnt', read_only=True)

📚 Documentation: HF URIs reference

🚀 Bucket transport for Jobs script upload

Local scripts uploaded by hf jobs uv run are now stored in a {namespace}/jobs-artifacts bucket and mounted into the job container at /data instead of being base64-encoded into an environment variable. The old bash -c + xargs + base64 -d pipeline was fragile and required manual shell quoting. Bucket transport is simpler, easier to debug, and supports write-back: jobs can persist output artifacts to /data/ since the mount is read-write. The base64 transport path has been fully removed with no fallback.

🖥️ CLI

  • [CLI] Print help when leaf command with required args is called without args by @​Wauplin in #​4135

🤖 Inference

📖 Documentation

🐛 Bug and typo fixes

🏗️ Internal

v1.12.2: [v1.12.2] Add DeepInfra support for Inference Providers

Compare Source

Full Changelog: huggingface/huggingface_hub@v1.12.1...v1.12.2

v1.12.1

Compare Source

v1.12.0: [v1.12.0] Unified CLI output, bucket search, and more

Compare Source

🖥️ Unified output format for hf buckets commands

All hf buckets commands now use the unified --format [auto|human|agent|json|quiet] flag and the out singleton for consistent, scriptable output. The previous --quiet and --format table|json flags have been replaced by a single --format option that works across create, list, info, delete, rm, move, and cp. Success messages use out.result(), detail views use out.dict(), and listings use out.table() with proper empty-results handling — making the buckets CLI consistent with the rest of the hf command suite.

# Quiet mode: print only bucket IDs
hf buckets list --format quiet

# JSON output for scripting
hf buckets create my-bucket --format json

# Agent-friendly structured output
hf buckets info username/my-bucket --format agent

📚 Documentation: Buckets guide · CLI guide

🪣 Search buckets by name

You can now filter buckets by name when listing them, both from the Python API and the CLI. Pass search="checkpoint" to list_buckets() or --search "checkpoint" to hf buckets list to find buckets matching a name pattern, without having to list and filter client-side.

# Filter buckets by name
hf buckets list --search "checkpoint"
# Filter buckets by name in Python
for bucket in list_buckets(search="checkpoint"):
    print(bucket.id)

📚 Documentation: Buckets guide · CLI guide

🖥️ CLI

🐛 Bug and typo fixes

🔧 Other QoL Improvements

🏗️ Internal

v1.11.0: [v1.11.0] Semantic Spaces search, Space logs, and more

Compare Source

🔍 Semantic search for Spaces

Discover Spaces using natural language. The new search_spaces() API and hf spaces search CLI use embedding-based semantic search to find relevant Spaces based on what they do - not just keyword matching on their name.

>>> from huggingface_hub import search_spaces

>>> results = search_spaces("remove background from photo")
>>> for space in results:
...     print(f"{space.id} (score: {space.score:.2f})")
briaai/BRIA-RMBG-1.4 (score: 0.87)

The same capability is available in the CLI:

$ hf spaces search "remove background from photo" --limit 3
ID                           TITLE                 SDK    LIKES STAGE   CATEGORY           SCORE
---------------------------- --------------------- ------ ----- ------- ------------------ -----
not-lain/background-removal  Background Removal    gradio 2794  RUNNING Image Editing      0.85 
briaai/BRIA-RMBG-2.0         BRIA RMBG 2.0         gradio 918   RUNNING Background Removal 0.84 
Xenova/remove-background-web Remove Background Web static 739   RUNNING Background Removal 0.81 
Hint: Use --description to show AI-generated descriptions.

# Filter by SDK, get JSON with descriptions
$ hf spaces search "chatbot" --sdk gradio --description --json --limit 1 | jq
[
  {
    "id": "BarBar288/Chatbot",
    "title": "Chatbot",
    "sdk": "gradio",
    "likes": 4,
    "stage": "RUNNING",
    "category": "Other",
    "score": 0.5,
    "description": "Perform various AI tasks like chat, image generation, and text-to-speech"
  }
]

📜 Programmatic access to Space logs

When a Space fails to build or crashes at runtime, you can now retrieve the logs programmatically — no need to open the browser. This is particularly useful for agentic workflows that need to debug Space failures autonomously.

>>> from huggingface_hub import fetch_space_logs

# Run logs (default)
>>> for line in fetch_space_logs("username/my-space"):
...     print(line, end="")

# Build logs — for BUILD_ERROR debugging
>>> for line in fetch_space_logs("username/my-space", build=True):
...     print(line, end="")

# Stream in real time
>>> for line in fetch_space_logs("username/my-space", follow=True):
...     print(line, end="")

The CLI equivalent:

$ hf spaces logs username/my-space              # run logs
$ hf spaces logs username/my-space --build      # build logs
$ hf spaces logs username/my-space -f           # stream in real time
$ hf spaces logs username/my-space -n 50        # last 50 lines

🖥️ CLI output standardization continues

This release continues the CLI output migration started in v1.9, bringing 11 more command groups to the unified --format flag. The old --quiet flags on migrated commands are replaced by --format quiet.

$ hf cache ls                          # auto-detect (human or agent)
$ hf cache ls --format json            # structured JSON
$ hf cache ls --format quiet           # minimal output, great for piping
$ hf upload my-model . .               # auto-detect (human or agent)

Confirmation prompts (e.g., hf cache rm, hf repos delete, hf buckets delete) are now mode-aware: they prompt in human mode, and require --yes in agent/json/quiet modes - no more hanging scripts.

Commands migrated in this release: collections, discussions, extensions, endpoints, webhooks, cache, repos, repo-files, download, upload, and upload-large-folder. Remaining commands (jobs, buckets, auth login/logout) will follow in a future release.

📦 Space volumes management from the CLI

A new hf spaces volumes command group lets you manage volumes mounted in Spaces directly from the command line — list, set, and delete using the familiar -v/--volume syntax.

# List mounted volumes
$ hf spaces volumes ls username/my-space
TYPE    SOURCE                MOUNT_PATH READ_ONLY
------- --------------------- ---------- ---------
model   gpt2                  /data      ✔
dataset badlogicgames/pi-mono /data2     ✔

# Set volumes
$ hf spaces volumes set username/my-space -v hf://buckets/username/my-bucket:/data
$ hf spaces volumes set username/my-space -v hf://models/username/my-model:/models

# Delete all volumes
$ hf spaces volumes delete username/my-space

🔧 More CLI improvements

hf auth token - Prints the current token to stdout, handy for piping into other commands:

$ hf auth token
hf_xxxx
Hint: Run `hf auth whoami` to see which account this token belongs to.

# Use it in a curl call
$ hf auth token | xargs -I {} curl -H "Authorization: Bearer {}" https://huggingface.co/api/whoami-v2

💔 Breaking change

model_name deprecated in list_models - Use search instead. Both were always equivalent (both map to ?search=... in the API), but now model_name emits a deprecation warning. Removal is planned for 2.0.

# Before
>>> list_models(model_name="gemma")

# After
>>> list_models(search="gemma")

The CLI is not affected - hf models ls already uses --search.

🔧 Other improvements

🐛 Bug fixes

📖 Documentation

🏗️ Internal

v1.10.2: [v1.10.2] Fix reference cycle in hf_raise_for_status

Compare Source

  • Fix reference cycle in hf_raise_for_status causing delayed object destruction by @​Wauplin in #​4092

Full Changelog: huggingface/huggingface_hub@v1.10.1...v1.10.2


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

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Mar 1, 2026

🎉 Welcome to the Kubeflow Model Registry! 🎉
Thanks for opening your first PR! We're happy to have you as part of our community 🚀

Here's what happens next:

Join the community:

Feel free to ask questions in the comments if you need any help or clarification!
Thanks again for contributing to Kubeflow! 🙏

Note for: @Al-Pragliola @adysenrothman @fege @jonburdo @pboyd @rareddy @tarilabs
Kindly ensure the label ok-to-test has been added to the PR, and all the tests have been executed before merging!

@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented Mar 1, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: red-hat-konflux[bot]
Once this PR has been reviewed and has the lgtm label, please assign adysenrothman for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented Mar 1, 2026

Hi @red-hat-konflux[bot]. Thanks for your PR.

I'm waiting for a opendatahub-io member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Mar 1, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 38.78%. Comparing base (367aa17) to head (812431f).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1513   +/-   ##
=======================================
  Coverage   38.78%   38.78%           
=======================================
  Files         195      195           
  Lines       23236    23236           
  Branches      261      261           
=======================================
  Hits         9011     9011           
  Misses      13479    13479           
  Partials      746      746           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 05:28
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 05:32
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 09:38
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 09:41
@red-hat-konflux red-hat-konflux Bot reopened this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 13:31
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 13:34
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 1, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 17:30
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 1, 2026 17:35
@red-hat-konflux red-hat-konflux Bot closed this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 05:40
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 05:47
@red-hat-konflux red-hat-konflux Bot reopened this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 09:33
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 09:40
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 13:29
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 13:36
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 17:46
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 17:58
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot closed this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot deleted the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 21:59
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency huggingface-hub to v1.5.0 - autoclosed chore(deps): update dependency huggingface-hub to v1.5.0 Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot reopened this Mar 2, 2026
@red-hat-konflux red-hat-konflux Bot restored the konflux/mintmaker/main/huggingface-hub-1.x-lockfile branch March 2, 2026 22:08
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant