-
Notifications
You must be signed in to change notification settings - Fork 0
merge: 개발 코드 메인 브랜치로 머지 #11
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
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
cb2c674
docs: DDL 업로드
ljh8450 f58c693
feat: 로그인 기능 구현
ljh8450 a54eb02
feat: 기록 및 AI 응답 구조 구현
ljh8450 cb9c649
refactor: Match 엔티티 내 memory 용어를 episode로 변경
pearseona fc17483
Merge pull request #2 from 8th-COKERTHON/feature/ring-domain
pearseona 93ae3e9
refactor: Match 엔티티 내 memory 용어를 episode로 변경
pearseona e749f60
feat: 에피소드 대결 시작 API 구현 및 비관적 락 적용
pearseona b05de09
feat: 대결 취소 API 구현 및 에피소드 상태 롤백
pearseona e1b255f
feat: memory -> episode로 변경, 온보딩 여부 로직 추가
ljh8450 157c208
refactor: 대결 시작 및 취소 로직 수정
pearseona d1e900a
Merge pull request #5 from 8th-COKERTHON/feature/match-start-cancel
pearseona a4e6bda
docs: 명세 구체화
ljh8450 c24b397
Merge branch 'develop' of https://github.com/8th-COKERTHON/server-tea…
ljh8450 3c2c746
merge: develop 병합 및 매칭 충돌 해결
ljh8450 d93626c
ci: 임시로 테스트 실행 제외
ljh8450 85a313f
Merge pull request #4 from 8th-COKERTHON/feat/home
ljh8450 546296d
feat: 대결 결과 점수 entity 설계
pearseona 9cefadd
feat: 대결 결과 점수 repository 구현
pearseona b9e3b3e
feat: 대결 결과 점수 repository 구현
pearseona 922853f
feat: 대결 결과 점수 dto 구현
pearseona 5cba556
feat: 점수 계산 비즈니스 로직 구현
pearseona 1fcddd4
Merge pull request #6 from 8th-COKERTHON/feature/match-result
ljh8450 43b5486
chore: merge from devlop
ljh8450 adafad1
feat: 기록실 기능 구현
pearseona c566c45
Merge pull request #7 from 8th-COKERTHON/feature/record-room
pearseona 7a020b5
Merge branch 'develop' of https://github.com/8th-COKERTHON/server-tea…
ljh8450 bb6082e
feat: 랭킹 및 검색 구현
ljh8450 af6679e
Merge pull request #8 from 8th-COKERTHON/feature/ranking
ljh8450 0dfac44
fix: 빌드 오류 수정
ljh8450 8d252c5
feat: 매칭 기능 고도화
ljh8450 ae51cd5
Merge pull request #9 from 8th-COKERTHON/feature/matching-spec
ljh8450 9a6819c
feat: ai 제목 추천 추가
ljh8450 05af955
Merge pull request #10 from 8th-COKERTHON/feature/matching-spec
ljh8450 0ca40f1
docs: REAMDME 추가 작성
pearseona 069110b
docsL README 제목 수정
pearseona 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 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.
🩺 Stability & Availability | 🟠 Major | 🏗️ Heavy lift
CI no longer runs tests.
-x testskips the entire test suite on every build; the TODO acknowledges this is a workaround for a timezone dependency in integration tests. Merging with tests disabled removes the safety net for all changes going forward (including this large PR), which is risky given the sizeable auth/matching/ranking logic being introduced.Consider fixing the underlying timezone dependency (e.g., inject a fixed
Clock/TimeZonein test config as done viaTimeConfig) instead of disabling tests outright, or at minimum scope-x testto only the failing test classes/tasks.🤖 Prompt for AI Agents