Skip to content

chore(deps): update all non-major dependencies#33

Merged
glennmichael123 merged 1 commit intomainfrom
buddy-bot/update-non-major-updates
Mar 19, 2026
Merged

chore(deps): update all non-major dependencies#33
glennmichael123 merged 1 commit intomainfrom
buddy-bot/update-non-major-updates

Conversation

@chrisbbreuer
Copy link
Copy Markdown
Member

@chrisbbreuer chrisbbreuer commented Mar 12, 2026

This PR contains the following updates:

Package Updates Summary

Type Count
📦 NPM Packages 4
Total 4

📦 npm Dependencies

npm

4 packages will be updated

Package Change Age Adoption Passing Confidence
@nuxt/kit (source) 4.3.1 -> 4.4.2 age adoption passing confidence
nuxt (source) 4.3.1 -> 4.4.2 age adoption passing confidence
@stacksjs/stx (source) 0.2.6 -> 0.2.10 age adoption passing confidence
bun-plugin-stx (source) 0.2.6 -> 0.2.10 age adoption passing confidence

Release Notes

nuxt/nuxt (@nuxt/kit)

4.3.1 -> 4.4.2

v4.4.0

Compare Source

4.4.0/4.4.2 is the next minor release (v4.4.2 was published with no changes due to a publishing failure)

👀 Highlights

🏭 createUseFetch and createUseAsyncData

You can now create custom instances of useFetch and useAsyncData with your own default options (#32300).

// composables/api.ts

// Simple defaults
export const useClientFetch = createUseFetch({
  server: false,
})

// Dynamic defaults with full control over merging
export const useApiFetch = createUseFetch((currentOptions) => {
  const runtimeConfig = useRuntimeConfig()

  return {
    ...currentOptions,
    baseURL: currentOptions.baseURL ?? runtimeConfig.public.baseApiUrl,
  }
})

Then use them exactly like useFetch – they're fully typed and support all the same options:

<!-- pages/dashboard.vue -->
<script setup lang="ts">
// Uses your baseURL from runtimeConfig automatically
const { data: users } = await useApiFetch('/users')
</script>

When you pass a p...

[View full release notes]

Released by danielroe on 3/12/2026

nuxt/nuxt (nuxt)

4.3.1 -> 4.4.2

v4.4.0

Compare Source

4.4.0/4.4.2 is the next minor release (v4.4.2 was published with no changes due to a publishing failure)

👀 Highlights

🏭 createUseFetch and createUseAsyncData

You can now create custom instances of useFetch and useAsyncData with your own default options (#32300).

// composables/api.ts

// Simple defaults
export const useClientFetch = createUseFetch({
  server: false,
})

// Dynamic defaults with full control over merging
export const useApiFetch = createUseFetch((currentOptions) => {
  const runtimeConfig = useRuntimeConfig()

  return {
    ...currentOptions,
    baseURL: currentOptions.baseURL ?? runtimeConfig.public.baseApiUrl,
  }
})

Then use them exactly like useFetch – they're fully typed and support all the same options:

<!-- pages/dashboard.vue -->
<script setup lang="ts">
// Uses your baseURL from runtimeConfig automatically
const { data: users } = await useApiFetch('/users')
</script>

When you pass a p...

[View full release notes]

Released by danielroe on 3/12/2026

stacksjs/stx (@stacksjs/stx)

0.2.6 -> 0.2.10

v0.2.10

Compare Source

Released by github-actions[bot] on 3/16/2026

v0.2.9

Compare Source

Released by github-actions[bot] on 3/13/2026

stacksjs/stx (bun-plugin-stx)

0.2.6 -> 0.2.10

v0.2.10

Compare Source

Released by github-actions[bot] on 3/16/2026

v0.2.9

Compare Source

Released by github-actions[bot] on 3/13/2026


📊 Package Statistics

  • @nuxt/kit: 3,770,560 weekly downloads
  • nuxt: 1,223,935 weekly downloads
  • @stacksjs/stx: 5,432 weekly downloads
  • bun-plugin-stx: 5,408 weekly downloads

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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

This PR was generated by Buddy 🤖

@chrisbbreuer chrisbbreuer force-pushed the buddy-bot/update-non-major-updates branch 27 times, most recently from 76a5848 to eccf51f Compare March 19, 2026 06:21
@chrisbbreuer chrisbbreuer force-pushed the buddy-bot/update-non-major-updates branch from eccf51f to 2b38413 Compare March 19, 2026 12:12
@glennmichael123 glennmichael123 merged commit 2002552 into main Mar 19, 2026
1 of 3 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.

2 participants