Skip to content

Bump furo from 2024.04.27 to 2025.7.19 in /docs - #7

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/docs/furo-2025.7.19
Closed

Bump furo from 2024.04.27 to 2025.7.19 in /docs#7
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/docs/furo-2025.7.19

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 7, 2025

Copy link
Copy Markdown
Contributor

Bumps furo from 2024.04.27 to 2025.7.19.

Changelog

Sourced from furo's changelog.

Changelog

2025.07.19 -- Frozen Flame

  • ✨ Switch to accessible-pygments themes
  • ✨ Prefetch the sidebar logos
  • ✨ Fix flickering header drop shadow on Safari
  • Add rel=edit attribute to "Edit this page" link/icon
  • Bump NodeJS and npm dependency versions
  • Bump Saas & Webpack major versions
  • Improve current page detection to be resilient to sticky elements above header
  • Modernise Sass and use @use + @forward
  • Remove top of code border-radius with captions
  • Remove "debug printf" for headerTop value
  • Use distinct images for light and dark mode in the documentation
  • Use the modern Saas Modules

2024.08.06 -- Energetic Eminence

  • ✨ Add support for Sphinx 8
  • ✨ Add smoother transitions between breakpoints
  • Increase specificity of table-wrapper selector
  • Avoid page breaks inside paragraphs

2024.07.18 -- Dull Denim

  • Improve how icons are handled and aligned.
  • Improve scroll event handler.
  • Hide the copybutton by default.
  • Fix source_view_link configuration handling.
  • Fix close tag on pencil icon.

2024.05.06 -- Cheerful Cerulean

  • ✨ Add new custom icons for auto mode, reflecting the currently active theme.
  • ✨ Add a view this page button.
  • ✨ Add colours and highlighting to "version modified" API helpers.
  • ✨ Add release information to various customisation knobs.
  • Make all icons bigger and use a thinner stroke with them.
Commits
  • e2cbfce Prepare release: 2025.07.19
  • 2753741 Update changelog
  • 5dc72a3 Prefetch the sidebar logos
  • 01eb613 Use @use variables as *
  • 0dab870 Modernise Sass and use @use + @forward
  • 6a76aa7 Silence mypy on pygments attributes
  • 7d57173 Use distinct images for light and dark mode
  • 007374a Drop the URL to unsplash
  • 03c8880 Make current page section detection resilient to sticky elements above header...
  • ff34139 Fix flickering header drop shadow (#884)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Bumps [furo](https://github.com/pradyunsg/furo) from 2024.04.27 to 2025.7.19.
- [Release notes](https://github.com/pradyunsg/furo/releases)
- [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
- [Commits](pradyunsg/furo@2024.04.27...2025.07.19)

---
updated-dependencies:
- dependency-name: furo
  dependency-version: 2025.7.19
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 7, 2025
@dependabot @github

dependabot Bot commented on behalf of github Aug 11, 2025

Copy link
Copy Markdown
Contributor Author

Dependabot couldn't find any dependency files in the directory. Because of this, Dependabot cannot update this pull request.

@cshenry cshenry closed this Mar 26, 2026
@dependabot @github

dependabot Bot commented on behalf of github Mar 26, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/pip/docs/furo-2025.7.19 branch March 26, 2026 03:39
cshenry pushed a commit that referenced this pull request Jun 3, 2026
Fix #1: Replace kbu.env.config.get() with kbu.env.get_config_value("section.key")
throughout all skill files; document get_config(section, key) as deprecated/INI-compat.
Verified against shared_env_utils.py:195,216.

Fix #2: Replace fabricated KBJobUtils methods (submit, cancel, refresh, get, list,
forget, summary, get_logs with real API (run_job, cancel_job, check_job,
refresh_active, refresh_all, get_record, list_active, list_all, get_job_logs, cleanup).
Verified against kb_job_utils/utils.py.

Fix #3: Add undocumented kb_genome_utils.py methods to module-reference.md and
api-summary.md: load_kbase_gene_container, object_to_features, get_ftr,
ftr_to_aliases, alias_to_ftrs, object_to_proteins, add_annotations_to_object,
load_genome_from_local_files, aggregate_taxonomies, create_synthetic_genome,
calculate_gc_content, plus PRD-new methods by name: save_genome_object,
save_assembly_from_fasta, save_genome_with_assembly, validate_genome,
build_genome_from_fasta_gff.

Fix #4: Add Injecting SDK Clients in Notebook Contexts subsection to patterns.md
documenting kbu.callback.set_callback_client(name, client) injection hook.

Fix #5: Add installed_clients/ shipping constraint note near top of kbutillib-expert.md
flagging that AssemblyUtilClient/GenomeFileUtilClient require a separate KBase SDK
install; calls raise ImportError without it.

Fix #6: Add /kbase-genome-expert to Related Skills in kbutillib-expert.md and a
See also pointer in patterns.md callback section.

Fix #7: Add KBGenomeUtilsImpl delegate note to module-reference.md (source L805,
__getattr__ passthrough).

Fix #8: Add ## CLI chapter to api-summary.md covering kbu jobs status/list/summary/
refresh/logs/cancel/forget/cleanup/chain submit/list/status/cancel/advance and
kbu jobdaemon. All subcommands verified against src/kbutillib/cli/jobs.py,
jobdaemon.py, __init__.py.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
EOF
)
cshenry pushed a commit that referenced this pull request Jul 6, 2026
Implements shared TOML I/O helpers in manifest.py (read/write for both
project and subproject manifests, now_utc_iso, sha256_file, partial-write
helpers append_session_ref and append_notebook_entry_or_update).

Adds kbu subproject subcommand group with 8-state machine (plan →
p-review → build → b-review → run → synthesize → s-review → complete),
full precondition validators per PRD round-2 confront table, HTML verdict
comment parser, and subcommands: create, list, status, advance, set-status.

Registers subproject group in CLI __init__.py; adds tomli-w >=1.0 to
dependencies; adds conftest.py fixtures and 66 passing tests.

Satisfies PRD kbu-start-v1 ACs #4, #5, #6, #7, #8, #32, #33, #34, #36,
#42, #44.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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 python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant