-
Notifications
You must be signed in to change notification settings - Fork 0
Release v0.15.0 #120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Release v0.15.0 #120
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
336b5c9
#113 feat: 제출 이력 조회 버튼 추가
suminb99 d14b600
#113 feat: submission history 스키마 추가
suminb99 32aa0c3
#113 feat: 과제 제출 이력 조회 API 및 쿼리 추가
suminb99 61b456a
#113 style: 높이 및 색상 속성 상위 태그에서 정의
suminb99 7f5bc5a
#113 feat: 제출 이력 패널 UI 컴포넌트 추가
suminb99 934939e
#113 refactor: useAssignmentSubmission hook 인터페이스 개선
suminb99 956d4b3
#113 feat: 제출 페이지에 제출 이력 조회 및 코드 불러오기 연동
suminb99 a8a7f38
#113 fix: 제출 이력 pass/fail label 수정
suminb99 589dce3
#113 feat: 제출 이력 빈 상태 메시지 추가
suminb99 ff0a46e
#113 feat: 터미널 토글 버튼 텍스트 종적 업데이트
suminb99 73e63b3
Merge pull request #114 from 2025-snowCode/feat/113-submission-history
suminb99 a68f344
#116 chore: 이슈 템플릿 업데이트
JiiminHa 5810d69
Merge pull request #117 from 2025-snowCode/chore/116-issue-template
JiiminHa 72cd356
#118 feat: 스케줄 배지 메시지 업데이트
suminb99 05857e3
Merge pull request #119 from 2025-snowCode/feat/118-schedule-badge-me…
suminb99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| name: Bug report | ||
| description: 버그를 보고하여 서비스를 개선하는 데 도움을 주세요. | ||
| title: "[bug]: " | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| ## 버그 보고서 | ||
| 문제를 정확히 파악하기 위해 아래 정보를 최대한 자세히 작성해 주세요. | ||
| - type: textarea | ||
| id: bug-description | ||
| attributes: | ||
| label: 어떤 버그인가요? | ||
| description: 발생한 버그를 간략하고 명확하게 설명해 주세요. | ||
| placeholder: 예시) 로그인 버튼을 눌렀을 때 반응이 없습니다. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: reproduction | ||
| attributes: | ||
| label: 재현 경로 | ||
| description: 버그가 발생하는 상황을 단계별로 설명해 주세요 (가능하면 Given-When-Then 형식). | ||
| placeholder: | | ||
| 1. 메인 페이지에 접속합니다. | ||
| 2. 로그인 버튼을 클릭합니다. | ||
| 3. ... | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: expected-results | ||
| attributes: | ||
| label: 예상 결과 | ||
| description: 원래 기대했던 동작은 무엇이었나요? | ||
| placeholder: 로그인 팝업이 뜨고 아이디/비밀번호 입력창이 보여야 합니다. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: references | ||
| attributes: | ||
| label: 참고 자료 (선택) | ||
| description: 스크린샷, 오류 로그, 또는 관련 문서 링크를 첨부해 주세요. | ||
| placeholder: 이미지나 로그 파일을 드래그 앤 드롭 하세요. | ||
| validations: | ||
| required: false |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| name: ETC | ||
| description: 리팩토링, 성능 개선 등 기타 작업을 위한 템플릿입니다. | ||
| title: "[etc]: " | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| ## 기타 작업 | ||
| 기능 추가나 버그 수정 외의 작업(리팩토링, 환경 설정 등) 내용을 작성해 주세요. | ||
| - type: checkboxes | ||
| id: development-type | ||
| attributes: | ||
| label: 작업 유형 | ||
| description: 해당되는 항목을 모두 선택해 주세요. | ||
| options: | ||
| - label: 리팩토링 (Refactoring) | ||
| - label: 성능 개선 (Performance) | ||
| - label: 환경 설정 (Config) | ||
| - label: 문서 수정 (Docs) | ||
| - label: 기타 (Etc) | ||
| - type: textarea | ||
| id: rationale | ||
| attributes: | ||
| label: 작업 배경 | ||
| description: 왜 이 작업이 필요한지 설명해 주세요. | ||
| placeholder: 코드의 가독성을 높이기 위해 불필요한 코드를 제거합니다. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: task-details | ||
| attributes: | ||
| label: 작업 상세 내용 | ||
| description: 어떤 작업을 진행할 것인지 자세히 적어주세요. | ||
| placeholder: | | ||
| - [ ] 컴포넌트 A 분리 | ||
| - [ ] 공통 훅 추출 | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: references | ||
| attributes: | ||
| label: 참고 자료 (선택) | ||
| description: 관련 링크, 스크린샷 등이 있다면 첨부해 주세요. | ||
| validations: | ||
| required: false |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: Feature request | ||
| description: 새로운 기능이나 아이디어를 제안해 주세요. | ||
| title: "[feat]: " | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| ## 기능 제안 | ||
| 새로운 기능을 제안하거나 기존 기능을 개선하고 싶으신가요? 아래 내용을 작성해 주세요. | ||
| - type: textarea | ||
| id: feature-description | ||
| attributes: | ||
| label: 어떤 기능인가요? | ||
| description: 제안하려는 기능의 목적과 기대 효과를 간략히 설명해 주세요. | ||
| placeholder: 예시) 다크 모드 기능을 추가하여 시력을 보호하고 싶습니다. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: task-details | ||
| attributes: | ||
| label: 작업 상세 내용 | ||
| description: 어떻게 구현하면 좋을지, 어떤 작업들이 필요한지 적어주세요. | ||
| placeholder: | | ||
| - [ ] 테마 상태 관리 추가 | ||
| - [ ] CSS 변수 적용 | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: references | ||
| attributes: | ||
| label: 참고 자료 (선택) | ||
| description: 디자인 시안, 관련 라이브러리, 또는 참고할 만한 예시 링크를 첨부해 주세요. | ||
| validations: | ||
| required: false |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
엄격한 동등 연산자(
===)를 사용하세요.느슨한 동등 연산자(
==) 대신 엄격한 동등 연산자(===)를 사용해야 합니다. TypeScript/JavaScript에서는 타입 강제 변환을 방지하기 위해 항상===를 사용하는 것이 권장됩니다.📚 참고: MDN - 동등 비교 및 동일성
🔧 제안하는 수정
📝 Committable suggestion
🤖 Prompt for AI Agents