Skip to content

Commit

Permalink
ci(changesets): version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 15, 2022
1 parent 78de0ec commit 0be84c6
Show file tree
Hide file tree
Showing 20 changed files with 141 additions and 76 deletions.
31 changes: 0 additions & 31 deletions .changeset/angry-days-swim.md

This file was deleted.

10 changes: 10 additions & 0 deletions application-templates/starter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# merchant-center-application-template-starter

## 19.3.2

### Patch Changes

- Updated dependencies [[`78de0ec6`](https://github.com/commercetools/merchant-center-application-kit/commit/78de0ec6b569b7daa23edf4fd21cae0842857ca8)]:
- @commercetools-frontend/application-shell-connectors@21.7.1
- @commercetools-frontend/application-components@21.7.1
- @commercetools-frontend/application-shell@21.7.1
- @commercetools-frontend/permissions@21.7.1

## 19.3.1

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions application-templates/starter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "merchant-center-application-template-starter",
"version": "19.3.1",
"version": "19.3.2",
"description": "A starter example for the bare minimum setup to develop a Merchant Center Application",
"private": true,
"scripts": {
Expand All @@ -21,17 +21,17 @@
"dependencies": {
"@apollo/client": "3.6.2",
"@commercetools-frontend/actions-global": "21.6.0",
"@commercetools-frontend/application-components": "21.7.0",
"@commercetools-frontend/application-shell": "21.7.0",
"@commercetools-frontend/application-shell-connectors": "21.6.0",
"@commercetools-frontend/application-components": "21.7.1",
"@commercetools-frontend/application-shell": "21.7.1",
"@commercetools-frontend/application-shell-connectors": "21.7.1",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/eslint-config-mc-app": "21.6.0",
"@commercetools-frontend/i18n": "21.6.0",
"@commercetools-frontend/jest-preset-mc-app": "21.7.0",
"@commercetools-frontend/mc-dev-authentication": "21.7.0",
"@commercetools-frontend/mc-scripts": "21.7.0",
"@commercetools-frontend/permissions": "21.6.0",
"@commercetools-frontend/permissions": "21.7.1",
"@commercetools-frontend/sdk": "21.6.0",
"@commercetools-test-data/commons": "3.0.2",
"@commercetools-test-data/core": "3.0.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/application-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @commercetools-frontend/application-components

## 21.7.1

### Patch Changes

- Updated dependencies [[`78de0ec6`](https://github.com/commercetools/merchant-center-application-kit/commit/78de0ec6b569b7daa23edf4fd21cae0842857ca8)]:
- @commercetools-frontend/application-shell-connectors@21.7.1

## 21.7.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/application-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/application-components",
"version": "21.7.0",
"version": "21.7.1",
"description": "Generic components for building Merchant Center applications",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -29,7 +29,7 @@
"dependencies": {
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/application-shell-connectors": "21.6.0",
"@commercetools-frontend/application-shell-connectors": "21.7.1",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/i18n": "21.6.0",
Expand Down
32 changes: 32 additions & 0 deletions packages/application-shell-connectors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @commercetools-frontend/application-shell-connectors

## 21.7.1

### Patch Changes

- [#2639](https://github.com/commercetools/merchant-center-application-kit/pull/2639) [`78de0ec6`](https://github.com/commercetools/merchant-center-application-kit/commit/78de0ec6b569b7daa23edf4fd21cae0842857ca8) Thanks [@ddouglasz](https://github.com/ddouglasz)! - There is a new React hook which you can use to access the Project Images rewrite configuration [see documentation](https://docs.commercetools.com/custom-applications/api-reference/commercetools-frontend-application-shell-connectors#project-image-settings).

You would use it like this:

```js
function MyComponent() {
const { isLoading, imageRegex } = useProjectExtensionImageRegex();

if (isLoading) return <LoadingSpinner />;

return (
<div>
<h1>Project images regex: {imageRegex}</h1>
</div>
);
}

function MyApp() {
return (
<ProjectExtensionProviderForImageRegex>
<MyComponent />
</ProjectExtensionProviderForImageRegex>
);
}
```

Both `GetProjectExtensionImageRegex` component and `withProjectExtensionImageRegex` still exists for backwards compatibility but have been marked as deprecated.

## 21.6.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/application-shell-connectors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/application-shell-connectors",
"version": "21.6.0",
"version": "21.7.1",
"description": "Contains complementary tools for @commercetools-frontend/application-shell",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions packages/application-shell/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @commercetools-frontend/application-shell

## 21.7.1

### Patch Changes

- Updated dependencies [[`78de0ec6`](https://github.com/commercetools/merchant-center-application-kit/commit/78de0ec6b569b7daa23edf4fd21cae0842857ca8)]:
- @commercetools-frontend/application-shell-connectors@21.7.1
- @commercetools-frontend/application-components@21.7.1
- @commercetools-frontend/permissions@21.7.1

## 21.7.0

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/application-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/application-shell",
"version": "21.7.0",
"version": "21.7.1",
"description": "React component to bootstrap the general MC application logic",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -34,16 +34,16 @@
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/actions-global": "21.6.0",
"@commercetools-frontend/application-components": "21.7.0",
"@commercetools-frontend/application-components": "21.7.1",
"@commercetools-frontend/application-config": "21.7.0",
"@commercetools-frontend/application-shell-connectors": "21.6.0",
"@commercetools-frontend/application-shell-connectors": "21.7.1",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/browser-history": "21.3.4",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/i18n": "21.6.0",
"@commercetools-frontend/l10n": "21.6.0",
"@commercetools-frontend/notifications": "21.6.0",
"@commercetools-frontend/permissions": "21.6.0",
"@commercetools-frontend/permissions": "21.7.1",
"@commercetools-frontend/react-notifications": "21.6.0",
"@commercetools-frontend/sdk": "21.6.0",
"@commercetools-frontend/sentry": "21.6.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/cypress/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @commercetools-frontend/cypress

## 21.7.1

### Patch Changes

- Updated dependencies []:
- @commercetools-frontend/application-shell@21.7.1

## 21.7.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cypress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/cypress",
"version": "21.7.0",
"version": "21.7.1",
"description": "Cypress commands and utilities for Custom Applications",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -38,7 +38,7 @@
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/application-config": "21.7.0",
"@commercetools-frontend/application-shell": "21.7.0",
"@commercetools-frontend/application-shell": "21.7.1",
"@manypkg/get-packages": "1.1.3",
"uuid": "8.3.2"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/permissions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @commercetools-frontend/permissions

## 21.7.1

### Patch Changes

- Updated dependencies [[`78de0ec6`](https://github.com/commercetools/merchant-center-application-kit/commit/78de0ec6b569b7daa23edf4fd21cae0842857ca8)]:
- @commercetools-frontend/application-shell-connectors@21.7.1

## 21.6.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/permissions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/permissions",
"version": "21.6.0",
"version": "21.7.1",
"description": "React components to declaratively handle MC permissions",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand All @@ -20,7 +20,7 @@
"dependencies": {
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/application-shell-connectors": "21.6.0",
"@commercetools-frontend/application-shell-connectors": "21.7.1",
"@commercetools-frontend/sentry": "21.6.0",
"@emotion/react": "11.9.0",
"@types/lodash": "^4.14.181",
Expand Down
10 changes: 10 additions & 0 deletions playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# playground

## 19.3.2

### Patch Changes

- Updated dependencies [[`78de0ec6`](https://github.com/commercetools/merchant-center-application-kit/commit/78de0ec6b569b7daa23edf4fd21cae0842857ca8)]:
- @commercetools-frontend/application-shell-connectors@21.7.1
- @commercetools-frontend/application-components@21.7.1
- @commercetools-frontend/application-shell@21.7.1
- @commercetools-frontend/permissions@21.7.1

## 19.3.1

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playground",
"version": "19.3.1",
"version": "19.3.2",
"description": "A playground application to get started developing Merchant Center Applications",
"private": true,
"scripts": {
Expand All @@ -15,14 +15,14 @@
"dependencies": {
"@commercetools-docs/ui-kit": "18.6.0",
"@commercetools-frontend/actions-global": "21.6.0",
"@commercetools-frontend/application-components": "21.7.0",
"@commercetools-frontend/application-shell": "21.7.0",
"@commercetools-frontend/application-shell-connectors": "21.6.0",
"@commercetools-frontend/application-components": "21.7.1",
"@commercetools-frontend/application-shell": "21.7.1",
"@commercetools-frontend/application-shell-connectors": "21.7.1",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/i18n": "21.6.0",
"@commercetools-frontend/l10n": "21.6.0",
"@commercetools-frontend/permissions": "21.6.0",
"@commercetools-frontend/permissions": "21.7.1",
"@commercetools-frontend/sdk": "21.6.0",
"@commercetools-uikit/checkbox-input": "^15.0.0",
"@commercetools-uikit/constraints": "^15.0.0",
Expand Down
7 changes: 7 additions & 0 deletions visual-testing-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @commercetools-local/visual-testing-app

## 19.4.2

### Patch Changes

- Updated dependencies []:
- @commercetools-frontend/application-components@21.7.1

## 19.4.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions visual-testing-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-local/visual-testing-app",
"version": "19.4.1",
"version": "19.4.2",
"description": "An app to facilitate visual testing",
"private": true,
"scripts": {
Expand All @@ -9,7 +9,7 @@
"preview": "vite preview --port 3000"
},
"dependencies": {
"@commercetools-frontend/application-components": "21.7.0",
"@commercetools-frontend/application-components": "21.7.1",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/react-notifications": "21.6.0",
Expand Down
7 changes: 7 additions & 0 deletions website-components-playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @commercetools-website/components-playground

## 17.5.2

### Patch Changes

- Updated dependencies []:
- @commercetools-frontend/application-components@21.7.1

## 17.5.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions website-components-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-website/components-playground",
"version": "17.5.1",
"version": "17.5.2",
"private": true,
"scripts": {
"clean": "gatsby clean",
Expand All @@ -10,7 +10,7 @@
"serve": "gatsby serve"
},
"dependencies": {
"@commercetools-frontend/application-components": "21.7.0",
"@commercetools-frontend/application-components": "21.7.1",
"@commercetools-frontend/i18n": "21.6.0",
"@commercetools-uikit/design-system": "^15.0.0",
"@commercetools-uikit/icon-button": "^15.0.0",
Expand Down
Loading

0 comments on commit 0be84c6

Please sign in to comment.