Skip to content

Commit 514b8c7

Browse files
chore: prepare release (#5489)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 816bb91 commit 514b8c7

File tree

17 files changed

+150
-56
lines changed

17 files changed

+150
-56
lines changed

.changeset/breezy-ways-care.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

packages/cmf-cqrs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @talend/react-cmf-cqrs
22

3+
## 11.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [816bb91]
8+
- @talend/react-cmf@11.0.0
9+
310
## 11.0.0
411

512
### Major Changes

packages/cmf-cqrs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/Talend/ui/cmf-cqrs#readme",
3434
"dependencies": {
35-
"@talend/react-cmf": "^10.0.1",
35+
"@talend/react-cmf": "^11.0.0",
3636
"@talend/utils": "^3.2.3",
3737
"immutable": "^3.8.2",
3838
"redux-saga": "^1.3.0"
@@ -60,5 +60,5 @@
6060
"publishConfig": {
6161
"access": "public"
6262
},
63-
"version": "11.0.0"
63+
"version": "11.0.1"
6464
}

packages/cmf-router/CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# Changelog
22

3+
## 8.0.0
4+
5+
### Major Changes
6+
7+
- 816bb91: BREAKING CHANGE: Upgraded path-to-regexp from 3.x to 8.x
8+
9+
This upgrade was necessary to resolve security vulnerabilities. The new version introduces two breaking changes that require updates to your application:
10+
11+
1. Optional Path Parameter Syntax Change
12+
13+
- Old syntax: `/resources/:id?`
14+
- New syntax: `/resources{/id}`
15+
16+
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.
17+
18+
2. Root Path Matching Behavior Change
19+
20+
- In v3.x, root path `/` would match any path starting with `/`
21+
- In v8.x, root path `/` only matches exactly `/`
22+
- To match both root and child paths, use the wildcard pattern `/{*path}`
23+
24+
Example migration:
25+
26+
```javascript
27+
// Before
28+
const routes = {
29+
'/': rootSaga,
30+
'/resources/:id?': resourceSaga
31+
};
32+
33+
// After
34+
const routes = {
35+
'/{*path}': rootSaga, // if you want to match all routes
36+
'/resources{/id}': resourceSaga
37+
};
38+
```
39+
40+
For more details about path matching and troubleshooting, see [path-to-regexp documentation](https://github.com/pillarjs/path-to-regexp#errors).
41+
42+
### Patch Changes
43+
44+
- Updated dependencies [816bb91]
45+
- @talend/react-cmf@11.0.0
46+
347
## 7.1.1
448

549
### Patch Changes

packages/cmf-router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@talend/react-cmf-router",
3-
"version": "7.1.1",
3+
"version": "8.0.0",
44
"description": "",
55
"main": "lib/index.js",
66
"module": "./lib-esm/index.js",
@@ -25,7 +25,7 @@
2525
"lint": "talend-scripts lint"
2626
},
2727
"dependencies": {
28-
"@talend/react-cmf": "^10.1.1",
28+
"@talend/react-cmf": "^11.0.0",
2929
"connected-react-router": "^6.9.3",
3030
"history": "^5.3.0",
3131
"lodash": "^4.17.21",

packages/cmf/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# @talend/react-cmf
22

3+
## 11.0.0
4+
5+
### Major Changes
6+
7+
- 816bb91: BREAKING CHANGE: Upgraded path-to-regexp from 3.x to 8.x
8+
9+
This upgrade was necessary to resolve security vulnerabilities. The new version introduces two breaking changes that require updates to your application:
10+
11+
1. Optional Path Parameter Syntax Change
12+
13+
- Old syntax: `/resources/:id?`
14+
- New syntax: `/resources{/id}`
15+
16+
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.
17+
18+
2. Root Path Matching Behavior Change
19+
20+
- In v3.x, root path `/` would match any path starting with `/`
21+
- In v8.x, root path `/` only matches exactly `/`
22+
- To match both root and child paths, use the wildcard pattern `/{*path}`
23+
24+
Example migration:
25+
26+
```javascript
27+
// Before
28+
const routes = {
29+
'/': rootSaga,
30+
'/resources/:id?': resourceSaga
31+
};
32+
33+
// After
34+
const routes = {
35+
'/{*path}': rootSaga, // if you want to match all routes
36+
'/resources{/id}': resourceSaga
37+
};
38+
```
39+
40+
For more details about path matching and troubleshooting, see [path-to-regexp documentation](https://github.com/pillarjs/path-to-regexp#errors).
41+
342
## 10.1.1
443

544
### Patch Changes

packages/cmf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@
8787
"publishConfig": {
8888
"access": "public"
8989
},
90-
"version": "10.1.1"
90+
"version": "11.0.0"
9191
}

packages/containers/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @talend/react-containers
22

3+
## 11.3.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [816bb91]
8+
- @talend/react-cmf@11.0.0
9+
310
## 11.3.1
411

512
### Patch Changes

packages/containers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
},
4747
"dependencies": {
4848
"@talend/design-system": "^11.4.0",
49-
"@talend/react-cmf": "^10.1.1",
49+
"@talend/react-cmf": "^11.0.0",
5050
"@talend/react-components": "^17.3.1",
5151
"@talend/react-forms": "^15.1.0",
5252
"@talend/utils": "^3.2.3",
@@ -66,7 +66,7 @@
6666
"@talend/locales-tui-containers": "^9.1.3",
6767
"@talend/locales-tui-forms": "^15.2.0",
6868
"@talend/locales-design-system": "^7.15.1",
69-
"@talend/react-storybook-cmf": "^10.0.0",
69+
"@talend/react-storybook-cmf": "^11.0.0",
7070
"@talend/eslint-config": "^13.2.1",
7171
"@talend/eslint-plugin": "^1.3.1",
7272
"@talend/scripts-core": "^16.5.1",
@@ -95,5 +95,5 @@
9595
"publishConfig": {
9696
"access": "public"
9797
},
98-
"version": "11.3.1"
98+
"version": "11.3.2"
9999
}

packages/playground-vite/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @talend/ui-playground
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [816bb91]
8+
- @talend/react-cmf-router@8.0.0
9+
- @talend/react-cmf@11.0.0
10+
- @talend/react-containers@11.3.2
11+
312
## 0.1.2
413

514
### Patch Changes

0 commit comments

Comments
 (0)