Skip to content

Version Packages#365

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

Version Packages#365
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented May 5, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@wuchale/astro@0.4.0

Minor Changes

  • ⚠️ BREAKING: reorganize loading config, use glob patterns and number load IDs (#355)

    • granularLoad is now loading.granular
    • bundleLoad is now loading.direct
    • generateLoadID is replaced by a glob config at loading.group

    Therefore if you use any of these, update your config like this:

    -import { defineConfig, defaultGenerateLoadID, pofile } from "wuchale"
    +import { defineConfig, pofile } from "wuchale"
    import { adapter as svelte } from '@wuchale/svelte'
    
    export default defineConfig({
        // ...
        adapters: {
            main: svelte({
                // ...
               bundleLoad: true,
    -          granularLoad: true,
    -          generateLoadID: filename => {
    -              if (filename.includes('grouped')) {
    -                  return 'grouped'
    -              }
    -              return defaultGenerateLoadID(filename)
    -          },
    +          loading: {
    +              granular: true,
    +              direct: true,
    +              group: [
    +                  '**/*grouped*',
    +              ]
    +          }
           }),
        }
    })

Patch Changes

@wuchale/jsx@0.12.0

Minor Changes

  • ⚠️ BREAKING: reorganize loading config, use glob patterns and number load IDs (#355)

    • granularLoad is now loading.granular
    • bundleLoad is now loading.direct
    • generateLoadID is replaced by a glob config at loading.group

    Therefore if you use any of these, update your config like this:

    -import { defineConfig, defaultGenerateLoadID, pofile } from "wuchale"
    +import { defineConfig, pofile } from "wuchale"
    import { adapter as svelte } from '@wuchale/svelte'
    
    export default defineConfig({
        // ...
        adapters: {
            main: svelte({
                // ...
               bundleLoad: true,
    -          granularLoad: true,
    -          generateLoadID: filename => {
    -              if (filename.includes('grouped')) {
    -                  return 'grouped'
    -              }
    -              return defaultGenerateLoadID(filename)
    -          },
    +          loading: {
    +              granular: true,
    +              direct: true,
    +              group: [
    +                  '**/*grouped*',
    +              ]
    +          }
           }),
        }
    })

Patch Changes

@wuchale/svelte@0.20.0

Minor Changes

  • ⚠️ BREAKING: reorganize loading config, use glob patterns and number load IDs (#355)

    • granularLoad is now loading.granular
    • bundleLoad is now loading.direct
    • generateLoadID is replaced by a glob config at loading.group

    Therefore if you use any of these, update your config like this:

    -import { defineConfig, defaultGenerateLoadID, pofile } from "wuchale"
    +import { defineConfig, pofile } from "wuchale"
    import { adapter as svelte } from '@wuchale/svelte'
    
    export default defineConfig({
        // ...
        adapters: {
            main: svelte({
                // ...
               bundleLoad: true,
    -          granularLoad: true,
    -          generateLoadID: filename => {
    -              if (filename.includes('grouped')) {
    -                  return 'grouped'
    -              }
    -              return defaultGenerateLoadID(filename)
    -          },
    +          loading: {
    +              granular: true,
    +              direct: true,
    +              group: [
    +                  '**/*grouped*',
    +              ]
    +          }
           }),
        }
    })

Patch Changes

wuchale@0.24.0

Minor Changes

  • Include placeholders in nested messages also indicating nesting like 0.0.1 (2005ea1)

  • ⚠️ BREAKING: Built-in URL matcher (#363)

    A small purpose-built no-RegExp URL matcher is now included and the glob-like syntax it accepts is different from/simpler than that of path-to-regexp.

    • * for required segments like /foo-* matches /foo-bar
    • ? for optional segments like /foo/? matches /foo and /foo/bar
    • ** for nested like /foo/** matches /foo, /foo/bar and /foo/1/bar

    If you use URL patterns, you have to adjust your config accordingly:

    export default {
        // ...
        adapters: {
            main: svelte({
                // ...
                url: {
                    // ...
                    patterns: [
    -                   'foo/*rest',
    +                   'foo/**',
                    ]
                },
            }),
        }
    }
  • ⚠️ BREAKING: reorganize loading config, use glob patterns and number load IDs (#355)

    • granularLoad is now loading.granular
    • bundleLoad is now loading.direct
    • generateLoadID is replaced by a glob config at loading.group

    Therefore if you use any of these, update your config like this:

    -import { defineConfig, defaultGenerateLoadID, pofile } from "wuchale"
    +import { defineConfig, pofile } from "wuchale"
    import { adapter as svelte } from '@wuchale/svelte'
    
    export default defineConfig({
        // ...
        adapters: {
            main: svelte({
                // ...
               bundleLoad: true,
    -          granularLoad: true,
    -          generateLoadID: filename => {
    -              if (filename.includes('grouped')) {
    -                  return 'grouped'
    -              }
    -              return defaultGenerateLoadID(filename)
    -          },
    +          loading: {
    +              granular: true,
    +              direct: true,
    +              group: [
    +                  '**/*grouped*',
    +              ]
    +          }
           }),
        }
    })

Patch Changes

  • Use the same fallback chains for URL translations (2521033)

@wuchale/json@0.1.2

Patch Changes

@github-actions github-actions Bot force-pushed the changeset-release/main branch 8 times, most recently from 2747a54 to 2e30783 Compare May 12, 2026 09:02
@github-actions github-actions Bot force-pushed the changeset-release/main branch 4 times, most recently from 1bbbe83 to b0cdc22 Compare May 20, 2026 07:20
@github-actions github-actions Bot force-pushed the changeset-release/main branch from b0cdc22 to d21b497 Compare May 23, 2026 07:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants