Skip to content

Releases: vuestorefront/vue-storefront

@vue-storefront/[email protected]

21 May 11:09
96b2e87
Compare
Choose a tag to compare

Major Changes

  • [CHANGED] Changed minimum Node version from 16 to 18. The condition that was forcing the Node version to be lower than 19 is also removed.

@vue-storefront/[email protected]

16 May 11:51
9b5ac15
Compare
Choose a tag to compare

Releases

@vue-storefront/[email protected]

Major changes

  • [CHANGED] Updated the @vue-storefront/sdk dependency to version 2.0.0.

Minor changes

  • [ADDED] defaults property to the injected context

@vue-storefront/[email protected]

13 May 11:37
f3d7272
Compare
Choose a tag to compare

Major Changes

  • [ADDED] CDN support for the middlewareModule.
    Now, the module's configuration includes cdnCacheBustingId property, which allows you to set a unique identifier for the CDN cache busting.
    The property is obligatory and must be a string.
export const { getSdk } = createSdk(
  options,
  ({ buildModule, middlewareModule, middlewareUrl, getRequestHeaders }) => ({
    example: buildModule(middlewareModule<Endpoints>, {
      apiUrl: `${middlewareUrl}/test_integration`,
+      cdnCacheBustingId: process.env.CDN_CACHE_BUSTING_ID,
      defaultRequestConfig: {
        headers: getRequestHeaders(),
      },
    }),
  })
);

Patch Changes

  • [FIXED] support for GET requests in default HTTP client, which was throwing an error "SDKError: Request with GET/HEAD method cannot have body". Now, the client can handle GET requests properly.

@vue-storefront/[email protected]

06 May 10:40
df2aa92
Compare
Choose a tag to compare

Minor Changes

  • [ADDED] a way to specify the default request configuration for each method.

Example: Set the getProducts method to be a GET request by default and use custom headers.

import { initSDK, buildModule, middlewareModule } from "@vue-storefront/sdk";
import { Endpoints } from "@vsf-enterprise/sapcc-api";

const sdk = initSDK({
  commerce: buildModule(middlewareModule<Endpoints>, {
    apiUrl: "http://localhost:8181/commerce",
    methodsRequestConfig: {
      getProduct: {
        method: "GET",
        headers: {
          "X-Header-Name": "Header-Value",
        },
      },
    },
  }),
});

@vue-storefront/[email protected]

24 Apr 13:35
Compare
Choose a tag to compare

Patch Changes

  • [CHANGED] Do not run TS compilation in tests to improve test suite run times

@vue-storefront/[email protected]

23 Apr 14:57
Compare
Choose a tag to compare

Patch Changes

  • [CHANGED] Always clear rollup-plugin-typescript2 cache when building. If you built once with an error, you'd always get an error even if you fixed the underlying code issue that caused the build to fail. This could be fixed by removing node_modules/.cache, but it's better to never create the cache at all.

@vue-storefront/[email protected]

11 Apr 08:44
de0eed0
Compare
Choose a tag to compare

Minor Changes

  • [ADDED] Options as a second parameter of createServer. This allows you to pass additional options to cors, body-parser and cookie-parser express middlewares.
import { createServer } from "@vue-storefront/middleware";
import config from "../middleware.config";

createServer(config, {
  cors: {
    origin: "http://localhost:3000",
    credentials: true,
  },
  bodyParser: {
    limit: "50mb",
  },
  cookieParser: {
    secret: "secret",
  },
});
  • [ADDED] http://localhost:4000 to the default cors origin.

@vue-storefront/[email protected]

11 Apr 08:44
de0eed0
Compare
Choose a tag to compare

Patch Changes

  • [REMOVED] Plugin "eslint-plugin-no-unsanitized" was removed due to a license that was noncompliant with our Open Source Guidelines

@vue-storefront/[email protected]

11 Apr 08:44
de0eed0
Compare
Choose a tag to compare

Patch Changes

Turn off @typescript-eslint/no-empty-interface rule

@vue-storefront/[email protected]

22 Mar 10:02
79c2bc0
Compare
Choose a tag to compare

Patch Changes

  • [FIXED] type issue with obligatory generic type argument for Extension interface. Now, it can be used without any type arg.
  • [FIXED] BaseConfig extensibility. Now, it allows to add additional custom properties.