Skip to content

Commit Convention

์ด์˜์ฐฌ edited this page Apr 30, 2024 · 2 revisions

์ปค๋ฐ‹ ๋ฉ”์‹œ์ง€ ํ˜•์‹

<type>: <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

0. ๋ชจ๋“  ์ปค๋ฐ‹ ๋ฉ”์‹œ์ง€๋Š” ํ•œ๊ธ€๋กœ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.

1. ์ œ๋ชฉ์€ ์ตœ๋Œ€ 50์ž๋กœ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.

2. type ๊ทœ์น™

  • ํƒ€์ž…์€ ์•„๋ž˜ ์ค‘ ํ•˜๋‚˜๋ฅผ ์„ ํƒํ•ด์ฃผ์„ธ์š”.
    • feat (feature)
    • fix (bug fix)
    • docs (documentation)
    • style (formatting, missing semi colons, ...)
    • refactor
    • test (when adding missing test)
    • chore (maintain)

3. subject ๊ทœ์น™

  • ๋ช…๋ นํ˜•๊ณผ ํ˜„์žฌํ˜•์„ ์‚ฌ์šฉํ•ด์„œ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
    • โœ… feat: ์‚ฌ์šฉ์ž ๋กœ๊ทธ์ธ
    • โŒ feat: ์‚ฌ์šฉ์ž ๋กœ๊ทธ์ธ ์ถ”๊ฐ€ ์˜ˆ์ •์ž…๋‹ˆ๋‹ค.
  • ํ–‰์œ„ ์ž์ฒด๋งŒ์„ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
    • โœ… feat: ModalOverlay ์ปดํฌ๋„ŒํŠธ ๊ตฌํ˜„
    • โŒ feat: ์ƒ์œ„์š”์†Œ๊ฐ€ Modal์— ์˜ํ–ฅ์„ ๋ฏธ์น˜์ง€ ์•Š๋„๋ก ModalOverlay ์ปดํฌ๋„ŒํŠธ ๊ตฌํ˜„

4. body ๊ทœ์น™

  • ๋ช…๋ นํ˜•๊ณผ ํ˜„์žฌํ˜•์„ ์‚ฌ์šฉํ•ด์„œ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
  • ๋ณ€ํ™”์— ๋Œ€ํ•œ ๋™๊ธฐ์™€ ์ด์ „๊ณผ ํ–‰๋™๊ณผ์˜ ๋Œ€์กฐ๋ฅผ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.

5. footer ๊ทœ์น™

  • Library Deprecated๋กœ ์ธํ•œ BreakChange์˜ ๊ฒฝ์šฐ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
Breaks $browser.onHashChange, which was removed (use onUrlChange instead)
  • Zira ๋ณด๋“œ์— ์—…๋ฐ์ดํŠธ ๋œ ์ด์Šˆ ๋ฒˆํ˜ธ๋ฅผ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
// ๋‹จ์ผ ์ž‘์—…์˜ ๊ฒฝ์šฐ
Closes #123

// ๋‹ค์ค‘ ์ž‘์—…์˜ ๊ฒฝ์šฐ
Closes #123, #124, #225

์ปค๋ฐ‹ ๋ฉ”์‹œ์ง€ ์˜ˆ์‹œ

feat: onUrlChange event

Added new event to $browser:
- forward popstate event if available
- forward hashchange event if popstate not available
- do polling when neither popstate nor hashchange available

Breaks $browser.onHashChange, which was removed (use onUrlChange instead)
feat(directive): ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected

New directives for proper binding these attributes in older browsers (IE).
Added coresponding description, live examples and e2e tests.

Closes #351
Clone this wiki locally