@redsift/products 12.5.10 → 12.5.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +9 -9
- package/package.json +5 -5
package/CONTRIBUTING.md
CHANGED
|
@@ -48,7 +48,7 @@ The Design System is following a monorepo architecture, providing multiple packa
|
|
|
48
48
|
|
|
49
49
|
- `@redsift/table`
|
|
50
50
|
|
|
51
|
-
This package provides datagrid components and features based on [MUI DataGrid](https://mui.com/x/react-data-grid/). The muiv6
|
|
51
|
+
This package provides datagrid components and features based on [MUI DataGrid](https://mui.com/x/react-data-grid/). The muiv6 branch uses MUI DataGrid Pro; the default line (`main`) uses MUI DataGrid Premium. A [Pro or Premium license](https://mui.com/x/introduction/licensing/) from MUI is required.
|
|
52
52
|
|
|
53
53
|
- `@redsift/charts`
|
|
54
54
|
|
|
@@ -416,22 +416,22 @@ yarn build:products
|
|
|
416
416
|
|
|
417
417
|
## Publishing a release
|
|
418
418
|
|
|
419
|
-
> **Canonical process:** the full, up-to-date release workflow — the
|
|
419
|
+
> **Canonical process:** the full, up-to-date release workflow — the two parallel MUI DataGrid version lines (default / muiv6), peer-dependency bumps, docs/MCP regeneration and the pre-release checklist — lives in **`.github/instructions/release.instructions.md`**. Follow that as the source of truth. The steps below are a simplified single-line summary and omit the multi-version release details.
|
|
420
420
|
|
|
421
421
|
### Stable release
|
|
422
422
|
|
|
423
|
-
Releases go through the one-command `yarn release` CLI — not a manual `lerna publish`. See `.github/instructions/release.instructions.md` for the full flow (
|
|
423
|
+
Releases go through the one-command `yarn release` CLI — not a manual `lerna publish`. See `.github/instructions/release.instructions.md` for the full flow (both lines, pre-release checklist, post steps).
|
|
424
424
|
|
|
425
425
|
1. Login to NPM with an authorized account: `npm login`
|
|
426
|
-
2. Dry-run the readiness gate on
|
|
427
|
-
3. When green, publish: `yarn release stable X.Y.Z` — the CLI preflights, then publishes `X.Y.Z-muiv6
|
|
426
|
+
2. Dry-run the readiness gate on both lines: `yarn release stable X.Y.Z --dry-run` (validates each line and stops before anything irreversible)
|
|
427
|
+
3. When green, publish: `yarn release stable X.Y.Z` — the CLI preflights, then publishes `X.Y.Z-muiv6` and `X.Y.Z`, pausing only for the per-line npm OTP. It then creates the GitHub release notes, opens (never merges) the `release/X.Y.Z` → `main` PR, and cuts the next release branches.
|
|
428
428
|
|
|
429
429
|
### Alpha release
|
|
430
430
|
|
|
431
|
-
If you need to test your contribution in a product before releasing — and you're not using `yarn link` — publish to the live alpha channel (
|
|
431
|
+
If you need to test your contribution in a product before releasing — and you're not using `yarn link` — publish to the live alpha channel (default-line-based, npm dist-tag `alpha`). There are no per-feature alpha branches to create or recreate.
|
|
432
432
|
|
|
433
433
|
1. Login to NPM with an authorized account: `npm login`
|
|
434
|
-
2. Check out the current
|
|
435
|
-
3. Publish: `yarn release alpha` — the CLI derives the next `X.Y.Z-
|
|
434
|
+
2. Check out the current default release branch: `git checkout release/X.Y.Z`
|
|
435
|
+
3. Publish: `yarn release alpha` — the CLI derives the next `X.Y.Z-alpha.N` from the tags, runs the single-line preflight, and publishes (only the npm OTP is manual)
|
|
436
436
|
|
|
437
|
-
To iterate, push more commits to the
|
|
437
|
+
To iterate, push more commits to the default release branch and run `yarn release alpha` again.
|
package/package.json
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"test": "yarn test:unit && yarn test:storybook"
|
|
53
53
|
},
|
|
54
54
|
"types": "index.d.ts",
|
|
55
|
-
"version": "12.5.
|
|
55
|
+
"version": "12.5.11",
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@redsift/d3-rs-sankey": "0.4.0",
|
|
58
58
|
"@redsift/signal-logic": "^0.6.2",
|
|
@@ -112,12 +112,12 @@
|
|
|
112
112
|
"ts-jest": "^29.2.0"
|
|
113
113
|
},
|
|
114
114
|
"peerDependencies": {
|
|
115
|
-
"@redsift/design-system": "^12.5.
|
|
116
|
-
"@redsift/icons": "^12.5.
|
|
117
|
-
"@redsift/pickers": "^12.5.
|
|
115
|
+
"@redsift/design-system": "^12.5.11-0",
|
|
116
|
+
"@redsift/icons": "^12.5.11-0",
|
|
117
|
+
"@redsift/pickers": "^12.5.11-0",
|
|
118
118
|
"react": ">=17",
|
|
119
119
|
"react-dom": ">=17",
|
|
120
120
|
"styled-components": "6.1.19"
|
|
121
121
|
},
|
|
122
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "c652970363e8113ea507d6258c554d5477a74a0e"
|
|
123
123
|
}
|