Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #2584

Merged
merged 1 commit into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/bright-hornets-enjoy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-boats-remember.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/olive-icons-tie.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/rotten-radios-grin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-ways-peel.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.2.1

### Patch Changes

- Updated dependencies [[`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98), [`2f58b2d6`](https://github.com/commercetools/merchant-center-application-kit/commit/2f58b2d619fbc9d30e7d89604aba97f0c0ac9325)]:
- @commercetools-frontend/mc-dev-authentication@21.5.0
- @commercetools-frontend/application-components@21.5.0
- @commercetools-frontend/application-shell@21.5.0
- @commercetools-frontend/mc-scripts@21.5.0

## 19.2.0

### Minor 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.2.0",
"version": "19.2.1",
"description": "A starter example for the bare minimum setup to develop a Merchant Center Application",
"private": true,
"scripts": {
Expand All @@ -21,16 +21,16 @@
"dependencies": {
"@apollo/client": "3.5.10",
"@commercetools-frontend/actions-global": "21.3.4",
"@commercetools-frontend/application-components": "21.4.0",
"@commercetools-frontend/application-shell": "21.4.0",
"@commercetools-frontend/application-components": "21.5.0",
"@commercetools-frontend/application-shell": "21.5.0",
"@commercetools-frontend/application-shell-connectors": "21.3.4",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/eslint-config-mc-app": "21.3.4",
"@commercetools-frontend/i18n": "21.4.0",
"@commercetools-frontend/jest-preset-mc-app": "21.3.4",
"@commercetools-frontend/mc-dev-authentication": "21.4.0",
"@commercetools-frontend/mc-scripts": "21.4.0",
"@commercetools-frontend/mc-dev-authentication": "21.5.0",
"@commercetools-frontend/mc-scripts": "21.5.0",
"@commercetools-frontend/permissions": "21.3.4",
"@commercetools-frontend/sdk": "21.3.4",
"@commercetools-test-data/commons": "3.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/application-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @commercetools-frontend/application-components

## 21.5.0

### Patch Changes

- [#2586](https://github.com/commercetools/merchant-center-application-kit/pull/2586) [`2f58b2d6`](https://github.com/commercetools/merchant-center-application-kit/commit/2f58b2d619fbc9d30e7d89604aba97f0c0ac9325) Thanks [@emmenko](https://github.com/emmenko)! - Fix type declarations for `<PortalsContainer>` as `defaultProps` and `forwardRef` do not work well together.

## 21.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.4.0",
"version": "21.5.0",
"description": "Generic components for building Merchant Center applications",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down
29 changes: 29 additions & 0 deletions packages/application-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @commercetools-frontend/application-config

## 21.5.0

### Patch Changes

- [#2567](https://github.com/commercetools/merchant-center-application-kit/pull/2567) [`3094da2f`](https://github.com/commercetools/merchant-center-application-kit/commit/3094da2fbe03fd8d5731836fa822d609dfccc84e) Thanks [@Rhotimee](https://github.com/Rhotimee)! - Enforce uniqueness for `uriPath` of the submenu links.

* [#2578](https://github.com/commercetools/merchant-center-application-kit/pull/2578) [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98) Thanks [@emmenko](https://github.com/emmenko)! - Allow to extend the environment types of the `ApplicationRuntimeConfig`.
This is useful if you want to have the `additionalEnv` properties typed.

For example, given the following config:

```json
{
"additionalEnv": {
"trackingSentry": "https://000@sentry.io/000"
}
}
```

You can extend the type as following:

```ts
import type { ApplicationRuntimeConfig } from '@commercetools-frontend/application-config';

type TMyApplicationRuntimeConfig = ApplicationRuntimeConfig<{
trackingSentry: string;
}>;
```

## 21.3.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/application-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/application-config",
"version": "21.3.4",
"version": "21.5.0",
"description": "Configuration utilities for building Custom Applications",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions packages/application-shell/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @commercetools-frontend/application-shell

## 21.5.0

### Patch Changes

- Updated dependencies [[`3094da2f`](https://github.com/commercetools/merchant-center-application-kit/commit/3094da2fbe03fd8d5731836fa822d609dfccc84e), [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98), [`2f58b2d6`](https://github.com/commercetools/merchant-center-application-kit/commit/2f58b2d619fbc9d30e7d89604aba97f0c0ac9325)]:
- @commercetools-frontend/application-config@21.5.0
- @commercetools-frontend/application-components@21.5.0

## 21.4.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 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.4.0",
"version": "21.5.0",
"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,8 +34,8 @@
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/actions-global": "21.3.4",
"@commercetools-frontend/application-components": "21.4.0",
"@commercetools-frontend/application-config": "21.3.4",
"@commercetools-frontend/application-components": "21.5.0",
"@commercetools-frontend/application-config": "21.5.0",
"@commercetools-frontend/application-shell-connectors": "21.3.4",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/browser-history": "21.3.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/cypress/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @commercetools-frontend/cypress

## 21.5.0

### Patch Changes

- Updated dependencies [[`3094da2f`](https://github.com/commercetools/merchant-center-application-kit/commit/3094da2fbe03fd8d5731836fa822d609dfccc84e), [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98)]:
- @commercetools-frontend/application-config@21.5.0
- @commercetools-frontend/application-shell@21.5.0

## 21.4.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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.4.0",
"version": "21.5.0",
"description": "Cypress commands and utilities for Custom Applications",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -37,8 +37,8 @@
"dependencies": {
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/application-config": "21.3.4",
"@commercetools-frontend/application-shell": "21.4.0",
"@commercetools-frontend/application-config": "21.5.0",
"@commercetools-frontend/application-shell": "21.5.0",
"@manypkg/get-packages": "1.1.3",
"uuid": "8.3.2"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/mc-dev-authentication/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @commercetools-frontend/mc-dev-authentication

## 21.5.0

### Minor Changes

- [#2578](https://github.com/commercetools/merchant-center-application-kit/pull/2578) [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98) Thanks [@emmenko](https://github.com/emmenko)! - Migrate package to TypeScript.

To note that the package exports changed to:

- `createMcDevAuthenticationMiddleware`
- `transformerLocal`

> This package is only meant to be used internally and therefore we don't consider this a breaking change.

## 21.4.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/mc-dev-authentication/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/mc-dev-authentication",
"version": "21.4.0",
"version": "21.5.0",
"description": "Authentication views when running webpack-dev-server in development mode",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"@babel/runtime-corejs3": "^7.17.9"
},
"devDependencies": {
"@commercetools-frontend/application-config": "21.3.4",
"@commercetools-frontend/application-config": "21.5.0",
"@tsconfig/node14": "^1.0.1",
"express": "4.17.3"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/mc-html-template/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @commercetools-frontend/mc-html-template

## 21.5.0

### Patch Changes

- [#2579](https://github.com/commercetools/merchant-center-application-kit/pull/2579) [`b38854ec`](https://github.com/commercetools/merchant-center-application-kit/commit/b38854ec1d65ba0afbf687bd1a38ca99579cc922) Thanks [@emmenko](https://github.com/emmenko)! - Migrate package to TypeScript

- Updated dependencies [[`3094da2f`](https://github.com/commercetools/merchant-center-application-kit/commit/3094da2fbe03fd8d5731836fa822d609dfccc84e), [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98)]:
- @commercetools-frontend/application-config@21.5.0

## 21.4.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/mc-html-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/mc-html-template",
"version": "21.4.0",
"version": "21.5.0",
"description": "Everything related to render the index.html for a MC application",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"dependencies": {
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/application-config": "21.3.4",
"@commercetools-frontend/application-config": "21.5.0",
"@commercetools-frontend/constants": "21.3.4",
"serialize-javascript": "6.0.0",
"uglify-js": "3.15.4",
Expand Down
9 changes: 9 additions & 0 deletions packages/mc-scripts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @commercetools-frontend/mc-scripts

## 21.5.0

### Patch Changes

- Updated dependencies [[`3094da2f`](https://github.com/commercetools/merchant-center-application-kit/commit/3094da2fbe03fd8d5731836fa822d609dfccc84e), [`b38854ec`](https://github.com/commercetools/merchant-center-application-kit/commit/b38854ec1d65ba0afbf687bd1a38ca99579cc922), [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98), [`3180de7f`](https://github.com/commercetools/merchant-center-application-kit/commit/3180de7fc6a4da6b1925311b9e38bc8aad897e98)]:
- @commercetools-frontend/application-config@21.5.0
- @commercetools-frontend/mc-html-template@21.5.0
- @commercetools-frontend/mc-dev-authentication@21.5.0

## 21.4.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/mc-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commercetools-frontend/mc-scripts",
"version": "21.4.0",
"version": "21.5.0",
"description": "Configuration and scripts for developing a MC application",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
Expand Down Expand Up @@ -29,12 +29,12 @@
"@babel/core": "^7.17.9",
"@babel/runtime": "^7.17.9",
"@babel/runtime-corejs3": "^7.17.9",
"@commercetools-frontend/application-config": "21.3.4",
"@commercetools-frontend/application-config": "21.5.0",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/babel-preset-mc-app": "21.3.4",
"@commercetools-frontend/constants": "21.3.4",
"@commercetools-frontend/mc-dev-authentication": "21.4.0",
"@commercetools-frontend/mc-html-template": "21.4.0",
"@commercetools-frontend/mc-dev-authentication": "21.5.0",
"@commercetools-frontend/mc-html-template": "21.5.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.4",
"@rollup/plugin-graphql": "1.1.0",
"@svgr/webpack": "6.2.1",
Expand Down
8 changes: 8 additions & 0 deletions playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# playground

## 19.2.1

### Patch Changes

- Updated dependencies [[`2f58b2d6`](https://github.com/commercetools/merchant-center-application-kit/commit/2f58b2d619fbc9d30e7d89604aba97f0c0ac9325)]:
- @commercetools-frontend/application-components@21.5.0
- @commercetools-frontend/application-shell@21.5.0

## 19.2.0

### Minor 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.2.0",
"version": "19.2.1",
"description": "A playground application to get started developing Merchant Center Applications",
"private": true,
"scripts": {
Expand All @@ -15,8 +15,8 @@
"dependencies": {
"@commercetools-docs/ui-kit": "18.6.0",
"@commercetools-frontend/actions-global": "21.3.4",
"@commercetools-frontend/application-components": "21.4.0",
"@commercetools-frontend/application-shell": "21.4.0",
"@commercetools-frontend/application-components": "21.5.0",
"@commercetools-frontend/application-shell": "21.5.0",
"@commercetools-frontend/application-shell-connectors": "21.3.4",
"@commercetools-frontend/assets": "21.0.0",
"@commercetools-frontend/constants": "21.3.4",
Expand Down Expand Up @@ -48,8 +48,8 @@
},
"devDependencies": {
"@commercetools-backend/express": "21.3.4",
"@commercetools-frontend/mc-dev-authentication": "21.4.0",
"@commercetools-frontend/mc-scripts": "21.4.0",
"@commercetools-frontend/mc-dev-authentication": "21.5.0",
"@commercetools-frontend/mc-scripts": "21.5.0",
"@formatjs/cli": "4.8.3",
"@vercel/node": "^1.14.1"
}
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.3.1

### Patch Changes

- Updated dependencies [[`2f58b2d6`](https://github.com/commercetools/merchant-center-application-kit/commit/2f58b2d619fbc9d30e7d89604aba97f0c0ac9325)]:
- @commercetools-frontend/application-components@21.5.0

## 19.3.0

### Minor Changes
Expand Down
Loading