Skip to content

Commit

Permalink
chore: prepare release (#5489)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
build-travis-ci and github-actions[bot] authored Dec 31, 2024
1 parent 816bb91 commit 514b8c7
Show file tree
Hide file tree
Showing 17 changed files with 150 additions and 56 deletions.
35 changes: 0 additions & 35 deletions .changeset/breezy-ways-care.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/cmf-cqrs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @talend/react-cmf-cqrs

## 11.0.1

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf@11.0.0

## 11.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cmf-cqrs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"homepage": "https://github.com/Talend/ui/cmf-cqrs#readme",
"dependencies": {
"@talend/react-cmf": "^10.0.1",
"@talend/react-cmf": "^11.0.0",
"@talend/utils": "^3.2.3",
"immutable": "^3.8.2",
"redux-saga": "^1.3.0"
Expand Down Expand Up @@ -60,5 +60,5 @@
"publishConfig": {
"access": "public"
},
"version": "11.0.0"
"version": "11.0.1"
}
44 changes: 44 additions & 0 deletions packages/cmf-router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# Changelog

## 8.0.0

### Major Changes

- 816bb91: BREAKING CHANGE: Upgraded path-to-regexp from 3.x to 8.x

This upgrade was necessary to resolve security vulnerabilities. The new version introduces two breaking changes that require updates to your application:

1. Optional Path Parameter Syntax Change

- Old syntax: `/resources/:id?`
- New syntax: `/resources{/id}`

This change is required because in path-to-regexp 8.x, the `?` character is reserved for query parameters and will throw a parsing error when used at the end of a path.

2. Root Path Matching Behavior Change

- In v3.x, root path `/` would match any path starting with `/`
- In v8.x, root path `/` only matches exactly `/`
- To match both root and child paths, use the wildcard pattern `/{*path}`

Example migration:

```javascript
// Before
const routes = {
'/': rootSaga,
'/resources/:id?': resourceSaga
};

// After
const routes = {
'/{*path}': rootSaga, // if you want to match all routes
'/resources{/id}': resourceSaga
};
```

For more details about path matching and troubleshooting, see [path-to-regexp documentation](https://github.com/pillarjs/path-to-regexp#errors).

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf@11.0.0

## 7.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cmf-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@talend/react-cmf-router",
"version": "7.1.1",
"version": "8.0.0",
"description": "",
"main": "lib/index.js",
"module": "./lib-esm/index.js",
Expand All @@ -25,7 +25,7 @@
"lint": "talend-scripts lint"
},
"dependencies": {
"@talend/react-cmf": "^10.1.1",
"@talend/react-cmf": "^11.0.0",
"connected-react-router": "^6.9.3",
"history": "^5.3.0",
"lodash": "^4.17.21",
Expand Down
39 changes: 39 additions & 0 deletions packages/cmf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# @talend/react-cmf

## 11.0.0

### Major Changes

- 816bb91: BREAKING CHANGE: Upgraded path-to-regexp from 3.x to 8.x

This upgrade was necessary to resolve security vulnerabilities. The new version introduces two breaking changes that require updates to your application:

1. Optional Path Parameter Syntax Change

- Old syntax: `/resources/:id?`
- New syntax: `/resources{/id}`

This change is required because in path-to-regexp 8.x, the `?` character is reserved for query parameters and will throw a parsing error when used at the end of a path.

2. Root Path Matching Behavior Change

- In v3.x, root path `/` would match any path starting with `/`
- In v8.x, root path `/` only matches exactly `/`
- To match both root and child paths, use the wildcard pattern `/{*path}`

Example migration:

```javascript
// Before
const routes = {
'/': rootSaga,
'/resources/:id?': resourceSaga
};

// After
const routes = {
'/{*path}': rootSaga, // if you want to match all routes
'/resources{/id}': resourceSaga
};
```

For more details about path matching and troubleshooting, see [path-to-regexp documentation](https://github.com/pillarjs/path-to-regexp#errors).

## 10.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cmf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@
"publishConfig": {
"access": "public"
},
"version": "10.1.1"
"version": "11.0.0"
}
7 changes: 7 additions & 0 deletions packages/containers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @talend/react-containers

## 11.3.2

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf@11.0.0

## 11.3.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/containers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"dependencies": {
"@talend/design-system": "^11.4.0",
"@talend/react-cmf": "^10.1.1",
"@talend/react-cmf": "^11.0.0",
"@talend/react-components": "^17.3.1",
"@talend/react-forms": "^15.1.0",
"@talend/utils": "^3.2.3",
Expand All @@ -66,7 +66,7 @@
"@talend/locales-tui-containers": "^9.1.3",
"@talend/locales-tui-forms": "^15.2.0",
"@talend/locales-design-system": "^7.15.1",
"@talend/react-storybook-cmf": "^10.0.0",
"@talend/react-storybook-cmf": "^11.0.0",
"@talend/eslint-config": "^13.2.1",
"@talend/eslint-plugin": "^1.3.1",
"@talend/scripts-core": "^16.5.1",
Expand Down Expand Up @@ -95,5 +95,5 @@
"publishConfig": {
"access": "public"
},
"version": "11.3.1"
"version": "11.3.2"
}
9 changes: 9 additions & 0 deletions packages/playground-vite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @talend/ui-playground

## 0.1.3

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf-router@8.0.0
- @talend/react-cmf@11.0.0
- @talend/react-containers@11.3.2

## 0.1.2

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/playground-vite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@talend/ui-playground-vite",
"version": "0.1.2",
"version": "0.1.3",
"description": "Showcase Talend/UI",
"private": true,
"type": "module",
Expand Down Expand Up @@ -55,10 +55,10 @@
"@talend/locales-tui-containers": "^9.1.3",
"@talend/locales-tui-faceted-search": "^11.3.0",
"@talend/locales-tui-forms": "^15.2.0",
"@talend/react-cmf": "^10.1.0",
"@talend/react-cmf-router": "^7.1.0",
"@talend/react-cmf": "^11.0.0",
"@talend/react-cmf-router": "^8.0.0",
"@talend/react-components": "^17.3.1",
"@talend/react-containers": "^11.3.0",
"@talend/react-containers": "^11.3.2",
"@talend/react-dataviz": "^7.0.1",
"@talend/react-faceted-search": "^21.0.0",
"@talend/react-forms": "^15.1.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @talend/ui-playground

## 2.5.2

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf-router@8.0.0
- @talend/react-cmf@11.0.0
- @talend/react-containers@11.3.2

## 2.5.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@talend/ui-playground",
"version": "2.5.1",
"version": "2.5.2",
"description": "Showcase Talend/UI",
"private": true,
"main": "app/index.js",
Expand Down Expand Up @@ -46,10 +46,10 @@
"@talend/locales-tui-components": "^16.0.1",
"@talend/locales-tui-containers": "^9.1.3",
"@talend/locales-tui-forms": "^15.2.0",
"@talend/react-cmf": "^10.0.1",
"@talend/react-cmf-router": "^7.0.1",
"@talend/react-cmf": "^11.0.0",
"@talend/react-cmf-router": "^8.0.0",
"@talend/react-components": "^17.1.3",
"@talend/react-containers": "^11.2.0",
"@talend/react-containers": "^11.3.2",
"@talend/react-dataviz": "^7.0.1",
"@talend/react-faceted-search": "^21.0.0",
"@talend/react-forms": "^15.1.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/sagas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @talend/react-sagas

## 9.0.1

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf@11.0.0

## 9.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sagas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@talend/react-sagas",
"version": "9.0.0",
"version": "9.0.1",
"description": "App wide redux sagas",
"main": "lib/index.js",
"mainSrc": "src/index.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {
"@talend/react-cmf": "^10.0.1",
"@talend/react-cmf": "^11.0.0",
"immutable": "^3.8.2",
"redux-saga": "^1.3.0"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/storybook-cmf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @talend/react-storybook-cmf

## 11.0.0

### Patch Changes

- Updated dependencies [816bb91]
- @talend/react-cmf@11.0.0

## 10.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/storybook-cmf/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@talend/react-storybook-cmf",
"description": "react-storybook-cmf library.",
"version": "10.0.0",
"version": "11.0.0",
"license": "Apache-2.0",
"author": "Talend Frontend <[email protected]>",
"repository": {
Expand All @@ -26,7 +26,7 @@
"devDependencies": {
"@talend/eslint-config": "^13.2.1",
"@talend/eslint-plugin": "^1.3.1",
"@talend/react-cmf": "^10.0.1",
"@talend/react-cmf": "^11.0.0",
"@talend/scripts-core": "^16.5.1",
"@talend/scripts-config-babel": "^13.5.0",
"@testing-library/react": "^14.3.1",
Expand All @@ -39,7 +39,7 @@
"prop-types": "^15.8.1"
},
"peerDependencies": {
"@talend/react-cmf": "^10.0.1",
"@talend/react-cmf": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^7.2.9",
Expand Down

0 comments on commit 514b8c7

Please sign in to comment.