@graphcommerce/magento-store 9.0.4-canary.8 → 9.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,24 +1,22 @@
1
1
  # Change Log
2
2
 
3
- ## 9.0.4-canary.8
3
+ ## 9.0.4
4
4
 
5
- ## 9.0.4-canary.7
5
+ ## 9.0.3
6
6
 
7
- ## 9.0.4-canary.6
7
+ ## 9.0.3-canary.0
8
8
 
9
- ## 9.0.4-canary.5
9
+ ## 9.0.2
10
10
 
11
- ## 9.0.4-canary.4
11
+ ## 9.0.2-canary.0
12
12
 
13
- ## 9.0.4-canary.3
14
-
15
- ## 9.0.4-canary.2
13
+ ## 9.0.1
16
14
 
17
- ## 9.0.4-canary.1
15
+ ### Patch Changes
18
16
 
19
- ## 9.0.4-canary.0
17
+ - [#2458](https://github.com/graphcommerce-org/graphcommerce/pull/2458) [`9b33eac`](https://github.com/graphcommerce-org/graphcommerce/commit/9b33eac3fc8cdd7ac8ba160e598dd878c956e7c3) - Fix Magento store code not getting set in context.headers.store ([@bramvanderholst](https://github.com/bramvanderholst))
20
18
 
21
- ## 9.0.1
19
+ ## 9.0.1-canary.1
22
20
 
23
21
  ### Patch Changes
24
22
 
@@ -1,5 +1,5 @@
1
1
  import { useQuery } from '@graphcommerce/graphql'
2
- import { extendableComponent, FlagAvatar } from '@graphcommerce/next-ui'
2
+ import { FlagAvatar, extendableComponent } from '@graphcommerce/next-ui'
3
3
  import type { SxProps, Theme } from '@mui/material'
4
4
  import { Button } from '@mui/material'
5
5
  import { useRouter } from 'next/router'
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable spaced-comment */
2
- import { extendableComponent, FlagAvatar, NextLink } from '@graphcommerce/next-ui'
2
+ import { FlagAvatar, NextLink, extendableComponent } from '@graphcommerce/next-ui'
3
3
  import type { SxProps, Theme } from '@mui/material'
4
4
  import { Collapse, List, ListItemAvatar, ListItemButton, ListItemText } from '@mui/material'
5
5
  import React from 'react'
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-store",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.4-canary.8",
5
+ "version": "9.0.4",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,13 +12,13 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^9.0.4-canary.8",
16
- "@graphcommerce/graphql": "^9.0.4-canary.8",
17
- "@graphcommerce/graphql-mesh": "^9.0.4-canary.8",
18
- "@graphcommerce/image": "^9.0.4-canary.8",
19
- "@graphcommerce/next-ui": "^9.0.4-canary.8",
20
- "@graphcommerce/prettier-config-pwa": "^9.0.4-canary.8",
21
- "@graphcommerce/typescript-config-pwa": "^9.0.4-canary.8",
15
+ "@graphcommerce/eslint-config-pwa": "^9.0.4",
16
+ "@graphcommerce/graphql": "^9.0.4",
17
+ "@graphcommerce/graphql-mesh": "^9.0.4",
18
+ "@graphcommerce/image": "^9.0.4",
19
+ "@graphcommerce/next-ui": "^9.0.4",
20
+ "@graphcommerce/prettier-config-pwa": "^9.0.4",
21
+ "@graphcommerce/typescript-config-pwa": "^9.0.4",
22
22
  "@lingui/core": "^4.2.1",
23
23
  "@lingui/macro": "^4.2.1",
24
24
  "@lingui/react": "^4.2.1",
@@ -1,10 +1,10 @@
1
- import type { ParsedUrlQuery } from 'querystring'
2
1
  import type { ApolloClient, ApolloQueryResult, NormalizedCacheObject } from '@graphcommerce/graphql'
3
2
  import { flushMeasurePerf } from '@graphcommerce/graphql'
4
3
  import { isTypename, nonNullable, storefrontConfig } from '@graphcommerce/next-ui'
5
4
  import type { Redirect } from 'next'
6
- import { defaultLocale } from '../localeToStore'
5
+ import type { ParsedUrlQuery } from 'querystring'
7
6
  import type { StoreConfigQuery } from '../StoreConfig.gql'
7
+ import { defaultLocale } from '../localeToStore'
8
8
  import type { HandleRedirectQuery } from './HandleRedirect.gql'
9
9
  import { HandleRedirectDocument } from './HandleRedirect.gql'
10
10