Skip to content

v5.7.0

Compare
Choose a tag to compare
@kellymears kellymears released this 25 Mar 12:13
· 1012 commits to main since this release

Read the release post on bud.js.org for additional details

🛼 Improvements

  • improve: client dev scripts (#1293)
  • improve: bud.config (#1287)

🩹 Fixes

Upgrade guide

If you were using bud.serve to set SSL options, you'll need to update that call as the function's API has changed slightly:

bud.serve({
  url: 'https://my-site.com',
  key: '/path/to/site.key',
  cert: '/path/to/site.crt',
})

becomes:

bud.serve('https://my-site.com', {
  key: '/path/to/site.key',
  cert: '/path/to/site.crt',
})

You may pass any other node server options you want or need to using the second parameter.

👀 More information