0
0
mirror of https://github.com/conventional-commits/conventionalcommits.org.git synced 2025-08-22 13:58:35 +00:00

feat: refactor as breaking change examples

This commit is contained in:
shaman-apprentice 2021-11-15 20:03:03 +01:00 committed by GitHub
parent 83ef94caca
commit 3ec8aa9ae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 50 additions and 50 deletions

View File

@ -53,17 +53,17 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Commit message with `!` to draw attention to breaking change
```
feat!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Commit message with scope and `!` to draw attention to breaking change
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Commit message with both `!` and BREAKING CHANGE footer
```
feat!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: use JavaScript features not available in Node 6.
```

View File

@ -52,19 +52,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Commit-Nachricht mit `!` um auf einen Breaking Change aufmerksam zu machen
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Commit-Nachricht mit Gültigkeitsbereich und `!` um auf einen Breaking Change aufmerksam zu machen
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Commit-Nachricht mit `!` als auch BREAKING CHANGE Fußzeile
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### Commit-Nachricht ohne Textkörper

View File

@ -54,19 +54,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Message du commit avec `!` attire l'attention sur un BREAKING CHANGE
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Message du commit avec _scope_ et `!` attire l'attention sur un BREAKING CHANGE
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Message du commit avec `!` et BREAKING CHANGE dans le pied de page
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### Message du commit sans corps de texte

View File

@ -52,19 +52,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Pesan komit dengan `!` untuk menarik perhatian pada breaking change
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Pesan komit dengan scope dan `!` untuk menarik perhatian pada breaking change
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Pesan komit dengan keduanya `!` dan footer BREAKING CHANGE
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### Pesan komit tanpa body

View File

@ -54,17 +54,17 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Messaggio di un commit con un `!` per attirare l'attenzione su una breaking change
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Messaggio di un commit con uno contesto e `!` per attirare attenzione ad una breaking change
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Messaggio di un commit con entrambe `!` e _BREAKING CHANGE_ a piè di pagina
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
BREAKING CHANGE: dropping Node 6 which hits end of life in April
```

View File

@ -67,21 +67,21 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### 破壊的変更を目立たせるために `!` を持つコミットメッセージ
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### スコープおよび破壊的変更を目立たせるための `!` を持つコミットメッセージ
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### `!` と BREAKING CHANGE フッターの両方を持つコミットメッセージ
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### 本文を持たないコミットメッセージ

View File

@ -49,19 +49,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### 단절적 변경(breaking change)에 주의를 주기 위해 `!`를 포함한 커밋 메세지
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### 단절적 변경(breaking change)에 주의를 주기위해 적용 범위와 `!` 를 포함한 커밋 메세지
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### BREAKING CHANGE 꼬리말과 `!`를 함께 포함한 커밋 메세지
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### 본문이 없는 커밋 메세지

View File

@ -54,19 +54,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Commit message with `!` to draw attention to breaking change
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Commit message with scope and `!` to draw attention to breaking change
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Commit message with both `!` and BREAKING CHANGE footer
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### Commit message with no body

View File

@ -65,19 +65,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Сообщение коммита с `!` для привлечения внимания к `BREAKING CHANGE`
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Сообщение коммита с онтекстом_ и `!` для привлечения внимания к `BREAKING CHANGE`
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Сообщение коммита вместе с `!` и _сноской_ `BREAKING CHANGE`
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### Сообщение коммита без _тела_

View File

@ -53,19 +53,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### ข้อความ commit ที่มี `!` เพื่อบ่งบอก breaking change
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### ข้อความ commit ที่ระบุขอบเขต และมี `!` เพื่อบ่งบอก breaking change
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### ข้อความ commit ที่มีทั้ง `!` และ BREAKING CHANGE ลงท้าย
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### ข้อความ commit ที่ไม่มีเนื้อหา

View File

@ -55,19 +55,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### Коміт повідомлення з `!` для додаткового наголосу щодо BREAKING CHANGE
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### Коміт повідомлення з контекстом та `!` аби привернути увагу до BREAKING CHANGE
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### Коміт повідомлення з `!` та BREAKING CHANGE додатком
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### Коміт повідомлення без тіла

View File

@ -65,19 +65,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### 包含了 `!` 字符以提醒注意破坏性变更的提交说明
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### 包含了范围和破坏性变更 `!` 的提交說明
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### 包含了 `!` 和 BREAKING CHANGE 脚注的提交说明
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### 不包含正文的提交说明

View File

@ -59,19 +59,19 @@ BREAKING CHANGE: `extends` key in config file is now used for extending other co
### 包含用以提示重大變更的 `!` 的提交說明
```
refactor!: drop support for Node 6
feat!: send an email to the customer when a product is shipped
```
### 包含作用範圍和提示重大變更的 `!` 的提交說明
```
refactor(runtime)!: drop support for Node 6
feat(api)!: send an email to the customer when a product is shipped
```
### 包含 `!` 以及頁腳有重大變更的提交說明
```
refactor!: drop support for Node 6
chore!: drop support for Node 6
BREAKING CHANGE: refactor to use JavaScript features not available in Node 6.
BREAKING CHANGE: use JavaScript features not available in Node 6.
```
### 不包含正文的提交說明