Skip to content

Conversation

@bottd
Copy link
Owner

@bottd bottd commented Jan 17, 2026

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/workers-types 4.20260116.04.20260117.0 age confidence
@takumi-rs/core 0.62.80.63.1 age confidence
@takumi-rs/helpers 0.62.80.63.1 age confidence
@tanstack/svelte-query (source) 6.0.156.0.16 age confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20260117.0

Compare Source

kane50613/takumi (@​takumi-rs/core)

v0.63.1

Compare Source

Patch Changes
  • 9fb085f: deprecate purgeResourcesCache, remove resourceCacheCapacity option for constructing Renderer

v0.63.0

Compare Source

Minor Changes
  • 75b0f10: BREAKING: Externalize image fetching

    To allow more control over fetching and match the WASM version, @takumi-rs/core no longer runs fetch for you. @takumi-rs/image-response will not be affected by this change.

    Before:

    const renderer = new Renderer();
    const node = await fromJsx(<img src="https://example.com/image.png" />);
    const image = await renderer.render(node);

    After:

    import { extractResourceUrls } from "@&#8203;takumi-rs/core";
    import { fetchResources } from "@&#8203;takumi-rs/helpers";
    
    const renderer = new Renderer();
    const node = await fromJsx(<img src="https://example.com/image.png" />);
    
    const urls = extractResourceUrls(node);
    const fetchedResources = await fetchResources(urls);
    
    const image = await renderer.render(node, {
      fetchedResources,
    });
TanStack/query (@​tanstack/svelte-query)

v6.0.16

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "every weekday" in timezone America/Chicago, 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

@github-actions github-actions bot merged commit 8fff2df into main Jan 17, 2026
5 checks passed
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.

3 participants