From c2ee199402bc4e9d5846dc50778778e940ac7124 Mon Sep 17 00:00:00 2001 From: Arthur Andrade Date: Tue, 22 Feb 2022 10:55:09 -0300 Subject: [PATCH 1/8] feat: Ajust SearchInput reference (#1153) --- .../src/molecules/SearchInput/SearchInput.tsx | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/packages/ui/src/molecules/SearchInput/SearchInput.tsx b/packages/ui/src/molecules/SearchInput/SearchInput.tsx index d7ff4b90a9..9fe479246f 100644 --- a/packages/ui/src/molecules/SearchInput/SearchInput.tsx +++ b/packages/ui/src/molecules/SearchInput/SearchInput.tsx @@ -4,7 +4,7 @@ import type { InputHTMLAttributes, ReactNode, } from 'react' -import React, { forwardRef, useRef } from 'react' +import React, { useImperativeHandle, forwardRef, useRef } from 'react' import Button from '../../atoms/Button' import Icon from '../../atoms/Icon' @@ -50,7 +50,12 @@ export interface SearchInputProps extends InputProps { testId?: string } -const SearchInput = forwardRef( +export interface SearchInputRef { + inputRef?: HTMLInputElement | null + formRef?: HTMLFormElement | null +} + +const SearchInput = forwardRef( function SearchInput( { onSubmit, @@ -61,25 +66,31 @@ const SearchInput = forwardRef( }, ref ) { - const valueRef = useRef(null) + const inputRef = useRef(null) + const formRef = useRef(null) const handleSubmit = (event: FormEvent) => { event.preventDefault() - if (valueRef.current?.value !== '') { - onSubmit(valueRef.current!.value) + if (inputRef.current?.value !== '') { + onSubmit(inputRef.current!.value) } } + useImperativeHandle(ref, () => ({ + inputRef: inputRef.current, + formRef: formRef.current, + })) + return (
- + From 81bc636d76a0da11f10835bfc48f4e44329e4ce2 Mon Sep 17 00:00:00 2001 From: vtexgithubbot Date: Tue, 22 Feb 2022 14:14:21 +0000 Subject: [PATCH 2/8] Release: 1.5.13 --- CHANGELOG.md | 11 +++++++++++ docs/CHANGELOG.md | 11 +++++++++++ docs/package.json | 6 +++--- lerna.json | 2 +- packages/api/CHANGELOG.md | 11 +++++++++++ packages/api/package.json | 2 +- packages/gatsby-plugin-cms/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-cms/package.json | 4 ++-- packages/gatsby-plugin-nginx/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-nginx/package.json | 2 +- packages/gatsby-plugin-onesignal/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-onesignal/package.json | 2 +- packages/gatsby-plugin-thumbor/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-thumbor/package.json | 2 +- packages/gatsby-source-store/CHANGELOG.md | 11 +++++++++++ packages/gatsby-source-store/package.json | 2 +- packages/gatsby-source-vtex/CHANGELOG.md | 11 +++++++++++ packages/gatsby-source-vtex/package.json | 2 +- packages/graphql-utils/CHANGELOG.md | 11 +++++++++++ packages/graphql-utils/package.json | 2 +- packages/lighthouse-config/CHANGELOG.md | 11 +++++++++++ packages/lighthouse-config/package.json | 2 +- packages/renovate-config/CHANGELOG.md | 11 +++++++++++ packages/renovate-config/package.json | 2 +- packages/sdk/CHANGELOG.md | 11 +++++++++++ packages/sdk/package.json | 2 +- packages/ui/CHANGELOG.md | 11 +++++++++++ packages/ui/package.json | 4 ++-- themes/theme-b2c-tailwind/CHANGELOG.md | 11 +++++++++++ themes/theme-b2c-tailwind/package.json | 2 +- 30 files changed, 184 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a285907fb3..23c6430239 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 82f4270b27..ba3c49a91c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/docs/package.json b/docs/package.json index 956ea0a8dd..aa37c21441 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.5.12", + "version": "1.5.13", "private": true, "scripts": { "docusaurus": "docusaurus", @@ -18,11 +18,11 @@ "@docusaurus/preset-classic": "^2.0.0-beta.13", "@docusaurus/remark-plugin-npm2yarn": "^2.0.0-beta.13", "@docusaurus/theme-live-codeblock": "^2.0.0-beta.13", - "@faststore/ui": "^1.5.12", + "@faststore/ui": "^1.5.13", "@fortawesome/fontawesome-free": "^5.15.4", "@mdx-js/react": "^1.6.21", "@svgr/webpack": "^5.5.0", - "@vtex/theme-b2c-tailwind": "^1.5.12", + "@vtex/theme-b2c-tailwind": "^1.5.13", "babel-loader": "^8.2.2", "clsx": "^1.1.1", "docusaurus-plugin-image-zoom": "^0.0.2", diff --git a/lerna.json b/lerna.json index 68c32de2e9..2fe8f17de4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "1.5.12", + "version": "1.5.13", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index b852fe1610..37729286e6 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/api/package.json b/packages/api/package.json index dac0255e21..a4e19cb32f 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/api", - "version": "1.5.12", + "version": "1.5.13", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/gatsby-plugin-cms/CHANGELOG.md b/packages/gatsby-plugin-cms/CHANGELOG.md index bc36f864a5..706bf716d1 100644 --- a/packages/gatsby-plugin-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-cms/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/gatsby-plugin-cms/package.json b/packages/gatsby-plugin-cms/package.json index dbe2ca0d63..f2347df099 100644 --- a/packages/gatsby-plugin-cms/package.json +++ b/packages/gatsby-plugin-cms/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-cms", - "version": "1.5.12", + "version": "1.5.13", "description": "Gatsby plugin for building pages with VTEX CMS.", "repository": { "type": "git", @@ -34,7 +34,7 @@ "dependencies": { "@babel/preset-typescript": "^7.12.7", "@babel/register": "^7.12.1", - "@vtex/gatsby-source-vtex": "^1.5.12", + "@vtex/gatsby-source-vtex": "^1.5.13", "camelcase": "^6.2.0", "chokidar": "^3.5.0", "fetch-retry": "^4.1.1", diff --git a/packages/gatsby-plugin-nginx/CHANGELOG.md b/packages/gatsby-plugin-nginx/CHANGELOG.md index 8087237798..ab2a715f20 100644 --- a/packages/gatsby-plugin-nginx/CHANGELOG.md +++ b/packages/gatsby-plugin-nginx/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/gatsby-plugin-nginx/package.json b/packages/gatsby-plugin-nginx/package.json index 4e9b1c5eed..f2b8a0ccc8 100644 --- a/packages/gatsby-plugin-nginx/package.json +++ b/packages/gatsby-plugin-nginx/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-nginx", - "version": "1.5.12", + "version": "1.5.13", "description": "Gatsby plugin to generate a nginx configuration template.", "license": "MIT", "repository": { diff --git a/packages/gatsby-plugin-onesignal/CHANGELOG.md b/packages/gatsby-plugin-onesignal/CHANGELOG.md index 732483aca8..4b5b225517 100644 --- a/packages/gatsby-plugin-onesignal/CHANGELOG.md +++ b/packages/gatsby-plugin-onesignal/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/gatsby-plugin-onesignal/package.json b/packages/gatsby-plugin-onesignal/package.json index d060347422..adf8321080 100644 --- a/packages/gatsby-plugin-onesignal/package.json +++ b/packages/gatsby-plugin-onesignal/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-onesignal", - "version": "1.5.12", + "version": "1.5.13", "description": "Gatsby plugin for a simple OneSignal use case.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-thumbor/CHANGELOG.md b/packages/gatsby-plugin-thumbor/CHANGELOG.md index dac528dfa6..294339df22 100644 --- a/packages/gatsby-plugin-thumbor/CHANGELOG.md +++ b/packages/gatsby-plugin-thumbor/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/gatsby-plugin-thumbor/package.json b/packages/gatsby-plugin-thumbor/package.json index f390242743..5f7011d72f 100644 --- a/packages/gatsby-plugin-thumbor/package.json +++ b/packages/gatsby-plugin-thumbor/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-thumbor", - "version": "1.5.12", + "version": "1.5.13", "author": "Tiago Gimenes", "license": "MIT", "repository": { diff --git a/packages/gatsby-source-store/CHANGELOG.md b/packages/gatsby-source-store/CHANGELOG.md index 0690f1c95b..2cac37d08b 100644 --- a/packages/gatsby-source-store/CHANGELOG.md +++ b/packages/gatsby-source-store/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/gatsby-source-store/package.json b/packages/gatsby-source-store/package.json index ca1fa209ce..dd76305020 100644 --- a/packages/gatsby-source-store/package.json +++ b/packages/gatsby-source-store/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-store", - "version": "1.5.12", + "version": "1.5.13", "description": "Gatsby source plugin for building websites using a FastStore compatible server", "author": "Store Framework", "license": "MIT", diff --git a/packages/gatsby-source-vtex/CHANGELOG.md b/packages/gatsby-source-vtex/CHANGELOG.md index 469ef948bb..913f365947 100644 --- a/packages/gatsby-source-vtex/CHANGELOG.md +++ b/packages/gatsby-source-vtex/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/gatsby-source-vtex/package.json b/packages/gatsby-source-vtex/package.json index a5196fa5f0..b99ac38a2f 100644 --- a/packages/gatsby-source-vtex/package.json +++ b/packages/gatsby-source-vtex/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-vtex", - "version": "1.5.12", + "version": "1.5.13", "description": "Gatsby source plugin for building websites using VTEX as a data source.", "author": "Store Framework", "license": "MIT", diff --git a/packages/graphql-utils/CHANGELOG.md b/packages/graphql-utils/CHANGELOG.md index b5f6a358b0..7a04f67292 100644 --- a/packages/graphql-utils/CHANGELOG.md +++ b/packages/graphql-utils/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json index dba81c7de5..1d2b4127cc 100644 --- a/packages/graphql-utils/package.json +++ b/packages/graphql-utils/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/graphql-utils", - "version": "1.5.12", + "version": "1.5.13", "description": "GraphQL utilities", "repository": { "type": "git", diff --git a/packages/lighthouse-config/CHANGELOG.md b/packages/lighthouse-config/CHANGELOG.md index fe2ba873f4..0225951886 100644 --- a/packages/lighthouse-config/CHANGELOG.md +++ b/packages/lighthouse-config/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/lighthouse-config/package.json b/packages/lighthouse-config/package.json index 83e7675742..06a2ae154a 100644 --- a/packages/lighthouse-config/package.json +++ b/packages/lighthouse-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/lighthouse-config", - "version": "1.5.12", + "version": "1.5.13", "author": "Emerson Laurentino", "license": "MIT", "repository": { diff --git a/packages/renovate-config/CHANGELOG.md b/packages/renovate-config/CHANGELOG.md index cb754b2a9d..a84f7cc908 100644 --- a/packages/renovate-config/CHANGELOG.md +++ b/packages/renovate-config/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/renovate-config/package.json b/packages/renovate-config/package.json index 2744959890..caa21cfe98 100644 --- a/packages/renovate-config/package.json +++ b/packages/renovate-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/renovate-config", - "version": "1.5.12", + "version": "1.5.13", "description": "A plugin that holds the Renovate preset config for updating VTEX dependencies in our stores", "author": "VTEX", "license": "MIT", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index e85108ceaf..a165da04b1 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 8a0e745557..1b42c3f552 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/sdk", - "version": "1.5.12", + "version": "1.5.13", "description": "Hooks for creating your next component library", "license": "MIT", "repository": { diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 56c62ad1bc..a766ab739e 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/packages/ui/package.json b/packages/ui/package.json index c547fe6167..e4f6332b0d 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/ui", - "version": "1.5.12", + "version": "1.5.13", "description": "A lightweight, framework agnostic component library for React", "author": "emersonlaurentino", "license": "MIT", @@ -76,7 +76,7 @@ "@types/jest-axe": "^3.5.3", "@types/tabbable": "^3.1.1", "@types/testing-library__jest-dom": "^5.9.5", - "@vtex/theme-b2c-tailwind": "^1.5.12", + "@vtex/theme-b2c-tailwind": "^1.5.13", "@vtex/tsconfig": "^0.5.0", "chalk": "^5.0.0", "jest-axe": "^5.0.1", diff --git a/themes/theme-b2c-tailwind/CHANGELOG.md b/themes/theme-b2c-tailwind/CHANGELOG.md index 346a7b1711..4d1b62a49d 100644 --- a/themes/theme-b2c-tailwind/CHANGELOG.md +++ b/themes/theme-b2c-tailwind/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.13 (2022-02-22) + + +### Features + +* Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124)) + + + + + ## 1.5.12 (2022-02-21) diff --git a/themes/theme-b2c-tailwind/package.json b/themes/theme-b2c-tailwind/package.json index 9efa6029d2..b9a85ee5e6 100644 --- a/themes/theme-b2c-tailwind/package.json +++ b/themes/theme-b2c-tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/theme-b2c-tailwind", - "version": "1.5.12", + "version": "1.5.13", "description": "Basic theme for our Store UI components.", "author": "VTEX ", "license": "MIT", From 22d632d02657be5bef7595ad4179e5086eef7580 Mon Sep 17 00:00:00 2001 From: Arthur Andrade Date: Tue, 22 Feb 2022 12:22:44 -0300 Subject: [PATCH 3/8] feat: Ajust SearchInput reference export (#1155) --- packages/ui/src/index.ts | 2 +- packages/ui/src/molecules/SearchInput/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/index.ts b/packages/ui/src/index.ts index e54a2a25d7..313a7cf64b 100644 --- a/packages/ui/src/index.ts +++ b/packages/ui/src/index.ts @@ -58,7 +58,7 @@ export { default as Bullets } from './molecules/Bullets' export type { BulletsProps } from './molecules/Bullets' export { default as SearchInput } from './molecules/SearchInput' -export type { SearchInputProps } from './molecules/SearchInput' +export type { SearchInputProps, SearchInputRef } from './molecules/SearchInput' export { default as Carousel } from './molecules/Carousel' export type { CarouselProps } from './molecules/Carousel' diff --git a/packages/ui/src/molecules/SearchInput/index.ts b/packages/ui/src/molecules/SearchInput/index.ts index 2cbb4d21fc..c21a43975d 100644 --- a/packages/ui/src/molecules/SearchInput/index.ts +++ b/packages/ui/src/molecules/SearchInput/index.ts @@ -1,2 +1,2 @@ export { default } from './SearchInput' -export type { SearchInputProps } from './SearchInput' +export type { SearchInputProps, SearchInputRef } from './SearchInput' From a51e880c27a8a7a6bc1b685d1777e4525e3024e7 Mon Sep 17 00:00:00 2001 From: vtexgithubbot Date: Tue, 22 Feb 2022 15:42:15 +0000 Subject: [PATCH 4/8] Release: 1.5.14 --- CHANGELOG.md | 11 +++++++++++ docs/CHANGELOG.md | 11 +++++++++++ docs/package.json | 6 +++--- lerna.json | 2 +- packages/api/CHANGELOG.md | 11 +++++++++++ packages/api/package.json | 2 +- packages/gatsby-plugin-cms/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-cms/package.json | 4 ++-- packages/gatsby-plugin-nginx/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-nginx/package.json | 2 +- packages/gatsby-plugin-onesignal/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-onesignal/package.json | 2 +- packages/gatsby-plugin-thumbor/CHANGELOG.md | 11 +++++++++++ packages/gatsby-plugin-thumbor/package.json | 2 +- packages/gatsby-source-store/CHANGELOG.md | 11 +++++++++++ packages/gatsby-source-store/package.json | 2 +- packages/gatsby-source-vtex/CHANGELOG.md | 11 +++++++++++ packages/gatsby-source-vtex/package.json | 2 +- packages/graphql-utils/CHANGELOG.md | 11 +++++++++++ packages/graphql-utils/package.json | 2 +- packages/lighthouse-config/CHANGELOG.md | 11 +++++++++++ packages/lighthouse-config/package.json | 2 +- packages/renovate-config/CHANGELOG.md | 11 +++++++++++ packages/renovate-config/package.json | 2 +- packages/sdk/CHANGELOG.md | 11 +++++++++++ packages/sdk/package.json | 2 +- packages/ui/CHANGELOG.md | 11 +++++++++++ packages/ui/package.json | 4 ++-- themes/theme-b2c-tailwind/CHANGELOG.md | 11 +++++++++++ themes/theme-b2c-tailwind/package.json | 2 +- 30 files changed, 184 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23c6430239..3c65da24cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ba3c49a91c..6fdc746f25 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/docs/package.json b/docs/package.json index aa37c21441..e5a243e3a8 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.5.13", + "version": "1.5.14", "private": true, "scripts": { "docusaurus": "docusaurus", @@ -18,11 +18,11 @@ "@docusaurus/preset-classic": "^2.0.0-beta.13", "@docusaurus/remark-plugin-npm2yarn": "^2.0.0-beta.13", "@docusaurus/theme-live-codeblock": "^2.0.0-beta.13", - "@faststore/ui": "^1.5.13", + "@faststore/ui": "^1.5.14", "@fortawesome/fontawesome-free": "^5.15.4", "@mdx-js/react": "^1.6.21", "@svgr/webpack": "^5.5.0", - "@vtex/theme-b2c-tailwind": "^1.5.13", + "@vtex/theme-b2c-tailwind": "^1.5.14", "babel-loader": "^8.2.2", "clsx": "^1.1.1", "docusaurus-plugin-image-zoom": "^0.0.2", diff --git a/lerna.json b/lerna.json index 2fe8f17de4..4c5b92ea81 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "1.5.13", + "version": "1.5.14", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 37729286e6..c4d6213a1d 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/api/package.json b/packages/api/package.json index a4e19cb32f..a81de4eb80 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/api", - "version": "1.5.13", + "version": "1.5.14", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/gatsby-plugin-cms/CHANGELOG.md b/packages/gatsby-plugin-cms/CHANGELOG.md index 706bf716d1..462e17df9a 100644 --- a/packages/gatsby-plugin-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-cms/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/gatsby-plugin-cms/package.json b/packages/gatsby-plugin-cms/package.json index f2347df099..bc57d8377f 100644 --- a/packages/gatsby-plugin-cms/package.json +++ b/packages/gatsby-plugin-cms/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-cms", - "version": "1.5.13", + "version": "1.5.14", "description": "Gatsby plugin for building pages with VTEX CMS.", "repository": { "type": "git", @@ -34,7 +34,7 @@ "dependencies": { "@babel/preset-typescript": "^7.12.7", "@babel/register": "^7.12.1", - "@vtex/gatsby-source-vtex": "^1.5.13", + "@vtex/gatsby-source-vtex": "^1.5.14", "camelcase": "^6.2.0", "chokidar": "^3.5.0", "fetch-retry": "^4.1.1", diff --git a/packages/gatsby-plugin-nginx/CHANGELOG.md b/packages/gatsby-plugin-nginx/CHANGELOG.md index ab2a715f20..781abb9c60 100644 --- a/packages/gatsby-plugin-nginx/CHANGELOG.md +++ b/packages/gatsby-plugin-nginx/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/gatsby-plugin-nginx/package.json b/packages/gatsby-plugin-nginx/package.json index f2b8a0ccc8..9856f5b1f1 100644 --- a/packages/gatsby-plugin-nginx/package.json +++ b/packages/gatsby-plugin-nginx/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-nginx", - "version": "1.5.13", + "version": "1.5.14", "description": "Gatsby plugin to generate a nginx configuration template.", "license": "MIT", "repository": { diff --git a/packages/gatsby-plugin-onesignal/CHANGELOG.md b/packages/gatsby-plugin-onesignal/CHANGELOG.md index 4b5b225517..395651df44 100644 --- a/packages/gatsby-plugin-onesignal/CHANGELOG.md +++ b/packages/gatsby-plugin-onesignal/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/gatsby-plugin-onesignal/package.json b/packages/gatsby-plugin-onesignal/package.json index adf8321080..10d3686884 100644 --- a/packages/gatsby-plugin-onesignal/package.json +++ b/packages/gatsby-plugin-onesignal/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-onesignal", - "version": "1.5.13", + "version": "1.5.14", "description": "Gatsby plugin for a simple OneSignal use case.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-thumbor/CHANGELOG.md b/packages/gatsby-plugin-thumbor/CHANGELOG.md index 294339df22..ba861ee800 100644 --- a/packages/gatsby-plugin-thumbor/CHANGELOG.md +++ b/packages/gatsby-plugin-thumbor/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/gatsby-plugin-thumbor/package.json b/packages/gatsby-plugin-thumbor/package.json index 5f7011d72f..803890ca1b 100644 --- a/packages/gatsby-plugin-thumbor/package.json +++ b/packages/gatsby-plugin-thumbor/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-thumbor", - "version": "1.5.13", + "version": "1.5.14", "author": "Tiago Gimenes", "license": "MIT", "repository": { diff --git a/packages/gatsby-source-store/CHANGELOG.md b/packages/gatsby-source-store/CHANGELOG.md index 2cac37d08b..589e7ea2f7 100644 --- a/packages/gatsby-source-store/CHANGELOG.md +++ b/packages/gatsby-source-store/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/gatsby-source-store/package.json b/packages/gatsby-source-store/package.json index dd76305020..d83f844fbc 100644 --- a/packages/gatsby-source-store/package.json +++ b/packages/gatsby-source-store/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-store", - "version": "1.5.13", + "version": "1.5.14", "description": "Gatsby source plugin for building websites using a FastStore compatible server", "author": "Store Framework", "license": "MIT", diff --git a/packages/gatsby-source-vtex/CHANGELOG.md b/packages/gatsby-source-vtex/CHANGELOG.md index 913f365947..4346f470a0 100644 --- a/packages/gatsby-source-vtex/CHANGELOG.md +++ b/packages/gatsby-source-vtex/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/gatsby-source-vtex/package.json b/packages/gatsby-source-vtex/package.json index b99ac38a2f..4271200a26 100644 --- a/packages/gatsby-source-vtex/package.json +++ b/packages/gatsby-source-vtex/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-vtex", - "version": "1.5.13", + "version": "1.5.14", "description": "Gatsby source plugin for building websites using VTEX as a data source.", "author": "Store Framework", "license": "MIT", diff --git a/packages/graphql-utils/CHANGELOG.md b/packages/graphql-utils/CHANGELOG.md index 7a04f67292..7bc98aa517 100644 --- a/packages/graphql-utils/CHANGELOG.md +++ b/packages/graphql-utils/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json index 1d2b4127cc..f0e780dafe 100644 --- a/packages/graphql-utils/package.json +++ b/packages/graphql-utils/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/graphql-utils", - "version": "1.5.13", + "version": "1.5.14", "description": "GraphQL utilities", "repository": { "type": "git", diff --git a/packages/lighthouse-config/CHANGELOG.md b/packages/lighthouse-config/CHANGELOG.md index 0225951886..0b65e0e3e9 100644 --- a/packages/lighthouse-config/CHANGELOG.md +++ b/packages/lighthouse-config/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/lighthouse-config/package.json b/packages/lighthouse-config/package.json index 06a2ae154a..d288fc8a51 100644 --- a/packages/lighthouse-config/package.json +++ b/packages/lighthouse-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/lighthouse-config", - "version": "1.5.13", + "version": "1.5.14", "author": "Emerson Laurentino", "license": "MIT", "repository": { diff --git a/packages/renovate-config/CHANGELOG.md b/packages/renovate-config/CHANGELOG.md index a84f7cc908..c0cab0a559 100644 --- a/packages/renovate-config/CHANGELOG.md +++ b/packages/renovate-config/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/renovate-config/package.json b/packages/renovate-config/package.json index caa21cfe98..29e8c40d45 100644 --- a/packages/renovate-config/package.json +++ b/packages/renovate-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/renovate-config", - "version": "1.5.13", + "version": "1.5.14", "description": "A plugin that holds the Renovate preset config for updating VTEX dependencies in our stores", "author": "VTEX", "license": "MIT", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index a165da04b1..1490def23d 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 1b42c3f552..bae00037e2 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/sdk", - "version": "1.5.13", + "version": "1.5.14", "description": "Hooks for creating your next component library", "license": "MIT", "repository": { diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index a766ab739e..58a08749d1 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/packages/ui/package.json b/packages/ui/package.json index e4f6332b0d..c9b4118329 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/ui", - "version": "1.5.13", + "version": "1.5.14", "description": "A lightweight, framework agnostic component library for React", "author": "emersonlaurentino", "license": "MIT", @@ -76,7 +76,7 @@ "@types/jest-axe": "^3.5.3", "@types/tabbable": "^3.1.1", "@types/testing-library__jest-dom": "^5.9.5", - "@vtex/theme-b2c-tailwind": "^1.5.13", + "@vtex/theme-b2c-tailwind": "^1.5.14", "@vtex/tsconfig": "^0.5.0", "chalk": "^5.0.0", "jest-axe": "^5.0.1", diff --git a/themes/theme-b2c-tailwind/CHANGELOG.md b/themes/theme-b2c-tailwind/CHANGELOG.md index 4d1b62a49d..cfef07b95b 100644 --- a/themes/theme-b2c-tailwind/CHANGELOG.md +++ b/themes/theme-b2c-tailwind/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.14 (2022-02-22) + + +### Features + +* Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580)) + + + + + ## 1.5.13 (2022-02-22) diff --git a/themes/theme-b2c-tailwind/package.json b/themes/theme-b2c-tailwind/package.json index b9a85ee5e6..42b3b43f93 100644 --- a/themes/theme-b2c-tailwind/package.json +++ b/themes/theme-b2c-tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/theme-b2c-tailwind", - "version": "1.5.13", + "version": "1.5.14", "description": "Basic theme for our Store UI components.", "author": "VTEX ", "license": "MIT", From 5821683f20b39ac910454dc544702ae83a40ac55 Mon Sep 17 00:00:00 2001 From: Tiago Gimenes Date: Tue, 22 Feb 2022 16:31:32 -0300 Subject: [PATCH 5/8] filter active brands (#1157) --- packages/api/src/platforms/vtex/resolvers/query.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/api/src/platforms/vtex/resolvers/query.ts b/packages/api/src/platforms/vtex/resolvers/query.ts index ecaef20f3a..d4a962a514 100644 --- a/packages/api/src/platforms/vtex/resolvers/query.ts +++ b/packages/api/src/platforms/vtex/resolvers/query.ts @@ -124,7 +124,9 @@ export const Query = { } const collections = [ - ...brands.map((x) => ({ ...x, type: 'brand' })), + ...brands + .filter((brand) => brand.isActive) + .map((x) => ({ ...x, type: 'brand' })), ...categories, ] From 85a78b7c1d0c7b779c25d55364c174e9d8e9e48f Mon Sep 17 00:00:00 2001 From: vtexgithubbot Date: Tue, 22 Feb 2022 19:51:49 +0000 Subject: [PATCH 6/8] Release: 1.5.15 --- CHANGELOG.md | 8 ++++++++ docs/CHANGELOG.md | 8 ++++++++ docs/package.json | 6 +++--- lerna.json | 2 +- packages/api/CHANGELOG.md | 8 ++++++++ packages/api/package.json | 2 +- packages/gatsby-plugin-cms/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-cms/package.json | 4 ++-- packages/gatsby-plugin-nginx/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-nginx/package.json | 2 +- packages/gatsby-plugin-onesignal/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-onesignal/package.json | 2 +- packages/gatsby-plugin-thumbor/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-thumbor/package.json | 2 +- packages/gatsby-source-store/CHANGELOG.md | 8 ++++++++ packages/gatsby-source-store/package.json | 2 +- packages/gatsby-source-vtex/CHANGELOG.md | 8 ++++++++ packages/gatsby-source-vtex/package.json | 2 +- packages/graphql-utils/CHANGELOG.md | 8 ++++++++ packages/graphql-utils/package.json | 2 +- packages/lighthouse-config/CHANGELOG.md | 8 ++++++++ packages/lighthouse-config/package.json | 2 +- packages/renovate-config/CHANGELOG.md | 8 ++++++++ packages/renovate-config/package.json | 2 +- packages/sdk/CHANGELOG.md | 8 ++++++++ packages/sdk/package.json | 2 +- packages/ui/CHANGELOG.md | 8 ++++++++ packages/ui/package.json | 4 ++-- themes/theme-b2c-tailwind/CHANGELOG.md | 8 ++++++++ themes/theme-b2c-tailwind/package.json | 2 +- 30 files changed, 139 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c65da24cf..a413c93aa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package faststore + + + + + ## 1.5.14 (2022-02-22) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 6fdc746f25..ea2cded3cb 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package docs + + + + + ## 1.5.14 (2022-02-22) diff --git a/docs/package.json b/docs/package.json index e5a243e3a8..e983313575 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.5.14", + "version": "1.5.15", "private": true, "scripts": { "docusaurus": "docusaurus", @@ -18,11 +18,11 @@ "@docusaurus/preset-classic": "^2.0.0-beta.13", "@docusaurus/remark-plugin-npm2yarn": "^2.0.0-beta.13", "@docusaurus/theme-live-codeblock": "^2.0.0-beta.13", - "@faststore/ui": "^1.5.14", + "@faststore/ui": "^1.5.15", "@fortawesome/fontawesome-free": "^5.15.4", "@mdx-js/react": "^1.6.21", "@svgr/webpack": "^5.5.0", - "@vtex/theme-b2c-tailwind": "^1.5.14", + "@vtex/theme-b2c-tailwind": "^1.5.15", "babel-loader": "^8.2.2", "clsx": "^1.1.1", "docusaurus-plugin-image-zoom": "^0.0.2", diff --git a/lerna.json b/lerna.json index 4c5b92ea81..e67670c4e4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "1.5.14", + "version": "1.5.15", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index c4d6213a1d..038c5e0d60 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @faststore/api + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/api/package.json b/packages/api/package.json index a81de4eb80..0356471356 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/api", - "version": "1.5.14", + "version": "1.5.15", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/gatsby-plugin-cms/CHANGELOG.md b/packages/gatsby-plugin-cms/CHANGELOG.md index 462e17df9a..f61d8266e7 100644 --- a/packages/gatsby-plugin-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-cms/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-cms + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/gatsby-plugin-cms/package.json b/packages/gatsby-plugin-cms/package.json index bc57d8377f..7830398fd0 100644 --- a/packages/gatsby-plugin-cms/package.json +++ b/packages/gatsby-plugin-cms/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-cms", - "version": "1.5.14", + "version": "1.5.15", "description": "Gatsby plugin for building pages with VTEX CMS.", "repository": { "type": "git", @@ -34,7 +34,7 @@ "dependencies": { "@babel/preset-typescript": "^7.12.7", "@babel/register": "^7.12.1", - "@vtex/gatsby-source-vtex": "^1.5.14", + "@vtex/gatsby-source-vtex": "^1.5.15", "camelcase": "^6.2.0", "chokidar": "^3.5.0", "fetch-retry": "^4.1.1", diff --git a/packages/gatsby-plugin-nginx/CHANGELOG.md b/packages/gatsby-plugin-nginx/CHANGELOG.md index 781abb9c60..bf49e305a3 100644 --- a/packages/gatsby-plugin-nginx/CHANGELOG.md +++ b/packages/gatsby-plugin-nginx/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-nginx + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/gatsby-plugin-nginx/package.json b/packages/gatsby-plugin-nginx/package.json index 9856f5b1f1..12d425cea1 100644 --- a/packages/gatsby-plugin-nginx/package.json +++ b/packages/gatsby-plugin-nginx/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-nginx", - "version": "1.5.14", + "version": "1.5.15", "description": "Gatsby plugin to generate a nginx configuration template.", "license": "MIT", "repository": { diff --git a/packages/gatsby-plugin-onesignal/CHANGELOG.md b/packages/gatsby-plugin-onesignal/CHANGELOG.md index 395651df44..a25a9243c5 100644 --- a/packages/gatsby-plugin-onesignal/CHANGELOG.md +++ b/packages/gatsby-plugin-onesignal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-onesignal + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/gatsby-plugin-onesignal/package.json b/packages/gatsby-plugin-onesignal/package.json index 10d3686884..d8dc679160 100644 --- a/packages/gatsby-plugin-onesignal/package.json +++ b/packages/gatsby-plugin-onesignal/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-onesignal", - "version": "1.5.14", + "version": "1.5.15", "description": "Gatsby plugin for a simple OneSignal use case.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-thumbor/CHANGELOG.md b/packages/gatsby-plugin-thumbor/CHANGELOG.md index ba861ee800..2c6001f705 100644 --- a/packages/gatsby-plugin-thumbor/CHANGELOG.md +++ b/packages/gatsby-plugin-thumbor/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-thumbor + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/gatsby-plugin-thumbor/package.json b/packages/gatsby-plugin-thumbor/package.json index 803890ca1b..676f53710b 100644 --- a/packages/gatsby-plugin-thumbor/package.json +++ b/packages/gatsby-plugin-thumbor/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-thumbor", - "version": "1.5.14", + "version": "1.5.15", "author": "Tiago Gimenes", "license": "MIT", "repository": { diff --git a/packages/gatsby-source-store/CHANGELOG.md b/packages/gatsby-source-store/CHANGELOG.md index 589e7ea2f7..f45043c88e 100644 --- a/packages/gatsby-source-store/CHANGELOG.md +++ b/packages/gatsby-source-store/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-source-store + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/gatsby-source-store/package.json b/packages/gatsby-source-store/package.json index d83f844fbc..76c8112590 100644 --- a/packages/gatsby-source-store/package.json +++ b/packages/gatsby-source-store/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-store", - "version": "1.5.14", + "version": "1.5.15", "description": "Gatsby source plugin for building websites using a FastStore compatible server", "author": "Store Framework", "license": "MIT", diff --git a/packages/gatsby-source-vtex/CHANGELOG.md b/packages/gatsby-source-vtex/CHANGELOG.md index 4346f470a0..c948e20637 100644 --- a/packages/gatsby-source-vtex/CHANGELOG.md +++ b/packages/gatsby-source-vtex/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-source-vtex + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/gatsby-source-vtex/package.json b/packages/gatsby-source-vtex/package.json index 4271200a26..5dd72d5428 100644 --- a/packages/gatsby-source-vtex/package.json +++ b/packages/gatsby-source-vtex/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-vtex", - "version": "1.5.14", + "version": "1.5.15", "description": "Gatsby source plugin for building websites using VTEX as a data source.", "author": "Store Framework", "license": "MIT", diff --git a/packages/graphql-utils/CHANGELOG.md b/packages/graphql-utils/CHANGELOG.md index 7bc98aa517..a5248319b0 100644 --- a/packages/graphql-utils/CHANGELOG.md +++ b/packages/graphql-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/graphql-utils + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json index f0e780dafe..849cfdc97d 100644 --- a/packages/graphql-utils/package.json +++ b/packages/graphql-utils/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/graphql-utils", - "version": "1.5.14", + "version": "1.5.15", "description": "GraphQL utilities", "repository": { "type": "git", diff --git a/packages/lighthouse-config/CHANGELOG.md b/packages/lighthouse-config/CHANGELOG.md index 0b65e0e3e9..a6ac46e2b4 100644 --- a/packages/lighthouse-config/CHANGELOG.md +++ b/packages/lighthouse-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/lighthouse-config + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/lighthouse-config/package.json b/packages/lighthouse-config/package.json index d288fc8a51..8048135541 100644 --- a/packages/lighthouse-config/package.json +++ b/packages/lighthouse-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/lighthouse-config", - "version": "1.5.14", + "version": "1.5.15", "author": "Emerson Laurentino", "license": "MIT", "repository": { diff --git a/packages/renovate-config/CHANGELOG.md b/packages/renovate-config/CHANGELOG.md index c0cab0a559..a9137d186a 100644 --- a/packages/renovate-config/CHANGELOG.md +++ b/packages/renovate-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/renovate-config + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/renovate-config/package.json b/packages/renovate-config/package.json index 29e8c40d45..a663642b14 100644 --- a/packages/renovate-config/package.json +++ b/packages/renovate-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/renovate-config", - "version": "1.5.14", + "version": "1.5.15", "description": "A plugin that holds the Renovate preset config for updating VTEX dependencies in our stores", "author": "VTEX", "license": "MIT", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 1490def23d..363295421f 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @faststore/sdk + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index bae00037e2..744cc424ad 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/sdk", - "version": "1.5.14", + "version": "1.5.15", "description": "Hooks for creating your next component library", "license": "MIT", "repository": { diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 58a08749d1..0bf3b060be 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @faststore/ui + + + + + ## 1.5.14 (2022-02-22) diff --git a/packages/ui/package.json b/packages/ui/package.json index c9b4118329..413740be19 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/ui", - "version": "1.5.14", + "version": "1.5.15", "description": "A lightweight, framework agnostic component library for React", "author": "emersonlaurentino", "license": "MIT", @@ -76,7 +76,7 @@ "@types/jest-axe": "^3.5.3", "@types/tabbable": "^3.1.1", "@types/testing-library__jest-dom": "^5.9.5", - "@vtex/theme-b2c-tailwind": "^1.5.14", + "@vtex/theme-b2c-tailwind": "^1.5.15", "@vtex/tsconfig": "^0.5.0", "chalk": "^5.0.0", "jest-axe": "^5.0.1", diff --git a/themes/theme-b2c-tailwind/CHANGELOG.md b/themes/theme-b2c-tailwind/CHANGELOG.md index cfef07b95b..23fd1ec506 100644 --- a/themes/theme-b2c-tailwind/CHANGELOG.md +++ b/themes/theme-b2c-tailwind/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.15 (2022-02-22) + +**Note:** Version bump only for package @vtex/theme-b2c-tailwind + + + + + ## 1.5.14 (2022-02-22) diff --git a/themes/theme-b2c-tailwind/package.json b/themes/theme-b2c-tailwind/package.json index 42b3b43f93..5c38c17818 100644 --- a/themes/theme-b2c-tailwind/package.json +++ b/themes/theme-b2c-tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/theme-b2c-tailwind", - "version": "1.5.14", + "version": "1.5.15", "description": "Basic theme for our Store UI components.", "author": "VTEX ", "license": "MIT", From 66bf3af25f2540c8d3a94633e6aa1de5b7c43d88 Mon Sep 17 00:00:00 2001 From: Tiago Gimenes Date: Tue, 22 Feb 2022 16:57:19 -0300 Subject: [PATCH 7/8] return correct skuId (#1156) --- packages/api/src/platforms/vtex/resolvers/product.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/api/src/platforms/vtex/resolvers/product.ts b/packages/api/src/platforms/vtex/resolvers/product.ts index af8765c97c..270bf87f63 100644 --- a/packages/api/src/platforms/vtex/resolvers/product.ts +++ b/packages/api/src/platforms/vtex/resolvers/product.ts @@ -50,11 +50,7 @@ export const StoreProduct: Record> = { alternateName: name ?? '', url: value.replace('vteximg.com.br', 'vtexassets.com'), })), - sku: ({ - isVariantOf: { - skus: [sku], - }, - }) => sku.id, + sku: ({ id }) => id, gtin: ({ reference }) => reference ?? '', review: () => [], aggregateRating: () => ({}), From 0329c9e51c2cc106c52dccdc7725765f6e57f8be Mon Sep 17 00:00:00 2001 From: vtexgithubbot Date: Tue, 22 Feb 2022 20:16:08 +0000 Subject: [PATCH 8/8] Release: 1.5.16 --- CHANGELOG.md | 8 ++++++++ docs/CHANGELOG.md | 8 ++++++++ docs/package.json | 6 +++--- lerna.json | 2 +- packages/api/CHANGELOG.md | 8 ++++++++ packages/api/package.json | 2 +- packages/gatsby-plugin-cms/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-cms/package.json | 4 ++-- packages/gatsby-plugin-nginx/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-nginx/package.json | 2 +- packages/gatsby-plugin-onesignal/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-onesignal/package.json | 2 +- packages/gatsby-plugin-thumbor/CHANGELOG.md | 8 ++++++++ packages/gatsby-plugin-thumbor/package.json | 2 +- packages/gatsby-source-store/CHANGELOG.md | 8 ++++++++ packages/gatsby-source-store/package.json | 2 +- packages/gatsby-source-vtex/CHANGELOG.md | 8 ++++++++ packages/gatsby-source-vtex/package.json | 2 +- packages/graphql-utils/CHANGELOG.md | 8 ++++++++ packages/graphql-utils/package.json | 2 +- packages/lighthouse-config/CHANGELOG.md | 8 ++++++++ packages/lighthouse-config/package.json | 2 +- packages/renovate-config/CHANGELOG.md | 8 ++++++++ packages/renovate-config/package.json | 2 +- packages/sdk/CHANGELOG.md | 8 ++++++++ packages/sdk/package.json | 2 +- packages/ui/CHANGELOG.md | 8 ++++++++ packages/ui/package.json | 4 ++-- themes/theme-b2c-tailwind/CHANGELOG.md | 8 ++++++++ themes/theme-b2c-tailwind/package.json | 2 +- 30 files changed, 139 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a413c93aa6..3864dbc1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package faststore + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package faststore diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ea2cded3cb..11928f8598 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package docs + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package docs diff --git a/docs/package.json b/docs/package.json index e983313575..95c634fce8 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.5.15", + "version": "1.5.16", "private": true, "scripts": { "docusaurus": "docusaurus", @@ -18,11 +18,11 @@ "@docusaurus/preset-classic": "^2.0.0-beta.13", "@docusaurus/remark-plugin-npm2yarn": "^2.0.0-beta.13", "@docusaurus/theme-live-codeblock": "^2.0.0-beta.13", - "@faststore/ui": "^1.5.15", + "@faststore/ui": "^1.5.16", "@fortawesome/fontawesome-free": "^5.15.4", "@mdx-js/react": "^1.6.21", "@svgr/webpack": "^5.5.0", - "@vtex/theme-b2c-tailwind": "^1.5.15", + "@vtex/theme-b2c-tailwind": "^1.5.16", "babel-loader": "^8.2.2", "clsx": "^1.1.1", "docusaurus-plugin-image-zoom": "^0.0.2", diff --git a/lerna.json b/lerna.json index e67670c4e4..814fb65836 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "1.5.15", + "version": "1.5.16", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 038c5e0d60..bb23e08f82 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @faststore/api + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @faststore/api diff --git a/packages/api/package.json b/packages/api/package.json index 0356471356..4822c8c53a 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/api", - "version": "1.5.15", + "version": "1.5.16", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/gatsby-plugin-cms/CHANGELOG.md b/packages/gatsby-plugin-cms/CHANGELOG.md index f61d8266e7..c61cd3919c 100644 --- a/packages/gatsby-plugin-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-cms/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-cms + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/gatsby-plugin-cms diff --git a/packages/gatsby-plugin-cms/package.json b/packages/gatsby-plugin-cms/package.json index 7830398fd0..779f5cea8e 100644 --- a/packages/gatsby-plugin-cms/package.json +++ b/packages/gatsby-plugin-cms/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-cms", - "version": "1.5.15", + "version": "1.5.16", "description": "Gatsby plugin for building pages with VTEX CMS.", "repository": { "type": "git", @@ -34,7 +34,7 @@ "dependencies": { "@babel/preset-typescript": "^7.12.7", "@babel/register": "^7.12.1", - "@vtex/gatsby-source-vtex": "^1.5.15", + "@vtex/gatsby-source-vtex": "^1.5.16", "camelcase": "^6.2.0", "chokidar": "^3.5.0", "fetch-retry": "^4.1.1", diff --git a/packages/gatsby-plugin-nginx/CHANGELOG.md b/packages/gatsby-plugin-nginx/CHANGELOG.md index bf49e305a3..d9f7a63785 100644 --- a/packages/gatsby-plugin-nginx/CHANGELOG.md +++ b/packages/gatsby-plugin-nginx/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-nginx + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/gatsby-plugin-nginx diff --git a/packages/gatsby-plugin-nginx/package.json b/packages/gatsby-plugin-nginx/package.json index 12d425cea1..0dbb74e740 100644 --- a/packages/gatsby-plugin-nginx/package.json +++ b/packages/gatsby-plugin-nginx/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-nginx", - "version": "1.5.15", + "version": "1.5.16", "description": "Gatsby plugin to generate a nginx configuration template.", "license": "MIT", "repository": { diff --git a/packages/gatsby-plugin-onesignal/CHANGELOG.md b/packages/gatsby-plugin-onesignal/CHANGELOG.md index a25a9243c5..d46273d008 100644 --- a/packages/gatsby-plugin-onesignal/CHANGELOG.md +++ b/packages/gatsby-plugin-onesignal/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-onesignal + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/gatsby-plugin-onesignal diff --git a/packages/gatsby-plugin-onesignal/package.json b/packages/gatsby-plugin-onesignal/package.json index d8dc679160..e8923b16c1 100644 --- a/packages/gatsby-plugin-onesignal/package.json +++ b/packages/gatsby-plugin-onesignal/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-onesignal", - "version": "1.5.15", + "version": "1.5.16", "description": "Gatsby plugin for a simple OneSignal use case.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-thumbor/CHANGELOG.md b/packages/gatsby-plugin-thumbor/CHANGELOG.md index 2c6001f705..4d40a1f6f8 100644 --- a/packages/gatsby-plugin-thumbor/CHANGELOG.md +++ b/packages/gatsby-plugin-thumbor/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-plugin-thumbor + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/gatsby-plugin-thumbor diff --git a/packages/gatsby-plugin-thumbor/package.json b/packages/gatsby-plugin-thumbor/package.json index 676f53710b..7c09ae33f2 100644 --- a/packages/gatsby-plugin-thumbor/package.json +++ b/packages/gatsby-plugin-thumbor/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-plugin-thumbor", - "version": "1.5.15", + "version": "1.5.16", "author": "Tiago Gimenes", "license": "MIT", "repository": { diff --git a/packages/gatsby-source-store/CHANGELOG.md b/packages/gatsby-source-store/CHANGELOG.md index f45043c88e..64795e9216 100644 --- a/packages/gatsby-source-store/CHANGELOG.md +++ b/packages/gatsby-source-store/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-source-store + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/gatsby-source-store diff --git a/packages/gatsby-source-store/package.json b/packages/gatsby-source-store/package.json index 76c8112590..a50a8a85ac 100644 --- a/packages/gatsby-source-store/package.json +++ b/packages/gatsby-source-store/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-store", - "version": "1.5.15", + "version": "1.5.16", "description": "Gatsby source plugin for building websites using a FastStore compatible server", "author": "Store Framework", "license": "MIT", diff --git a/packages/gatsby-source-vtex/CHANGELOG.md b/packages/gatsby-source-vtex/CHANGELOG.md index c948e20637..425ba29d4b 100644 --- a/packages/gatsby-source-vtex/CHANGELOG.md +++ b/packages/gatsby-source-vtex/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/gatsby-source-vtex + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/gatsby-source-vtex diff --git a/packages/gatsby-source-vtex/package.json b/packages/gatsby-source-vtex/package.json index 5dd72d5428..343cd4dc79 100644 --- a/packages/gatsby-source-vtex/package.json +++ b/packages/gatsby-source-vtex/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/gatsby-source-vtex", - "version": "1.5.15", + "version": "1.5.16", "description": "Gatsby source plugin for building websites using VTEX as a data source.", "author": "Store Framework", "license": "MIT", diff --git a/packages/graphql-utils/CHANGELOG.md b/packages/graphql-utils/CHANGELOG.md index a5248319b0..fc7aa3c148 100644 --- a/packages/graphql-utils/CHANGELOG.md +++ b/packages/graphql-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/graphql-utils + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/graphql-utils diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json index 849cfdc97d..f26a333e32 100644 --- a/packages/graphql-utils/package.json +++ b/packages/graphql-utils/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/graphql-utils", - "version": "1.5.15", + "version": "1.5.16", "description": "GraphQL utilities", "repository": { "type": "git", diff --git a/packages/lighthouse-config/CHANGELOG.md b/packages/lighthouse-config/CHANGELOG.md index a6ac46e2b4..54bcbbffef 100644 --- a/packages/lighthouse-config/CHANGELOG.md +++ b/packages/lighthouse-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/lighthouse-config + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/lighthouse-config diff --git a/packages/lighthouse-config/package.json b/packages/lighthouse-config/package.json index 8048135541..4dfd186334 100644 --- a/packages/lighthouse-config/package.json +++ b/packages/lighthouse-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/lighthouse-config", - "version": "1.5.15", + "version": "1.5.16", "author": "Emerson Laurentino", "license": "MIT", "repository": { diff --git a/packages/renovate-config/CHANGELOG.md b/packages/renovate-config/CHANGELOG.md index a9137d186a..2d2d1b73bd 100644 --- a/packages/renovate-config/CHANGELOG.md +++ b/packages/renovate-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/renovate-config + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/renovate-config diff --git a/packages/renovate-config/package.json b/packages/renovate-config/package.json index a663642b14..8a175d0a0d 100644 --- a/packages/renovate-config/package.json +++ b/packages/renovate-config/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/renovate-config", - "version": "1.5.15", + "version": "1.5.16", "description": "A plugin that holds the Renovate preset config for updating VTEX dependencies in our stores", "author": "VTEX", "license": "MIT", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 363295421f..10761be522 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @faststore/sdk + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @faststore/sdk diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 744cc424ad..4bde27bd7a 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/sdk", - "version": "1.5.15", + "version": "1.5.16", "description": "Hooks for creating your next component library", "license": "MIT", "repository": { diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 0bf3b060be..1ad4a55932 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @faststore/ui + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @faststore/ui diff --git a/packages/ui/package.json b/packages/ui/package.json index 413740be19..7bde14dd1b 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/ui", - "version": "1.5.15", + "version": "1.5.16", "description": "A lightweight, framework agnostic component library for React", "author": "emersonlaurentino", "license": "MIT", @@ -76,7 +76,7 @@ "@types/jest-axe": "^3.5.3", "@types/tabbable": "^3.1.1", "@types/testing-library__jest-dom": "^5.9.5", - "@vtex/theme-b2c-tailwind": "^1.5.15", + "@vtex/theme-b2c-tailwind": "^1.5.16", "@vtex/tsconfig": "^0.5.0", "chalk": "^5.0.0", "jest-axe": "^5.0.1", diff --git a/themes/theme-b2c-tailwind/CHANGELOG.md b/themes/theme-b2c-tailwind/CHANGELOG.md index 23fd1ec506..c3a181b386 100644 --- a/themes/theme-b2c-tailwind/CHANGELOG.md +++ b/themes/theme-b2c-tailwind/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 1.5.16 (2022-02-22) + +**Note:** Version bump only for package @vtex/theme-b2c-tailwind + + + + + ## 1.5.15 (2022-02-22) **Note:** Version bump only for package @vtex/theme-b2c-tailwind diff --git a/themes/theme-b2c-tailwind/package.json b/themes/theme-b2c-tailwind/package.json index 5c38c17818..ed75a70da8 100644 --- a/themes/theme-b2c-tailwind/package.json +++ b/themes/theme-b2c-tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@vtex/theme-b2c-tailwind", - "version": "1.5.15", + "version": "1.5.16", "description": "Basic theme for our Store UI components.", "author": "VTEX ", "license": "MIT",