Releases: vuestorefront/vue-storefront
Releases · vuestorefront/vue-storefront
@vue-storefront/sdk@3.3.0-rc.0
Minor Changes
- [ADDED] Logger module
@vue-storefront/logger@1.0.0-rc.2
Major Changes
rc.2
@vue-storefront/logger@1.0.0-rc.1
Minor Changes
rc.1
@vue-storefront/logger@1.0.0-rc.0
Major Changes
Feature logger
@vue-storefront/sdk@3.2.3
Patch Changes
- [FIXED] Headers with same name will now have their values merged using the ";' delimiter, rather than ",". This is seen when middleware and defaultRequestConfig set the same header - e.g.
Cookie
.
After this change, Cookie: vsf-locale=en
+ Cookie: custom-cookie=123
will result in Cookie: vsf-locale=en; custom-cookie=123
, rather than being wrongly separated by ,
.
@vue-storefront/nuxt@6.1.0
Minor Changes
- [CHANGED]
defaultMethodsRequestConfig
, so thegetCategory
, andgetPage
methods will useGET
request as a default.
@vue-storefront/next@4.2.0
Minor Changes
- [CHANGED]
defaultMethodsRequestConfig
, so thegetCategory
, andgetPage
methods will useGET
request as a default.
@vue-storefront/multistore@4.1.1
Patch Changes
- Updated dependencies:
- @vue-storefront/middleware@5.0.0
@vue-storefront/middleware@5.0.0
Major Changes
- [CHANGED][BREAKING] Changed return type of
createServer()
fromExpress
toServer
(from built-innode:http
package). Both of those types' interfaces have the.listen()
method with the same shape. In some older templates for starting the middleware (middleware.js
in your repo) you come across:
async function runMiddleware(app: Express) {
If you're using that older template, please change the Express
type to Server
:
+ import { Server } from "node:http"
+ async function runMiddleware(app: Server) {
- async function runMiddleware(app: Express) {
- [ADDED] New GET /readyz endpoint for middleware for using with Kubernetes readiness probes. Please see https://docs.alokai.com/middleware/guides/readiness-probes for more information
@vue-storefront/nuxt@6.0.2
Patch Changes
- [CHANGED] the package
@vue-storefront/sdk
is now a peer dependency instead of dependency