Releases: nuxt-hub/core
Releases · nuxt-hub/core
v0.5.2
🩹 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
- Max (@onmax)
- Farnabaz (@farnabaz)
- Gangan (@shinGangan)
- Sébastien Chopin (@Atinux)
v0.5.1
🩹 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
- Daniel Roe (@danielroe)
- Harlan Wilton (@harlan-zw)
- Farnabaz (@farnabaz)
v0.5.0
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
- Update error message (3528421)
⚠️ Breaking Changes
⚠️ Module option to enable features (#42)
❤️ Contributors
v0.4.2
v0.4.1
🩹 Fixes
- blob: Move
HEAD /[path]
toGET /head/[path]
(#48)
📖 Documentation
- Update screenshot (3030fc9)
- Simplify deploy section (22e9fcc)
- New landing (#44)
- Add Evan You testimonial (d5c95dd)
- Update description for testimonials (d4ac425)
🏡 Chore
- Fix typos (d433653)
❤️ Contributors
- Sylvain Marroufin (@smarroufin)
- Sébastien Chopin (@Atinux)
- Florent Delerue florentdelerue@hotmail.com
v0.4.0
Breaking change ⚠️
The package is now a Nuxt module!
- extends: ['@nuxthub/core']
+ modules: ['@nuxthub/core']
This will give the possibility to enable/disable features on demand in the future (#39).