Skip to content

Bump actions/upload-pages-artifact from 3.0.1 to 5.0.0 - #8

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/upload-pages-artifact-5.0.0
Open

Bump actions/upload-pages-artifact from 3.0.1 to 5.0.0#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/upload-pages-artifact-5.0.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps actions/upload-pages-artifact from 3.0.1 to 5.0.0.

Release notes

Sourced from actions/upload-pages-artifact's releases.

v5.0.0

Changelog

See details of all code changes since previous release.

v4.0.0

What's Changed

Full Changelog: actions/upload-pages-artifact@v3.0.1...v4.0.0

Commits
  • fc324d3 Merge pull request #139 from Tom-van-Woudenberg/patch-1
  • fe9d4b7 Merge branch 'main' into patch-1
  • 0ca1617 Merge pull request #137 from jonchurch/include-hidden-files
  • 57f0e84 Update action.yml
  • 4a90348 v7 --> hash
  • 56f665a Update upload-artifact action to version 7
  • f7615f5 Add include-hidden-files input
  • 7b1f4a7 Merge pull request #127 from heavymachinery/pin-sha
  • 4cc19c7 Pin actions/upload-artifact to SHA
  • 2d163be Merge pull request #107 from KittyChiu/main
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 3.0.1 to 5.0.0.
- [Release notes](https://github.com/actions/upload-pages-artifact/releases)
- [Commits](actions/upload-pages-artifact@56afc60...fc324d3)

---
updated-dependencies:
- dependency-name: actions/upload-pages-artifact
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 8, 2026
enapt added a commit that referenced this pull request May 14, 2026
… country names via Intl.DisplayNames, uncapped DHT holder count for prune)

Item #4 (hf_score_breakdown -> human verdict): the i18n key was orphaned
- swarm-tab._fitPill() already renders a single human verdict from the
backend's fits_boomerang/fits_shard/network_replicas signals. Removed
models.hf_score_breakdown plus 3 sibling orphans (hf_score_pts,
hf_on_swarm, likes_count) from all 21 locales per the R120 verification-
gating rule. Backend score_breakdown JSON field retained as dev-only
surface. Net i18n count: 1128 keys / 1130 entries per locale.

Item #7 (dashboard.api_log_link translation): translated 'View API
request log ->' across 21 locales. Arabic flips the arrow to '<-' for
RTL flow.

Item #8 (country names): replaced the hand-maintained 46-entry
countryNames map in network-map.js with Intl.DisplayNames keyed off
I18n.getLang(). Per-locale displayName cache amortises construction.
Browser support: Chrome 81+/FF 86+/Safari 14.1+ — falls back to the
raw ISO code on the very-old-browser path. Covers every ISO 3166-1
alpha-2 code in the native language of each of the 21 locales without
~966 hand-translated entries.

R121 follow-up (true global holder count): ModelRegistry gained
global_holder_count: DashMap<ShardId, u32>; handle_dht_providers_found
in network/manager/dht.rs records providers.len() (raw PeerId count,
not the resolved NodeId count) on every GetProviders response. prune.rs
uses max(cached_holder_count, global_holder_count) for the
redundancy_ratio numerator and the severe-saturation bonus, while gates
(holder_count > effective_target, region/busy/rarest) keep using the
filtered live cache. remove_all_model_shards also clears the global
map so a future ShardId reuse can't inherit a stale figure.

Tests: 927 lib pass (was 926; added registry::tests::
global_holder_count_overrides_local_cap). clippy clean default + llama.

Memory/rules: architecture.md gains a 'ModelRegistry Holder Counts'
section documenting the routing-oracle vs prune-oracle split.
enapt added a commit that referenced this pull request May 14, 2026
New frontend/js/components/welcome.js renders a one-time overlay
highlighting four key header elements:
  - Model picker dropdown
  - + Find model button (HuggingFace browser)
  - Auto-manage badge (storage manages itself)
  - Settings gear (everything else)

Triggers:
  - On first dashboard load if SETUP_DONE_KEY or SETUP_SKIPPED_KEY is set
    but WELCOME_SEEN_KEY isn't (covers the case where the user closed the
    page mid-setup-complete before the modal could show).
  - Directly from Setup.complete() and Setup.finish() so the tour
    appears immediately after the wizard.

Dismissal:
  - Got it button, close icon, and backdrop click all dismiss and
    persist WELCOME_SEEN_KEY=true so it doesn't reappear.

Re-open:
  - btn-show-welcome added to Settings calls App.welcome.reopen() which
    skips the seen-flag gate. The user is deliberately re-reading, not
    being shown it again unsolicited.

i18n: 14 new keys (welcome.title/subtitle/card{1-4}_{title,body}/cta/
close_aria + settings.show_welcome{,_title}) translated idiomatically
across all 21 locales. Net i18n count: 1139 keys / 1141 entries per
locale (was 1128/1130 after the earlier R127 orphan cleanup).

CSS: welcome-modal styles appended to frontend/css/style.css —
centered modal, 4 icon+body cards, single CTA at bottom-right.

Verified live in browser via Chrome DevTools MCP:
  - English / Japanese / Arabic all render correctly
  - Arabic RTL flips icon + button positioning as expected
  - Got it button dismisses & persists the seen flag
  - 'Show welcome tour' in Settings re-opens without resetting the flag

CLAUDE.md, MEMORY.md, FUTURE_WORK.md updated. All R125 ease-of-use audit
follow-ups now closed (R126 closed #1/#3/#5/#6, R127 closed #2/#4/#7/#8).
927 lib + 75 integration tests pass; clippy clean default + llama.
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 github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants