@@ -205,25 +205,24 @@ the SHA of the commit being reverted.
205
205
# ## Type
206
206
Must be one of the following:
207
207
208
- * ** feat** : A new feature
209
- * ** fix** : A bug fix
210
- * ** docs** : Documentation only changes
211
- * ** style** : Changes that do not affect the meaning of the code (white-space, formatting, missing
212
- semi-colons, etc)
213
- * ** refactor** : A code change that neither fixes a bug nor adds a feature
214
- * ** perf** : A code change that improves performance
215
- * ** test** : Adding missing tests or correcting existing tests
216
- * ** build** : Changes that affect the build system, CI configuration or external dependencies
217
- (example scopes: gulp, broccoli, npm)
218
- * ** chore** : Other changes that don' t modify `src` or `test` files
208
+ * ** feat** : Creates a new feature
209
+ * ** fix** : Fixes a previously discovered failure/bug
210
+ * ** docs** : Changes which exclusively affects documentation
211
+ * ** refactor** : Refactor without any change in functionality or API (includes style changes)
212
+ * ** perf** : Improves performance without any change in functionality or API
213
+ * ** test** : Improvements or corrections made to the project' s test suite
214
+ * **build**: Changes to local repository build system and tooling
215
+ * **ci**: Changes to CI configuration and CI specific tooling
216
+ * **release**: A release point in the repository
219
217
220
218
### Package
221
219
The commit message should specify which package is affected by the change. For example:
222
220
`material`, `cdk-experimental`, etc.
223
221
224
222
### Scope
225
- The scope could be anything specifying place of the commit change. For example
226
- `datepicker`, `dialog`, etc.
223
+ The scope specifies place of the commit change. For example
224
+ `material/datepicker`, `cdk-experimental/dialog`, etc.
225
+ See full list [here][commit-message-scopes].
227
226
228
227
### Subject
229
228
The subject contains succinct description of the change:
@@ -261,6 +260,7 @@ changes to be accepted, the CLA must be signed. It's a quick process, we promise
261
260
[material-group]: https://groups.google.com/forum/#! forum/angular-material2
262
261
[coc]: https://github.com/angular/code-of-conduct/blob/master/CODE_OF_CONDUCT.md
263
262
[commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/preview
263
+ [commit-message-scopes]: https://github.com/angular/components/blob/master/.ng-dev/commit-message.ts#L10
264
264
[corporate-cla]: http://code.google.com/legal/corporate-cla-v1.0.html
265
265
[dev-doc]: https://github.com/angular/components/blob/master/DEV_ENVIRONMENT.md
266
266
[github]: https://github.com/angular/components
0 commit comments