Skip to content

Commit

Permalink
ci: release (#1558)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 9, 2024
1 parent aa9e8a9 commit f1dfc20
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 26 deletions.
25 changes: 0 additions & 25 deletions .changeset/ninety-parrots-mate.md

This file was deleted.

40 changes: 40 additions & 0 deletions docs/content/5.api/magento-api.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2394,6 +2394,46 @@
"endIndex": 3
}
},
{
"kind": "PropertySignature",
"canonicalReference": "@vue-storefront/magento-api!Config#cookieOptions:member",
"docComment": "",
"excerptTokens": [
{
"kind": "Content",
"text": "cookieOptions?: "
},
{
"kind": "Reference",
"text": "Record",
"canonicalReference": "!Record:type"
},
{
"kind": "Content",
"text": "<string, "
},
{
"kind": "Reference",
"text": "CookieOptions",
"canonicalReference": "@types/express!~e.CookieOptions:interface"
},
{
"kind": "Content",
"text": ">"
},
{
"kind": "Content",
"text": ";"
}
],
"isOptional": true,
"releaseTag": "Public",
"name": "cookieOptions",
"propertyTypeTokenRange": {
"startIndex": 1,
"endIndex": 5
}
},
{
"kind": "PropertySignature",
"canonicalReference": "@vue-storefront/magento-api!Config#customApolloHttpLinkOptions:member",
Expand Down
27 changes: 27 additions & 0 deletions docs/content/6.reference/changelogs/vue-storefront-magento-api.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @vue-storefront/magento-api

## 6.2.0

### Minor Changes

- aa9e8a96: **[ADDED]** `cookieOptions` config. This option allows you to customize the cookie options which are set for a given cookie name.

Example:

```
{
integrations: {
magento: {
location: "@vue-storefront/magento-api/server",
configuration: {
// ...
cookieOptions: {
"vsf-customer": {
secure: process.env.NODE_ENV === 'production',
sameSite: process.env.NODE_ENV === 'production' ? 'none' : 'strict',
}
}
},
},
},
}
```

## 6.1.0

### Minor Changes
Expand Down
27 changes: 27 additions & 0 deletions packages/api-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @vue-storefront/magento-api

## 6.2.0

### Minor Changes

- aa9e8a96: **[ADDED]** `cookieOptions` config. This option allows you to customize the cookie options which are set for a given cookie name.

Example:

```
{
integrations: {
magento: {
location: "@vue-storefront/magento-api/server",
configuration: {
// ...
cookieOptions: {
"vsf-customer": {
secure: process.env.NODE_ENV === 'production',
sameSite: process.env.NODE_ENV === 'production' ? 'none' : 'strict',
}
}
},
},
},
}
```

## 6.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/magento-api",
"version": "6.1.0",
"version": "6.2.0",
"sideEffects": false,
"homepage": "https://github.com/vuestorefront/magento2",
"bugs": {
Expand Down

0 comments on commit f1dfc20

Please sign in to comment.