Skip to content

Releases: vuestorefront/vue-storefront

@vue-storefront/[email protected]

08 Oct 06:46
5577e6a
Compare
Choose a tag to compare

Patch Changes

changed: add eslint-integration rule "class-methods-use-this": "off"

@vue-storefront/[email protected]

07 Oct 14:36
7d4e7d1
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • [ADDED] Logger module

@vue-storefront/[email protected]

07 Oct 11:40
c17beb1
Compare
Choose a tag to compare
Pre-release

Major Changes

rc.2

@vue-storefront/[email protected]

04 Oct 10:15
7fdfd60
Compare
Choose a tag to compare
Pre-release

Minor Changes

rc.1

@vue-storefront/[email protected]

03 Oct 09:29
287f494
Compare
Choose a tag to compare
Pre-release

Major Changes

Feature logger

@vue-storefront/[email protected]

18 Sep 11:36
db35876
Compare
Choose a tag to compare

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/[email protected]

12 Sep 10:01
f3e5df7
Compare
Choose a tag to compare

Minor Changes

  • [CHANGED] defaultMethodsRequestConfig, so the getCategory, and getPage methods will use GET request as a default.

@vue-storefront/[email protected]

12 Sep 10:01
f3e5df7
Compare
Choose a tag to compare

Minor Changes

  • [CHANGED] defaultMethodsRequestConfig, so the getCategory, and getPage methods will use GET request as a default.

@vue-storefront/[email protected]

02 Sep 12:23
c7bca8a
Compare
Choose a tag to compare

Patch Changes

@vue-storefront/[email protected]

02 Sep 12:23
c7bca8a
Compare
Choose a tag to compare

Major Changes

  • [CHANGED][BREAKING] Changed return type of createServer() from Express to Server (from built-in node: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) {