@gravity-ui/page-constructor 1.22.1 → 2.0.0-beta.0
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/CHANGELOG.md +7 -0
- package/README.md +18 -0
- package/package.json +10 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.23.0](https://github.com/gravity-ui/page-constructor/compare/v1.22.1...v1.23.0) (2023-03-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add release flow to README.md ([#183](https://github.com/gravity-ui/page-constructor/issues/183)) ([c7d7923](https://github.com/gravity-ui/page-constructor/commit/c7d7923c034b88a8e8167023448d8a071926cc26))
|
|
9
|
+
|
|
3
10
|
## [1.22.1](https://github.com/gravity-ui/page-constructor/compare/v1.22.0...v1.22.1) (2023-03-07)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -298,3 +298,21 @@ enum PredefinedEventTypes {
|
|
|
298
298
|
npm ci
|
|
299
299
|
npm run dev
|
|
300
300
|
```
|
|
301
|
+
|
|
302
|
+
## Release flow
|
|
303
|
+
|
|
304
|
+
In usual cases we use two types of commits:
|
|
305
|
+
|
|
306
|
+
1. fix: a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).
|
|
307
|
+
2. feat: a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).
|
|
308
|
+
3. BREAKING CHANGE: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.
|
|
309
|
+
|
|
310
|
+
You can see all information [here](https://www.conventionalcommits.org/en/v1.0.0/).
|
|
311
|
+
|
|
312
|
+
When you receive the approval of your pull-request from the code owners and pass all the checks, please do the following:
|
|
313
|
+
|
|
314
|
+
1. You should check if there is a release pull-request from robot with changes from another contributor (it looks like `chore(main): release 0.0.0`). If it exists, you should check why it is not merged. If the contributor agrees to release a shared version, follow the next step. If not, ask him to release his version, then follow the next step.
|
|
315
|
+
2. Squash and merge your PR (It is important to release a new version with Github-Actions)
|
|
316
|
+
3. Wait until robot creates a PR with a new version of the package and information about your changes in CHANGELOG.md. You can see the process on [the Actions tab](https://github.com/gravity-ui/page-constructor/actions).
|
|
317
|
+
4. Check your changes in CHANGELOG.md and approve robot's PR.
|
|
318
|
+
5. Squash and merge PR. You can see release process on [the Actions tab](https://github.com/gravity-ui/page-constructor/actions).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-ui/page-constructor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.0",
|
|
4
4
|
"description": "Gravity UI Page Constructor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"uuid": "^9.0.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"react": "^16.0.0 || ^17.0.0",
|
|
65
|
-
"@gravity-ui/uikit": "^
|
|
64
|
+
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
|
|
65
|
+
"@gravity-ui/uikit": "^4.1.0",
|
|
66
66
|
"@doc-tools/transform": "^2.6.1"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
@@ -73,19 +73,20 @@
|
|
|
73
73
|
"@gravity-ui/prettier-config": "^1.0.1",
|
|
74
74
|
"@gravity-ui/stylelint-config": "^1.0.0",
|
|
75
75
|
"@gravity-ui/tsconfig": "^1.0.0",
|
|
76
|
-
"@gravity-ui/uikit": "^
|
|
76
|
+
"@gravity-ui/uikit": "^4.1.0",
|
|
77
77
|
"@storybook/addon-actions": "^6.3.12",
|
|
78
78
|
"@storybook/addon-essentials": "^6.5.10",
|
|
79
79
|
"@storybook/addon-knobs": "^6.3.1",
|
|
80
80
|
"@storybook/addon-viewport": "^6.3.12",
|
|
81
81
|
"@storybook/preset-scss": "^1.0.3",
|
|
82
|
-
"@storybook/react": "^6.5.
|
|
82
|
+
"@storybook/react": "^6.5.16",
|
|
83
83
|
"@testing-library/jest-dom": "^5.16.5",
|
|
84
84
|
"@testing-library/react": "^13.4.0",
|
|
85
85
|
"@testing-library/user-event": "^14.4.3",
|
|
86
86
|
"@types/jest": "^29.2.4",
|
|
87
87
|
"@types/lodash": "^4.14.176",
|
|
88
|
-
"@types/react": "^
|
|
88
|
+
"@types/react": "^18.0.27",
|
|
89
|
+
"@types/react-dom": "^18.0.10",
|
|
89
90
|
"@types/react-slick": "^0.23.7",
|
|
90
91
|
"@types/react-transition-group": "^4.4.4",
|
|
91
92
|
"@types/sanitize-html": "^2.6.0",
|
|
@@ -136,5 +137,8 @@
|
|
|
136
137
|
"*.{json,yaml,yml,md}": [
|
|
137
138
|
"prettier --write"
|
|
138
139
|
]
|
|
140
|
+
},
|
|
141
|
+
"publishConfig": {
|
|
142
|
+
"tag": "beta"
|
|
139
143
|
}
|
|
140
144
|
}
|