-
Notifications
You must be signed in to change notification settings - Fork 1
Commit Convention
์ด์์ฐฌ edited this page Apr 30, 2024
·
2 revisions
<type>: <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
- ํ์
์ ์๋ ์ค ํ๋๋ฅผ ์ ํํด์ฃผ์ธ์.
- feat (feature)
- fix (bug fix)
- docs (documentation)
- style (formatting, missing semi colons, ...)
- refactor
- test (when adding missing test)
- chore (maintain)
- ๋ช
๋ นํ๊ณผ ํ์ฌํ์ ์ฌ์ฉํด์ ์์ฑํด์ฃผ์ธ์.
- โ feat: ์ฌ์ฉ์ ๋ก๊ทธ์ธ
- โ feat: ์ฌ์ฉ์ ๋ก๊ทธ์ธ ์ถ๊ฐ ์์ ์ ๋๋ค.
- ํ์ ์์ฒด๋ง์ ์์ฑํด์ฃผ์ธ์.
- โ feat: ModalOverlay ์ปดํฌ๋ํธ ๊ตฌํ
- โ feat: ์์์์๊ฐ Modal์ ์ํฅ์ ๋ฏธ์น์ง ์๋๋ก ModalOverlay ์ปดํฌ๋ํธ ๊ตฌํ
- ๋ช ๋ นํ๊ณผ ํ์ฌํ์ ์ฌ์ฉํด์ ์์ฑํด์ฃผ์ธ์.
- ๋ณํ์ ๋ํ ๋๊ธฐ์ ์ด์ ๊ณผ ํ๋๊ณผ์ ๋์กฐ๋ฅผ ์์ฑํด์ฃผ์ธ์.
- 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