Skip to content

Releases: nuxt-hub/core

v0.5.9

17 Apr 23:43
Compare
Choose a tag to compare

compare changes

🩹 Fixes

❤️ Contributors

v0.5.8

17 Apr 23:33
Compare
Choose a tag to compare

compare changes

🚀 Enhancements

  • Add batchDel for cache proxy (e85719f)

❤️ Contributors

v0.5.7

17 Apr 23:13
e7be1aa
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Return correct group keys in cache api index (#75)
  • Add cache to manifest (#77)

🏡 Chore

  • Move to eslint9 (#76)

❤️ Contributors

v0.5.6

17 Apr 14:53
Compare
Choose a tag to compare

compare changes

🚀 Enhancements

  • Support proxy for cache management (#73)
  • Add server cache tab to the Nuxt Devtools (#74)

🩹 Fixes

  • Disable remote storage within CF Pages CI (02f65e5)

📖 Documentation

  • Update Drizzle Receipe, typo error : useDb instead of useDrizzle (#72)
  • Escape special chars (d94892d)

🏡 Chore

❤️ Contributors

v0.5.5

12 Apr 14:23
Compare
Choose a tag to compare

compare changes

✨ Developer Experience

  • Show a warning or raise error if remote storage is not available (#68)
  • Fallback to custom placeholder when openAPI is disabled (#70)

📖 Documentation

  • Simplify migrations using drizzle (f8b3ff7)
  • Add Anthony Fu testimonial (cb47380)

🏡 Chore

  • Removed unused dependencies (d7de233)

❤️ Contributors

v0.5.4

11 Apr 22:27
Compare
Choose a tag to compare

compare changes

🏡 Chore

  • Small fixes

v0.5.3

11 Apr 20:59
Compare
Choose a tag to compare

compare changes

🏡 Chore

  • types: Remove ts ignore (8c69740)

❤️ Contributors

v0.5.2

11 Apr 17:31
1cb4da1
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Improve deployment with new bindings on CF CI (#63)

📖 Documentation

  • Add another testimonial (bcf41ef)
  • Add section on installation using nuxi module add (#64)
  • Added clarifications in self-hosted deployments (#65)

❤️ Contributors

v0.5.1

10 Apr 08:36
e7862af
Compare
Choose a tag to compare

compare changes

🩹 Fixes

  • Cancel build if NuxtHub can't finish build hooks (#60)
  • Define module types in package.json (#59)
  • DevTools Database CORS error (#57)

🏡 Chore

  • Update deps (#61)

❤️ Contributors

v0.5.0

09 Apr 08:13
Compare
Choose a tag to compare

compare changes

Breaking changes ⚠️

To make NuxtHub as progressive as possible, we disabled all the features by default.

This way you can only use the features needed:

// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['@nuxthub/core'],
  hub: {
    database: true, // Enable hubDatabase()
    kv: true, // Enable hubKV()
    blob: true, // Enable hubBlob()
    cache: true // Enable the Cache KV
  }
})

This also allow the admin to know what resources to create for your project and ease the onboarding experience (no need to setup R2 or Analytics engine if you don't need them!)

PR #42

🏡 Chore

⚠️ Breaking Changes

  • ⚠️ Module option to enable features (#42)

❤️ Contributors