Skip to content

Releases: shopware/frontends

@shopware-pwa/[email protected]

01 Aug 08:32
Compare
Choose a tag to compare

Patch Changes

@shopware-pwa/[email protected]

01 Aug 08:32
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@shopware-pwa/[email protected]

01 Aug 08:31
Compare
Choose a tag to compare

Patch Changes

@shopware-pwa/[email protected]

01 Aug 08:31
Compare
Choose a tag to compare

Patch Changes

[email protected]

20 Jul 10:51
Compare
Choose a tag to compare

Patch Changes

@shopware/[email protected]

20 Jul 10:50
Compare
Choose a tag to compare

Patch Changes

  • #303 aeb639a Thanks @patzick! - Improved linting in packages. Types should be more reliable

  • #313 0e82ab3 Thanks @patzick! - Dependency changes:

    • Changed dependency openapi-typescript from ^6.2.8 to ^6.3.4
    • Changed dependency prettier from ^2.8.8 to ^3.0.0
    • Changed dependency semver from ^7.5.3 to ^7.5.4

@shopware/[email protected]

20 Jul 10:50
Compare
Choose a tag to compare

Minor Changes

  • #316 589c09c Thanks @patzick! - Improved error handling. Api client now throws ApiClientError with detailed information about what went wrong with request.

    example:

    import { ApiClientError } from "@shopware/api-client";
    
    try {
      // ... your request
    } catch (error) {
      if (error instanceof ApiClientError) {
        console.error(error); // This prints message summary
        console.error("Details:", error.details); // Raw response from API
      } else {
        console.error("==>", error); // Another type of error, not recognized by API client
      }
    }

Patch Changes

@shopware-pwa/[email protected]

20 Jul 10:51
Compare
Choose a tag to compare

Patch Changes

@shopware-pwa/[email protected]

20 Jul 10:50
Compare
Choose a tag to compare

Patch Changes

@shopware-pwa/[email protected]

20 Jul 10:50
Compare
Choose a tag to compare

Minor Changes

  • #309 84a7fe6 Thanks @patzick! - Added new config useUserContextInSSR - set to true if you want for the server to use session from cookie and prepare view with it. Use carefully with edge caching to avoid sharing user data with edge cache. Default is false, so server will always use new context to prepare rendered view.

Patch Changes