Skip to content

Commit f1dfc20

Browse files
ci: release (#1558)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent aa9e8a9 commit f1dfc20

File tree

5 files changed

+95
-26
lines changed

5 files changed

+95
-26
lines changed

.changeset/ninety-parrots-mate.md

-25
This file was deleted.

docs/content/5.api/magento-api.api.json

+40
Original file line numberDiff line numberDiff line change
@@ -2394,6 +2394,46 @@
23942394
"endIndex": 3
23952395
}
23962396
},
2397+
{
2398+
"kind": "PropertySignature",
2399+
"canonicalReference": "@vue-storefront/magento-api!Config#cookieOptions:member",
2400+
"docComment": "",
2401+
"excerptTokens": [
2402+
{
2403+
"kind": "Content",
2404+
"text": "cookieOptions?: "
2405+
},
2406+
{
2407+
"kind": "Reference",
2408+
"text": "Record",
2409+
"canonicalReference": "!Record:type"
2410+
},
2411+
{
2412+
"kind": "Content",
2413+
"text": "<string, "
2414+
},
2415+
{
2416+
"kind": "Reference",
2417+
"text": "CookieOptions",
2418+
"canonicalReference": "@types/express!~e.CookieOptions:interface"
2419+
},
2420+
{
2421+
"kind": "Content",
2422+
"text": ">"
2423+
},
2424+
{
2425+
"kind": "Content",
2426+
"text": ";"
2427+
}
2428+
],
2429+
"isOptional": true,
2430+
"releaseTag": "Public",
2431+
"name": "cookieOptions",
2432+
"propertyTypeTokenRange": {
2433+
"startIndex": 1,
2434+
"endIndex": 5
2435+
}
2436+
},
23972437
{
23982438
"kind": "PropertySignature",
23992439
"canonicalReference": "@vue-storefront/magento-api!Config#customApolloHttpLinkOptions:member",

docs/content/6.reference/changelogs/vue-storefront-magento-api.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @vue-storefront/magento-api
22

3+
## 6.2.0
4+
5+
### Minor Changes
6+
7+
- aa9e8a96: **[ADDED]** `cookieOptions` config. This option allows you to customize the cookie options which are set for a given cookie name.
8+
9+
Example:
10+
11+
```
12+
{
13+
integrations: {
14+
magento: {
15+
location: "@vue-storefront/magento-api/server",
16+
configuration: {
17+
// ...
18+
cookieOptions: {
19+
"vsf-customer": {
20+
secure: process.env.NODE_ENV === 'production',
21+
sameSite: process.env.NODE_ENV === 'production' ? 'none' : 'strict',
22+
}
23+
}
24+
},
25+
},
26+
},
27+
}
28+
```
29+
330
## 6.1.0
431

532
### Minor Changes

packages/api-client/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @vue-storefront/magento-api
22

3+
## 6.2.0
4+
5+
### Minor Changes
6+
7+
- aa9e8a96: **[ADDED]** `cookieOptions` config. This option allows you to customize the cookie options which are set for a given cookie name.
8+
9+
Example:
10+
11+
```
12+
{
13+
integrations: {
14+
magento: {
15+
location: "@vue-storefront/magento-api/server",
16+
configuration: {
17+
// ...
18+
cookieOptions: {
19+
"vsf-customer": {
20+
secure: process.env.NODE_ENV === 'production',
21+
sameSite: process.env.NODE_ENV === 'production' ? 'none' : 'strict',
22+
}
23+
}
24+
},
25+
},
26+
},
27+
}
28+
```
29+
330
## 6.1.0
431

532
### Minor Changes

packages/api-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-storefront/magento-api",
3-
"version": "6.1.0",
3+
"version": "6.2.0",
44
"sideEffects": false,
55
"homepage": "https://github.com/vuestorefront/magento2",
66
"bugs": {

0 commit comments

Comments
 (0)