-
Notifications
You must be signed in to change notification settings - Fork 2
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
[WALWAL-145] missionrecord calendarview #52
Conversation
|
||
// ์ ์ฒด ๋ฏธ์ ๊ธฐ๋ก ์กฐํ ๋ฉ์๋ | ||
public MissionRecordCalendarResponse getMissionRecordsForCalendar() { | ||
Member member = memberUtil.getCurrentMember(); | ||
List<MissionRecord> records = missionRecordRepository.findByMemberId(member.getId()); |
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.
@Transactional(readonly = true)
์ถ๊ฐํด์ฃผ์ธ์ฉ
|
||
Map<String, Map<String, List<MissionRecordCalendarDto>>> calendarData = | ||
records.stream() | ||
.collect( | ||
Collectors.groupingBy( | ||
record -> | ||
record.getCreatedAt() | ||
.format( | ||
DateTimeFormatter.ofPattern( | ||
"yyyy-MM")), | ||
Collectors.groupingBy( | ||
record -> | ||
record.getCreatedAt() | ||
.format( | ||
DateTimeFormatter.ofPattern( | ||
"dd")), | ||
Collectors.mapping( | ||
record -> | ||
MissionRecordCalendarDto.from( | ||
record, | ||
record.getBoosterValue()), | ||
Collectors.toList())))); | ||
|
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.
Map์ ๋ ๋ฒ์ ์ธ๋งํผ ํฐ ๊ท๋ชจ์ response ์ฌ์ด์ฆ์ธ๊ฐ ์ถ์๋ฐ ๋ด์ผ ๊ฒ๋๋ฅผ ํตํด์ ํ๋ฒ ์ค๋ช ์ ๋ค์ด๋ณผ ์ ์์๊น์ฉ??
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.
ํ์ฌ๋ "๋ ๋-์"์ ํค, "์ผ"๋ก ๊ฐ์ผ๋ก ํ๋์ Map, "์ผ"์ ํค๋ก MissionRecordCalendarDto๋ฅผ ๊ฐ์ผ๋ก ๋ ๋ฒ์งธ์ Map์ผ๋ก ๋์ด์๋๋ฐ ๊ฐ์ ๋ฐฉ์์ด ์์๊น์?
private static final DateTimeFormatter DATE_FORMATTER = | ||
DateTimeFormatter.ofPattern("yyyy-MM-dd"); | ||
|
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.
์ ์ ๋ณ์ ์ ์ธ ์ข์์ฉ ๐
// ์ ์ฒด ๋ฏธ์ ๊ธฐ๋ก ์กฐํ ๋ฉ์๋ | ||
@Transactional(readOnly = true) | ||
public MissionRecordCalendarResponse getMissionRecordsForCalendar(String cursor, int limit) { | ||
Member member = memberUtil.getCurrentMember(); |
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.
ํ์์ ๋ํ ๋ถ๋ณ์ฑ์ ๋ณด์ฅ๋๋ final๋ก ์ ์ธํ๋ ๊ฑด ์ด๋จ๊น์ฉ??
public static MissionRecordCalendarDto from(MissionRecord missionRecord) { | ||
String formattedDate = | ||
missionRecord.getCreatedAt().format(DateTimeFormatter.ofPattern("yyyy-MM-dd")); | ||
return new MissionRecordCalendarDto( | ||
missionRecord.getId(), missionRecord.getImageUrl(), formattedDate); | ||
} |
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.
์ ์ ๋ณ์๋ก ์ ์ธ๋ DATE_FORMATTER๋ ๋๊ฒจ ์ ์ ํฉํ ๋ฆฌ ๋ฉ์๋๋ฅผ ๊ตฌ์ฑํด๋ณด๋ ๊ฑด ์ด๋จ๊น์??
DateTimeFormatter ํจํด์ ์ค๋ณต๋๋ณด์ฌ์ ๋๊ฒจ๋ ๋๊ณ or Service ์ฝ๋์์ map์ ์ฌ์ฉํด ๋ณํํด๋ ๊ด์ฐฎ์ ๋ฏํด์!
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.
ํด๋น ๋ถ๋ถ๋ DATE_FORMATTER๋๊ฒจ์ค์ ์ค๋ณต ์ค์ด๋ ๊ฑฐ ์ข์ ๊ฒ ๊ฐ์ต๋๋ค!
public List<MissionRecord> findByMemberId(Long memberId, Pageable pageable) { | ||
return queryFactory | ||
.selectFrom(missionRecord) | ||
.where(missionRecord.member.id.eq(memberId)) |
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.
missionRecord.member.id.eq(memberId) ๊ฐ์ ๊ฒฝ์ฐ ๋ณ๋ ๋ฉ์๋ ๋ถ๋ฆฌํด๋ ์ข์ ๊ฑฐ ๊ฐ์์ฉ๐
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.
์์ ๊ฐ์ ๋ฉ์๋๋ ๋์ค์๋ ๋ฐ๋ณตํด์ ์ฌ์ฉํ ๊น๋ด ๊ทธ๋ฐ๊ฑธ๊น์?
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.
๋ต ๋ง์ต๋๋ค!
memberIdEq(memberId) ์ด๋ฐ ์์ผ๋ก ์๊ฐํ์ด์ฉ
private final JPAQueryFactory queryFactory; | ||
|
||
@Override | ||
public List<MissionRecord> findByMemberId(Long memberId, Pageable pageable) { |
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.
findByMemberId์ ๋ฉ์๋ ๋ค์ด๋ฐ ๊ฐ์ ๊ฒฝ์ฐ Pageable ์ธ์๋ฅผ ๋ฐ๋๋ค๋ ๋๋์ ์๋ ๊ฑฐ ๊ฐ์์ฉ
๋ค์ด๋ฐ์ ๋ฐ๊ฟ๋ณด๋ ๊ฑด ์ด๋ค๊ฐ์?!
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.
๋ต ์ข์ ๊ฒ ๊ฐ์์ withPagination์ด๋ผ๋ ๋จ์ด๋ฅผ ๋ฃ์ด Pageable ์ธ์๋ฅผ ๋ฐ๋๋ฏํ ๋๋์ ์ถ๊ฐํ๊ฒ ์ต๋๋ค.
public static MissionRecordCalendarResponse from( | ||
List<MissionRecordCalendarDto> list, String nextCursor) { | ||
Map<String, List<MissionRecordCalendarDto>> data = Collections.singletonMap("list", list); | ||
return new MissionRecordCalendarResponse(data, nextCursor); | ||
} | ||
} |
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.
ํด๋น ๋ด์ฉ์ ์ด๋ฏธ data Object๋ก ๊ฐ์ธ์ ธ์ response ๋ ํ
๋ฐ ํ๋ฒ ๋ data๋ก ๋ฌถ๋ ์ด์ ๊ฐ ์์๊น์ฉ??
ํ๋ก ํธ์์๋ data.data.list๋ก ์ด๋ ๊ฒ ๋ณด์ฌ์ง ๋ฏํ๋ฐ์ฉ
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.
์ ์ด๋ถ๋ถ์ ์ ๊ฐ ํท๊ฐ๋ ธ๋ค์ data๋ก ๋ฌถ๋๊ฑฐ ์ ์ธํ๊ณ ๋ค์ ์ปค๋ฐํ๊ฒ ์ต๋๋ค!
} | ||
|
||
MissionRecord lastRecord = records.get(records.size() - 1); | ||
LocalDate nextCursorDate = lastRecord.getCreatedAt().toLocalDate().plusDays(1); |
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.
(์๊ฒฌ) ํ๋ ์ฐ๋ ค๊ฐ ๋๋ ์ ์ ์ฌ๊ธฐ์ plus 1์ ํ๊ฒ ๋๋ฉด
์๋ฅผ ๋ค์ด,
- 20240101
- 20240102
- 20240103
- 20240104
- 20240105
์ด๋ ๊ฒ 5๊ฐ์ ๋ ์ง๊ฐ ์๋ค๊ณ ๊ฐ์ ํ๋ฉด
์์ฒญ์ cursor = null, limit = 2 ๋ก ํ๋ฉด
missions = [
20240101,
20240102,
],
nextCursor = 20240103
์ด๋ ๊ฒ ๋ ํ ๋ฐ
๊ทธ ๋ค์ ์์ฒญ ๋ 20240103์ผ๋ก ๋ณด๋ด๋ฉด
CreatedAtAfter ๊ฐ 20240103 ์ดํ๋๊น 20240104, 20240105 ์ด๋ฐ ์์ผ๋ก ์ฌ ๊ฒ ๊ฐ์์ 20240103 ์ ๋๋ฝ๋ ์๋ ์์ ๊ฒ ๊ฐ์๋ฐ ...
๋ญ๊ฐ ์ ๊ฐ ์ ๋ฒ์ ์ค๋ช
ํ์ ๋ +1์ผ๋ก ํ์ ์ด๋ฌ๋ ๊ฒ ๊ฐ์๋ฐ
์๊ฐํด๋ณด๋๊น nextCursorDate๋ plus๊ฐ ์๋ ๊ฒ ์ข์ง ์์๊น ์๊ฐ์ด ๋๋ค์ฉ
๊ทผ๋ฐ ์ญ์ ์ ๊ฐ ์ฝ๋์ ๋ํ ์ดํด๊ฐ ๋ถ์กฑํด์ ํ๋ฆด ์๋ ์์ด์ ๊ทธ๋ฅ ์๊ฒฌ ์ ๋๋ก๋ง ์๊ฐํด์ฃผ์ธ์ ใ ใ
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.
์ค ์ข์ ์๊ฒฌ ๊ณ ๋ง์ CreatedAtAfter๋์ CreatedAtFrom์ผ๋ก ํฌํจํด์ ๋ณด๋ด์ฃผ๋ ๊ฑธ๋ก ๋ฐ๊ฟ๊ฒ!!
Quality Gate passedIssues Measures |
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.
LGTM โ
* chore: ํ๋ก์ ํธ ์ธํ (#2) * chore: issue, pr ํ ํ๋ฆฟ ์์ฑ * chore: CODEOWNERS ์์ฑ * chore: editorconfig ์์ฑ * chore: chore ์ด์ ํ ํ๋ฆฟ about ๋ด์ฉ ์์ * chore: develop PR on check workflow ์์ฑ (#7) * chore: develop PR on check workflow ์์ฑ * fix: jdk zulu๋ก ๋ณ๊ฒฝ * chore: slack webhook Test * chore: slack webhook Test * chore: slack webhook Test * chore: cache-read-only false ์ต์ * chore: Spring Actuator ๊ตฌ์ฑ (#8) * chore: domain ๊ตฌ์กฐ ์ํคํ ์ฒ ๊ตฌ์ฑ (#12) * chore: domain ๊ตฌ์กฐ ์ํคํ ์ฒ ๊ตฌ์ฑ * chore: global.config ์ถ๊ฐ * chore: SwaggerConfig ์์ฑ (#14) * chore: SwaggerConfig ์์ฑ * fix: Api path versioning ์ ๊ฑฐ ๋ฐ SwaggerConfig ์์ * fix: ์์ ์ปจ๋ฒค์ ์์ * [WALWAL-104] Spotless ๊ตฌ์ฑ (#19) * chore: pre-commit, spotless ๊ตฌ์ฑ * chore: pre-commit ์คํ ๋ชจ๋ ์ถ๊ฐ * fix: spotlessApply * chore: googleJavaFormat aosp * chore: googleJavaFormat aosp * fix: spotlessApply * fix: spotlessApply version test * fix: spotlessApply * [WALWAL-84] jacoco ์ธํ ์ถ๊ฐ (#16) * chore: jacoco ์ธํ ์ถ๊ฐ * chore: config, resources, QDomains ์ปค๋ฒ๋ฆฌ์ง ์ ์ธ ๋ฐ reports ์ปค์คํ ๊ฒฝ๋ก ์ธํ * feat: BaseTimeEntity ์ถ๊ฐ (#22) * [WALWAL-88] ํ์ ์ํฐํฐ ๊ตฌ์ฑ (#26) * [WALWAL-108] Querydsl ํ๊ฒฝ ๊ตฌ์ฑ (#25) * chore: querydsl config ์ถ๊ฐ * chore: openfeign Querydsl ์์กด์ฑ ๋ณ๊ฒฝ * fix: spotlessApply * fix: spotlessApply * fix: spotlessApply * [WALWAL-114] record -> class ๋ณ๊ฒฝ (#30) * fix: record -> class ๋ณ๊ฒฝ * fix: profileImageUrl getter ์ญ์ * feat: Schema Swagger ํ๋กํผํฐ * [WALWAL-109] GlobalResponse๋ฅผ ์ํ RestControllerAdvice ์ธํ (#23) * chore: GlobalResponse๋ฅผ ์ํ RestControllerAdvice ์ธํ * fix: Response ํ์ ๋ณ๊ฒฝ ๋ฐ ResponseEntityExceptionHandler ์์ * fix: status์ํ์ ๋ฐ๋ฅธ sucess, fail ์๋ต์ฒ๋ฆฌ * fix: ApiResponse recordํ์์ผ๋ก ์์ * chore: develop ๋ธ๋์น ๋จธ์ง ๋ฐ spotless์ ์ฉ * fix: ์ธํ ๋ฆฌ์ ์ด ์๋import์ ๊ฑฐ์ค์ ๋ณ๊ฒฝ * fix: ์์ฑ์ ๋์ RequiredArgsConstructor ์ด๋ ธํ ์ด์ ํต์ผ * [WALWAL-115] ๋ฏธ์ ์ํฐํฐ ๊ตฌํ (#32) feature: ๋ฏธ์ ์ํฐํฐ ๊ตฌํ * [WALWAL-106] fixtureMonkey ๋์ (#28) * chore: fixtureMonkey ๋์ * fix: order items ๊ฐฏ์ ์ ํ ์์ * chore: redis ํ๊ฒฝ ๊ตฌ์ฑ (#37) * [WALWAL-113] SecurityConfig ๋ฐ ์ ํธ๋ฆฌํฐ ๊ตฌํ (#35) * chore: security ๊ตฌ์ฑ * fix: CookieCsrfTokenRepository ํ์ฑํ * chore: csrf ์ต์ ์์ ์ญ์ * fix: SwaggerUrlConstants ์์ * [WALWAL-116] ๋ฏธ์ ๊ธฐ๋ก ์ํฐํฐ ๊ตฌํ (#34) * feature: ๋ฏธ์ ๊ธฐ๋ก ์ํฐํฐ ๊ตฌํ * fix: Record -> MissionRecord๋ก ํด๋์ค๋ช ์์ * fix: mission_title ๋์ proxy๊ฐ์ฒด๋ฅผ ํตํด์ title๊ฐ์ ธ์ค๊ธฐ * [WALWAL-110] elastic beanstalk dev ์๋ฒ workflow ์์ฑ (#38) * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow 1์ฐจ ์์ฑ * fix: current time ์ญ์ * fix: job name ์์ * fix: docker compose ๋ฐ env ํ์ผ ํจํค์ง ํญ๋ชฉ ์ญ์ * hotfix: Elastic BeanStalk ๋ฐฐํฌ version Label (#41) * [WALWAL-132] application yml ๋ถ๋ฆฌ (#42) * chore: mysql ๊ตฌ์ฑ ๋ฐ yml ๋ถ๋ฆฌ * chore: s3 property ์ถ๊ฐ * [WALWAL-135] missionrecord crud ๊ตฌํ (#46) * feature: ๋ฏธ์ ๊ธฐ๋ก ์์ฑ ๊ตฌํ * fix: record response์Title์ถ๊ฐ * fix: pathvariable ์ ๊ฑฐ * feature: ๋ฏธ์ ๊ธฐ๋ก ์ญ์ ๊ตฌํ * fix: ApiResponse์ ์ฉ * fix: @tag์ด๋ ธํ ์ด์ ์ถ๊ฐ ๋ฐ ์ปจํธ๋กค๋ฌ๋ฐํ๊ฐ ์์ * refactor: ๋จ์ผ ๋ฏธ์ ์กฐํ ๋ฉ์๋ ๋ถ๋ฆฌ * [WALWAL-138]: mission crud ๊ตฌํ (#45) * feature: mission crud ๊ตฌํ * fix: review resolve * fix: id ๋ค์ด๋ฐ ์์ ๋ฐ ์๋น์ค ์๋ต ํด๋์ค ๋ณ๊ฒฝ * [WALWAL-142] EB docker-compose ๊ตฌ์ฑ (#50) * chore: docker-compose ํ ์คํธ * chore: docker-compose aws json ํ ์คํธ * chore: EB deploy envs ์ญ์ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ ๋ฐ ํ ์คํธ ์ผ์ด์ค ์์ * fix: version lavel ์์ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json v3 ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json v3 ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * chore: ์ฌ๋ ๋ด ํ ์คํธ ๋ฐ compose port ์ค์ * chore: docker compose ports ํ ์คํธ * chore: docker compose ports ํ ์คํธ * chore: nginx test * chore: nginx test * chore: nginx test * chore: Dockerrun.aws.json ํ ์คํธ * chore: Dockerrun.aws.json ํ ์คํธ * chore: docker compose ํ ์คํธ * fix: nginx volumes endpoint * fix: nginx conf workflow ์ญ์ ํ ์คํธ * fix: bucket ์ ๋ก๋ ์ญ์ ํ ์คํธ * fix: version-label ํ์ฌ ์๊ฐ versioning * fix: bucket ์ ๋ก๋ ์๋ณต * fix: nginx conf workflow ์๋ณต ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: Dockerrun json ์ญ์ * [WALWAL-81] ์ ํ ๋ก๊ทธ์ธ ๊ตฌํ (#47) * feat: RefreshToken ๋ฐ DTO ์ ์ * feat: apple server ํต์ * feat: Apple ๋ก๊ทธ์ธ ๋ฐ ํ์๊ฐ์ * fix: ๋ด ์ ๋ณด ์กฐํ API ์์ * refactor: ๋ก๊ทธ์ธ ๋ก์ง ๋ถ๋ฆฌ * feat: ๋ก์ง ๊ฐ์ * chore: securityConfig auth ์๋ํฌ์ธํธ ์ถ๊ฐ * fix: conflict ํด๊ฒฐ * refactor: Apple ๋ก๊ทธ์ธ ๋ฆฌํฉํ ๋ง * refactor: Apple ๋ก๊ทธ์ธ ๋ฆฌํฉํ ๋ง ๋ฐ ๋ง์ผํ ๋์ ์ฌ๋ถ ์ปฌ๋ผ ์ถ๊ฐ * feat: swagger default ์ ์ ๋ฐ security JWT Filter ์ ์ฉ * fix: csrf ์ด์ * fix: csrf ์ด์ * refactor: Service ๋ก์ง ์ฝ๋ ๋ถ๋ฆฌ * fix: User fixtureMonkey PersonName ์์ * fix: Swagger ์์ * refactor: ๋ฏธ์ฌ์ฉ DTO ๋ฐ ๋ค์ด๋ฐ ์์ * refactor: ๋ค์ด๋ฐ ์์ ๋ฐ println ์ญ์ * fix: yml include ์ถ๊ฐ * chore: env sample ํ๋กํผํฐ ์ถ๊ฐ * fix: Apple Error Code ์ ์ * fix: ํ์๊ฐ์ ๋ก์ง ์์ ๋ฐ ํ ํฐ ๋ก์ง ์์ * fix: socialLogin ๋ฉ์๋ orElseGet ์์ * refactor: RefreshToken ์์ฑ ๋ก์ง ์ค๋ณต * fix: ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * fix: Apple PrivateKey ๋ง๋ฃ ์๊ฐ 5๋ถ ์ค์ * refactor: apple Private Key ์ฑ๊ธํค ํจํด * refactor: apple Private Key ์ฑ๊ธํค ํจํด์ผ๋ก ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * refactor: ๋ณ์ ์์ํ * [WALWAL-148] Dev, Prod ํ๊ฒฝ ๋ถ๋ฆฌ (#56) * feat: Environment ํ๊ฒฝ ๋ถ๋ฆฌ * test: dev profile swagger permitAll * fix: fixtureMokey ์์ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: fixtureMokey ์์ * test: dev profile swagger permitAll * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: profile ์์ธ ๋ฉ์ธ์ง * [WALWAL-145] missionrecord calendarview (#52) * [WALWAL-122] ์ด๋ฏธ์ง ์ ๋ก๋ ๊ธฐ๋ฅ (#58) * feat: Image ๋๋ฉ์ธ ๋ฐ DTO ์ ์ * feat: aws ์์กด์ฑ ์ถ๊ฐ ๋ฐ Image Controller, Service ์ถ๊ฐ * fix: image ๋ก์ง ์์ ์ปค๋ฐ * [WALWAL-148] Dev, Prod ํ๊ฒฝ ๋ถ๋ฆฌ (#56) * feat: Environment ํ๊ฒฝ ๋ถ๋ฆฌ * test: dev profile swagger permitAll * fix: fixtureMokey ์์ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: fixtureMokey ์์ * test: dev profile swagger permitAll * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: profile ์์ธ ๋ฉ์ธ์ง * chore: s3 Config ์ถ๊ฐ * feat: Member ์ด๋ฏธ์ง ์ ๋ก๋ ๊ธฐ๋ฅ * fix: ์ด๋ฏธ์ง ์ ๋ก๋ ๋ก์ง ์์ * refactor: @dbscks97 ํผ๋๋ฐฑ ๋ฐ์ * refactor: @kwanok ํผ๋๋ฐฑ ๋ฐ์ * fix: MissionCreateRequest test ์ฝ๋ * [WALWAL-152] register Request Body ๋ถํ์ํ ํ๋ ์ญ์ (#62) * fix: register Request Body * fix: ๋ง์ผํ ์์ ๋์์ฌ๋ถ ์ญ์ * [WALWAL-147] ์ค๋์ ๋ฏธ์ API ์ถ๊ฐ (#53) * feat: ์ค๋์ ๋ฏธ์ ์๋ํฌ์ธํธ ์ถ๊ฐ * fix: ์ํ์ด ๋๋ค์ผ๋ก ๋ณด์ํจ์น * fix: ๋ฆฌ๋ทฐ ๋ฐ์, ํ ์คํธ ์ด๋ฆ ์์ , jpa ์ฟผ๋ฆฌ ์์ * fix: ๋ณ์๋ช ์์ missionIds * fix: QueryDSL๋ก ๋ณ๊ฒฝ * fix: QueryDSL ๋ฆฌ๋ทฐ ๋ฐ์ * fix: Error Code ์์ * [WALWAL-153] ๋ฏธ์ n๋ฒ์งธ ์นด์ดํธ ๊ธฐ๋ฅ ์ถ๊ฐ (#64) * feat: ์ํํ ์ด ๋ฏธ์ ๊ธฐ๋ก ์ * fix: ์๋ํฌ์ธํธ ์์ * fix: ๋ฉ์๋ ๋ช * [WALWAL-150] missionrecord imageupload ๊ธฐ๋ฅ ๊ตฌํ (#66) * feature: ๋ฏธ์ ์ฐธ์ฌ API๊ตฌํ * feature: ๋ฏธ์ ํญ ์ํ ์กฐํ API ๊ตฌํ * feature: ์๋ฃ๋ ๋ฏธ์ ์ด๋ฏธ์ง์ ๊ณต API ๊ตฌํ * feature: ๋ฏธ์ ๊ธฐ๋ก ์ ๋ก๋ ๋ฐ ์ ์ฅ, ํ ์คํธ ์ฝ๋ ์์ฑ * fix: PR ์์ ์ฌํญ ๋ฐ์ * fix: ์์ฐ๋ Response ๋ฐ ์คํค๋ง ์์ * refactor: ๋ฏธ์ ํญ ์กฐํ ์ ์ด๋ฏธ์ง๋ฐ์ดํฐ ํฌํจ * fix: ์ด๋ฏธ์งURL ์ ์ฅ๋ก์ง ์์ * fix: application.yml ์์ * fix: Testํ๋กํ์ผ ์ค์ * refactor: ๋ฏธ์ ๊ธฐ๋ก Response์ recordId์ถ๊ฐ ๋ฐ ์ด๋ฏธ์งurl์์ * [WALWAL-151] ๋ฐ์ผ๋ฆฌ๋ฏธ์ ์ผ๋ฌ์คํธ, ์ปฌ๋ฌ๊ฐ ์ถ๊ฐ (#71) * feature: ๋ฐ์ผ๋ฆฌ๋ฏธ์ ์ผ๋ฌ์คํธ, ์ปฌ๋ฌ๊ฐ ์ถ๊ฐ * fix: MissionControllertest์ฝ๋ ์์ * [WALWAL-155] ์นด์นด์ค ๋ก๊ทธ์ธ/ํ์๊ฐ์ ๊ตฌํ (#68) * feat: ์นด์นด์ค ๋ก๊ทธ์ธ/ํ์๊ฐ์ * fix: println ์ญ์ * fix: ์์ ํ ํฐ ์ฌ๋ถ ํ๋ณ (#74) * [WALWAL-163] ๋ฐฐํฌ ํ๊ฒฝ ๋ฉ๋ชจ๋ฆฌ ์ ํ (#77) * [WALWAL-163] ๋ฐฐํฌ ํ๊ฒฝ ๋ฉ๋ชจ๋ฆฌ ์ ํ * fix: memory * [WALWAL-160] ๋ฏธ์ ์์ ์ ๋์์ฑ ๋ฌธ์ ๊ฐ์ (#75) * [WALWAL-157] ํ์ํํด API (#82) * feat: ํ์ํํด API * feat: ํ์ํํด API redis deleteById * chore: ์ฃผ์ * chore: ์ฃผ์ ์ฒ๋ฆฌ ์์ * [WALWAL-154] PROD ์ด์ ์๋ฒ ์ํฌํ๋ก ์์ฑ (#85) * chore: PROD ๋ฐฐํฌ ํ ์คํธ * fix: ๋ณ์ ์ถ๊ฐ * fix: minor tags ํ ์คํธ * fix: minor tags ํ ์คํธ * fix: minor tags ํ ์คํธ * fix: workflow version --------- Co-authored-by: Park Yun Chan <dbscks9793@gmail.com> Co-authored-by: kwanok noh <61671343+kwanok@users.noreply.github.com>
* chore: ํ๋ก์ ํธ ์ธํ (#2) * chore: issue, pr ํ ํ๋ฆฟ ์์ฑ * chore: CODEOWNERS ์์ฑ * chore: editorconfig ์์ฑ * chore: chore ์ด์ ํ ํ๋ฆฟ about ๋ด์ฉ ์์ * chore: develop PR on check workflow ์์ฑ (#7) * chore: develop PR on check workflow ์์ฑ * fix: jdk zulu๋ก ๋ณ๊ฒฝ * chore: slack webhook Test * chore: slack webhook Test * chore: slack webhook Test * chore: cache-read-only false ์ต์ * chore: Spring Actuator ๊ตฌ์ฑ (#8) * chore: domain ๊ตฌ์กฐ ์ํคํ ์ฒ ๊ตฌ์ฑ (#12) * chore: domain ๊ตฌ์กฐ ์ํคํ ์ฒ ๊ตฌ์ฑ * chore: global.config ์ถ๊ฐ * chore: SwaggerConfig ์์ฑ (#14) * chore: SwaggerConfig ์์ฑ * fix: Api path versioning ์ ๊ฑฐ ๋ฐ SwaggerConfig ์์ * fix: ์์ ์ปจ๋ฒค์ ์์ * [WALWAL-104] Spotless ๊ตฌ์ฑ (#19) * chore: pre-commit, spotless ๊ตฌ์ฑ * chore: pre-commit ์คํ ๋ชจ๋ ์ถ๊ฐ * fix: spotlessApply * chore: googleJavaFormat aosp * chore: googleJavaFormat aosp * fix: spotlessApply * fix: spotlessApply version test * fix: spotlessApply * [WALWAL-84] jacoco ์ธํ ์ถ๊ฐ (#16) * chore: jacoco ์ธํ ์ถ๊ฐ * chore: config, resources, QDomains ์ปค๋ฒ๋ฆฌ์ง ์ ์ธ ๋ฐ reports ์ปค์คํ ๊ฒฝ๋ก ์ธํ * feat: BaseTimeEntity ์ถ๊ฐ (#22) * [WALWAL-88] ํ์ ์ํฐํฐ ๊ตฌ์ฑ (#26) * [WALWAL-108] Querydsl ํ๊ฒฝ ๊ตฌ์ฑ (#25) * chore: querydsl config ์ถ๊ฐ * chore: openfeign Querydsl ์์กด์ฑ ๋ณ๊ฒฝ * fix: spotlessApply * fix: spotlessApply * fix: spotlessApply * [WALWAL-114] record -> class ๋ณ๊ฒฝ (#30) * fix: record -> class ๋ณ๊ฒฝ * fix: profileImageUrl getter ์ญ์ * feat: Schema Swagger ํ๋กํผํฐ * [WALWAL-109] GlobalResponse๋ฅผ ์ํ RestControllerAdvice ์ธํ (#23) * chore: GlobalResponse๋ฅผ ์ํ RestControllerAdvice ์ธํ * fix: Response ํ์ ๋ณ๊ฒฝ ๋ฐ ResponseEntityExceptionHandler ์์ * fix: status์ํ์ ๋ฐ๋ฅธ sucess, fail ์๋ต์ฒ๋ฆฌ * fix: ApiResponse recordํ์์ผ๋ก ์์ * chore: develop ๋ธ๋์น ๋จธ์ง ๋ฐ spotless์ ์ฉ * fix: ์ธํ ๋ฆฌ์ ์ด ์๋import์ ๊ฑฐ์ค์ ๋ณ๊ฒฝ * fix: ์์ฑ์ ๋์ RequiredArgsConstructor ์ด๋ ธํ ์ด์ ํต์ผ * [WALWAL-115] ๋ฏธ์ ์ํฐํฐ ๊ตฌํ (#32) feature: ๋ฏธ์ ์ํฐํฐ ๊ตฌํ * [WALWAL-106] fixtureMonkey ๋์ (#28) * chore: fixtureMonkey ๋์ * fix: order items ๊ฐฏ์ ์ ํ ์์ * chore: redis ํ๊ฒฝ ๊ตฌ์ฑ (#37) * [WALWAL-113] SecurityConfig ๋ฐ ์ ํธ๋ฆฌํฐ ๊ตฌํ (#35) * chore: security ๊ตฌ์ฑ * fix: CookieCsrfTokenRepository ํ์ฑํ * chore: csrf ์ต์ ์์ ์ญ์ * fix: SwaggerUrlConstants ์์ * [WALWAL-116] ๋ฏธ์ ๊ธฐ๋ก ์ํฐํฐ ๊ตฌํ (#34) * feature: ๋ฏธ์ ๊ธฐ๋ก ์ํฐํฐ ๊ตฌํ * fix: Record -> MissionRecord๋ก ํด๋์ค๋ช ์์ * fix: mission_title ๋์ proxy๊ฐ์ฒด๋ฅผ ํตํด์ title๊ฐ์ ธ์ค๊ธฐ * [WALWAL-110] elastic beanstalk dev ์๋ฒ workflow ์์ฑ (#38) * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow 1์ฐจ ์์ฑ * fix: current time ์ญ์ * fix: job name ์์ * fix: docker compose ๋ฐ env ํ์ผ ํจํค์ง ํญ๋ชฉ ์ญ์ * hotfix: Elastic BeanStalk ๋ฐฐํฌ version Label (#41) * [WALWAL-132] application yml ๋ถ๋ฆฌ (#42) * chore: mysql ๊ตฌ์ฑ ๋ฐ yml ๋ถ๋ฆฌ * chore: s3 property ์ถ๊ฐ * [WALWAL-135] missionrecord crud ๊ตฌํ (#46) * feature: ๋ฏธ์ ๊ธฐ๋ก ์์ฑ ๊ตฌํ * fix: record response์Title์ถ๊ฐ * fix: pathvariable ์ ๊ฑฐ * feature: ๋ฏธ์ ๊ธฐ๋ก ์ญ์ ๊ตฌํ * fix: ApiResponse์ ์ฉ * fix: @tag์ด๋ ธํ ์ด์ ์ถ๊ฐ ๋ฐ ์ปจํธ๋กค๋ฌ๋ฐํ๊ฐ ์์ * refactor: ๋จ์ผ ๋ฏธ์ ์กฐํ ๋ฉ์๋ ๋ถ๋ฆฌ * [WALWAL-138]: mission crud ๊ตฌํ (#45) * feature: mission crud ๊ตฌํ * fix: review resolve * fix: id ๋ค์ด๋ฐ ์์ ๋ฐ ์๋น์ค ์๋ต ํด๋์ค ๋ณ๊ฒฝ * [WALWAL-142] EB docker-compose ๊ตฌ์ฑ (#50) * chore: docker-compose ํ ์คํธ * chore: docker-compose aws json ํ ์คํธ * chore: EB deploy envs ์ญ์ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ ๋ฐ ํ ์คํธ ์ผ์ด์ค ์์ * fix: version lavel ์์ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json v3 ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json v3 ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * chore: ์ฌ๋ ๋ด ํ ์คํธ ๋ฐ compose port ์ค์ * chore: docker compose ports ํ ์คํธ * chore: docker compose ports ํ ์คํธ * chore: nginx test * chore: nginx test * chore: nginx test * chore: Dockerrun.aws.json ํ ์คํธ * chore: Dockerrun.aws.json ํ ์คํธ * chore: docker compose ํ ์คํธ * fix: nginx volumes endpoint * fix: nginx conf workflow ์ญ์ ํ ์คํธ * fix: bucket ์ ๋ก๋ ์ญ์ ํ ์คํธ * fix: version-label ํ์ฌ ์๊ฐ versioning * fix: bucket ์ ๋ก๋ ์๋ณต * fix: nginx conf workflow ์๋ณต ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: Dockerrun json ์ญ์ * [WALWAL-81] ์ ํ ๋ก๊ทธ์ธ ๊ตฌํ (#47) * feat: RefreshToken ๋ฐ DTO ์ ์ * feat: apple server ํต์ * feat: Apple ๋ก๊ทธ์ธ ๋ฐ ํ์๊ฐ์ * fix: ๋ด ์ ๋ณด ์กฐํ API ์์ * refactor: ๋ก๊ทธ์ธ ๋ก์ง ๋ถ๋ฆฌ * feat: ๋ก์ง ๊ฐ์ * chore: securityConfig auth ์๋ํฌ์ธํธ ์ถ๊ฐ * fix: conflict ํด๊ฒฐ * refactor: Apple ๋ก๊ทธ์ธ ๋ฆฌํฉํ ๋ง * refactor: Apple ๋ก๊ทธ์ธ ๋ฆฌํฉํ ๋ง ๋ฐ ๋ง์ผํ ๋์ ์ฌ๋ถ ์ปฌ๋ผ ์ถ๊ฐ * feat: swagger default ์ ์ ๋ฐ security JWT Filter ์ ์ฉ * fix: csrf ์ด์ * fix: csrf ์ด์ * refactor: Service ๋ก์ง ์ฝ๋ ๋ถ๋ฆฌ * fix: User fixtureMonkey PersonName ์์ * fix: Swagger ์์ * refactor: ๋ฏธ์ฌ์ฉ DTO ๋ฐ ๋ค์ด๋ฐ ์์ * refactor: ๋ค์ด๋ฐ ์์ ๋ฐ println ์ญ์ * fix: yml include ์ถ๊ฐ * chore: env sample ํ๋กํผํฐ ์ถ๊ฐ * fix: Apple Error Code ์ ์ * fix: ํ์๊ฐ์ ๋ก์ง ์์ ๋ฐ ํ ํฐ ๋ก์ง ์์ * fix: socialLogin ๋ฉ์๋ orElseGet ์์ * refactor: RefreshToken ์์ฑ ๋ก์ง ์ค๋ณต * fix: ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * fix: Apple PrivateKey ๋ง๋ฃ ์๊ฐ 5๋ถ ์ค์ * refactor: apple Private Key ์ฑ๊ธํค ํจํด * refactor: apple Private Key ์ฑ๊ธํค ํจํด์ผ๋ก ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * refactor: ๋ณ์ ์์ํ * [WALWAL-148] Dev, Prod ํ๊ฒฝ ๋ถ๋ฆฌ (#56) * feat: Environment ํ๊ฒฝ ๋ถ๋ฆฌ * test: dev profile swagger permitAll * fix: fixtureMokey ์์ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: fixtureMokey ์์ * test: dev profile swagger permitAll * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: profile ์์ธ ๋ฉ์ธ์ง * [WALWAL-145] missionrecord calendarview (#52) * [WALWAL-122] ์ด๋ฏธ์ง ์ ๋ก๋ ๊ธฐ๋ฅ (#58) * feat: Image ๋๋ฉ์ธ ๋ฐ DTO ์ ์ * feat: aws ์์กด์ฑ ์ถ๊ฐ ๋ฐ Image Controller, Service ์ถ๊ฐ * fix: image ๋ก์ง ์์ ์ปค๋ฐ * [WALWAL-148] Dev, Prod ํ๊ฒฝ ๋ถ๋ฆฌ (#56) * feat: Environment ํ๊ฒฝ ๋ถ๋ฆฌ * test: dev profile swagger permitAll * fix: fixtureMokey ์์ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: fixtureMokey ์์ * test: dev profile swagger permitAll * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: profile ์์ธ ๋ฉ์ธ์ง * chore: s3 Config ์ถ๊ฐ * feat: Member ์ด๋ฏธ์ง ์ ๋ก๋ ๊ธฐ๋ฅ * fix: ์ด๋ฏธ์ง ์ ๋ก๋ ๋ก์ง ์์ * refactor: @dbscks97 ํผ๋๋ฐฑ ๋ฐ์ * refactor: @kwanok ํผ๋๋ฐฑ ๋ฐ์ * fix: MissionCreateRequest test ์ฝ๋ * [WALWAL-152] register Request Body ๋ถํ์ํ ํ๋ ์ญ์ (#62) * fix: register Request Body * fix: ๋ง์ผํ ์์ ๋์์ฌ๋ถ ์ญ์ * [WALWAL-147] ์ค๋์ ๋ฏธ์ API ์ถ๊ฐ (#53) * feat: ์ค๋์ ๋ฏธ์ ์๋ํฌ์ธํธ ์ถ๊ฐ * fix: ์ํ์ด ๋๋ค์ผ๋ก ๋ณด์ํจ์น * fix: ๋ฆฌ๋ทฐ ๋ฐ์, ํ ์คํธ ์ด๋ฆ ์์ , jpa ์ฟผ๋ฆฌ ์์ * fix: ๋ณ์๋ช ์์ missionIds * fix: QueryDSL๋ก ๋ณ๊ฒฝ * fix: QueryDSL ๋ฆฌ๋ทฐ ๋ฐ์ * fix: Error Code ์์ * [WALWAL-153] ๋ฏธ์ n๋ฒ์งธ ์นด์ดํธ ๊ธฐ๋ฅ ์ถ๊ฐ (#64) * feat: ์ํํ ์ด ๋ฏธ์ ๊ธฐ๋ก ์ * fix: ์๋ํฌ์ธํธ ์์ * fix: ๋ฉ์๋ ๋ช * [WALWAL-150] missionrecord imageupload ๊ธฐ๋ฅ ๊ตฌํ (#66) * feature: ๋ฏธ์ ์ฐธ์ฌ API๊ตฌํ * feature: ๋ฏธ์ ํญ ์ํ ์กฐํ API ๊ตฌํ * feature: ์๋ฃ๋ ๋ฏธ์ ์ด๋ฏธ์ง์ ๊ณต API ๊ตฌํ * feature: ๋ฏธ์ ๊ธฐ๋ก ์ ๋ก๋ ๋ฐ ์ ์ฅ, ํ ์คํธ ์ฝ๋ ์์ฑ * fix: PR ์์ ์ฌํญ ๋ฐ์ * fix: ์์ฐ๋ Response ๋ฐ ์คํค๋ง ์์ * refactor: ๋ฏธ์ ํญ ์กฐํ ์ ์ด๋ฏธ์ง๋ฐ์ดํฐ ํฌํจ * fix: ์ด๋ฏธ์งURL ์ ์ฅ๋ก์ง ์์ * fix: application.yml ์์ * fix: Testํ๋กํ์ผ ์ค์ * refactor: ๋ฏธ์ ๊ธฐ๋ก Response์ recordId์ถ๊ฐ ๋ฐ ์ด๋ฏธ์งurl์์ * [WALWAL-151] ๋ฐ์ผ๋ฆฌ๋ฏธ์ ์ผ๋ฌ์คํธ, ์ปฌ๋ฌ๊ฐ ์ถ๊ฐ (#71) * feature: ๋ฐ์ผ๋ฆฌ๋ฏธ์ ์ผ๋ฌ์คํธ, ์ปฌ๋ฌ๊ฐ ์ถ๊ฐ * fix: MissionControllertest์ฝ๋ ์์ * [WALWAL-155] ์นด์นด์ค ๋ก๊ทธ์ธ/ํ์๊ฐ์ ๊ตฌํ (#68) * feat: ์นด์นด์ค ๋ก๊ทธ์ธ/ํ์๊ฐ์ * fix: println ์ญ์ * fix: ์์ ํ ํฐ ์ฌ๋ถ ํ๋ณ (#74) * [WALWAL-163] ๋ฐฐํฌ ํ๊ฒฝ ๋ฉ๋ชจ๋ฆฌ ์ ํ (#77) * [WALWAL-163] ๋ฐฐํฌ ํ๊ฒฝ ๋ฉ๋ชจ๋ฆฌ ์ ํ * fix: memory * [WALWAL-160] ๋ฏธ์ ์์ ์ ๋์์ฑ ๋ฌธ์ ๊ฐ์ (#75) * [WALWAL-157] ํ์ํํด API (#82) * feat: ํ์ํํด API * feat: ํ์ํํด API redis deleteById * chore: ์ฃผ์ * chore: ์ฃผ์ ์ฒ๋ฆฌ ์์ * [WALWAL-154] PROD ์ด์ ์๋ฒ ์ํฌํ๋ก ์์ฑ (#85) * chore: PROD ๋ฐฐํฌ ํ ์คํธ * fix: ๋ณ์ ์ถ๊ฐ * fix: minor tags ํ ์คํธ * fix: minor tags ํ ์คํธ * fix: minor tags ํ ์คํธ * fix: workflow version * hotfix: EC2 ๋์ปค ๋จ์ผ ์ธ์คํด์ค ๋ฐฐํฌ (#90) * fix: docker deploy platform ์์ * fix: docker deploy platform ์์ * fix: ํ์ผ copy test * fix: ํ์ผ copy test * fix: ํ์ผ copy test * fix: ec2-user ๋ฐฐํฌ ํ ์คํธ * fix: ec2-user ๋ฐฐํฌ ํ ์คํธ * fix: run script ์ญ์ * fix: ec2-user ํ ์คํธ * fix: ec2-user ํ ์คํธ * fix: ec2-user ํ ์คํธ * fix: versioning ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * refactor: dev ec2 docker-compose deploy workflow * fix: docker compose image, container ์์ * feat: push branchs develop์ผ๋ก ๋ณ๊ฒฝ * [WALWAL-156] ํ๋ก์ฐ ์ถ๊ฐ ๋ฐ ์ทจ์, ์กฐํ ๊ธฐ๋ฅ (#86) * feat: ํ๋ก์ฐ ์ถ๊ฐ, ์ญ์ , ์กฐํ API * test: Follow ํ ์คํธ ์ฝ๋ * fix: SRP ์์น * [WALWAL-164] ๋๋ค์ ๊ฒ์ฆ (#81) * feat: ๋๋ค์ ๊ฒ์ฆ * fix: null ์ฒดํฌ๋ง ํ๋๋ก * [WALWAL-167] Mission Response ๋ฐ API PathVariable ์์ (#91) * fix: Mission Response ๋ฐ API PathVariable ์์ * fix: MissionController Test ์์ * [WALWAL-163] ์ค์จ๊ฑฐ ๋ฌธ์ ์ด๋ฆ ์ผ๊ด์ ์ผ๋ก ํฌ๋งคํ (#79) * [WALWAL-163] ์ค์จ๊ฑฐ ๋ฌธ์ ์ด๋ฆ ์ผ๊ด์ ์ผ๋ก ํฌ๋งคํ * fix: ์ค์จ๊ฑฐ ๋ค์ด๋ฐ * test: SecurityUtil ํ ์คํธ ์ฝ๋ ์ถ๊ฐ (#99) * test: RefreshToken ํ ์คํธ (#100) * fix: ์จ๋ณด๋ฉ Default imageUrl ์์ฒญ ํ๋ ์ถ๊ฐ (#101) * fix: Default imageUrl ์ ๋ ฅ * fix: Default imageUrl empty ์ฒดํฌ * [WALWAL-165] FCM ํธ์ ์๋ฆผ ๊ธฐ๋ฅ ๊ตฌํ (#92) * feature: FCM ์๋ฆผ API ์๋น์ค ๊ตฌํ * fix: ์ฑ ์คํ ์ ํ ํฐ ํ์์คํฌํ ๊ฐฑ์ ์์ * fix: FcmResponseErrorType Enum์ผ๋ก ์ ๋ฆฌ * feature: ์์ static ์ ์ธ ๋ฐ secrets ํ๊ฒฝ๋ณ์์ค์ * fix: removeInactiveTokens๋ฉ์๋ ์ค์ผ์ฅด๋ฌ์คํ์๊ฐ ์์ * fix: docker-compose ํ๊ฒฝ๋ณ์ ์์ * fix: ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * fix: fcmSendResponse ์ญ์ * fix: FcmController throw IOException ์ ๊ฑฐ * refactor: scheduled๋ฉ์๋ ์๋น์ค๋ถ๋ฆฌ * fix: FIREBASE_CONFIG workflows์์ * fix: FIREBASE_CONFIG github secrets ์ฌ์ฉ * fix: @EnableScheduling ์ด๋ ธํ ์ด์ ์ถ๊ฐ * fix: docker ํ๊ฒฝ๋ณ์ -> env ์ค์ ์ผ๋ก ๋ณ๊ฒฝ * fix: .env ํ์ผ ๋ฐ fcm.yml ์์ * fix: FIREBASE_CONFIG .env๋ก ์์ * fix: fcm_token ๊ฐ์ฒด ์ญ์ -> soft ์ญ์ ๋ฅผ ํตํด ๋ฐ์ดํฐ ๋ณด์กด * feature: MulticastMessage ๊ตฌํ * fix: env ๋ณ์ ์์ * refactor: Transaction์ฒ๋ฆฌ๋ฅผ์ํ TokenService๋ถ๋ฆฌ * fix: sonarcloud ์ด์ ์์ * fix: Properties ์ ์ฉ * fix: @MockBean์ถ๊ฐ * [WALWAL-168] MissionRecord์ Text๊ฐ ์ถ๊ฐ (#103) * fix: MissionRecord์ Text๊ฐ ์ถ๊ฐ * fix: Test์ฝ๋ mocking์์ ์ถ๊ฐ * [WALWAL-149] Auth, Member ํ ์คํธ ์ฝ๋ ์์ฑ (#93) * test: MemberUtil ํ ์คํธ ์ฝ๋ ์ถ๊ฐ (#98) * test: MemberUtil ํ ์คํธ ์ฝ๋ ์ถ๊ฐ * refactor: MockitoExtension * chore: prod workflow ์์ฑ (#108) --------- Co-authored-by: Park Yun Chan <dbscks9793@gmail.com> Co-authored-by: kwanok noh <61671343+kwanok@users.noreply.github.com>
* chore: ํ๋ก์ ํธ ์ธํ (#2) * chore: issue, pr ํ ํ๋ฆฟ ์์ฑ * chore: CODEOWNERS ์์ฑ * chore: editorconfig ์์ฑ * chore: chore ์ด์ ํ ํ๋ฆฟ about ๋ด์ฉ ์์ * chore: develop PR on check workflow ์์ฑ (#7) * chore: develop PR on check workflow ์์ฑ * fix: jdk zulu๋ก ๋ณ๊ฒฝ * chore: slack webhook Test * chore: slack webhook Test * chore: slack webhook Test * chore: cache-read-only false ์ต์ * chore: Spring Actuator ๊ตฌ์ฑ (#8) * chore: domain ๊ตฌ์กฐ ์ํคํ ์ฒ ๊ตฌ์ฑ (#12) * chore: domain ๊ตฌ์กฐ ์ํคํ ์ฒ ๊ตฌ์ฑ * chore: global.config ์ถ๊ฐ * chore: SwaggerConfig ์์ฑ (#14) * chore: SwaggerConfig ์์ฑ * fix: Api path versioning ์ ๊ฑฐ ๋ฐ SwaggerConfig ์์ * fix: ์์ ์ปจ๋ฒค์ ์์ * [WALWAL-104] Spotless ๊ตฌ์ฑ (#19) * chore: pre-commit, spotless ๊ตฌ์ฑ * chore: pre-commit ์คํ ๋ชจ๋ ์ถ๊ฐ * fix: spotlessApply * chore: googleJavaFormat aosp * chore: googleJavaFormat aosp * fix: spotlessApply * fix: spotlessApply version test * fix: spotlessApply * [WALWAL-84] jacoco ์ธํ ์ถ๊ฐ (#16) * chore: jacoco ์ธํ ์ถ๊ฐ * chore: config, resources, QDomains ์ปค๋ฒ๋ฆฌ์ง ์ ์ธ ๋ฐ reports ์ปค์คํ ๊ฒฝ๋ก ์ธํ * feat: BaseTimeEntity ์ถ๊ฐ (#22) * [WALWAL-88] ํ์ ์ํฐํฐ ๊ตฌ์ฑ (#26) * [WALWAL-108] Querydsl ํ๊ฒฝ ๊ตฌ์ฑ (#25) * chore: querydsl config ์ถ๊ฐ * chore: openfeign Querydsl ์์กด์ฑ ๋ณ๊ฒฝ * fix: spotlessApply * fix: spotlessApply * fix: spotlessApply * [WALWAL-114] record -> class ๋ณ๊ฒฝ (#30) * fix: record -> class ๋ณ๊ฒฝ * fix: profileImageUrl getter ์ญ์ * feat: Schema Swagger ํ๋กํผํฐ * [WALWAL-109] GlobalResponse๋ฅผ ์ํ RestControllerAdvice ์ธํ (#23) * chore: GlobalResponse๋ฅผ ์ํ RestControllerAdvice ์ธํ * fix: Response ํ์ ๋ณ๊ฒฝ ๋ฐ ResponseEntityExceptionHandler ์์ * fix: status์ํ์ ๋ฐ๋ฅธ sucess, fail ์๋ต์ฒ๋ฆฌ * fix: ApiResponse recordํ์์ผ๋ก ์์ * chore: develop ๋ธ๋์น ๋จธ์ง ๋ฐ spotless์ ์ฉ * fix: ์ธํ ๋ฆฌ์ ์ด ์๋import์ ๊ฑฐ์ค์ ๋ณ๊ฒฝ * fix: ์์ฑ์ ๋์ RequiredArgsConstructor ์ด๋ ธํ ์ด์ ํต์ผ * [WALWAL-115] ๋ฏธ์ ์ํฐํฐ ๊ตฌํ (#32) feature: ๋ฏธ์ ์ํฐํฐ ๊ตฌํ * [WALWAL-106] fixtureMonkey ๋์ (#28) * chore: fixtureMonkey ๋์ * fix: order items ๊ฐฏ์ ์ ํ ์์ * chore: redis ํ๊ฒฝ ๊ตฌ์ฑ (#37) * [WALWAL-113] SecurityConfig ๋ฐ ์ ํธ๋ฆฌํฐ ๊ตฌํ (#35) * chore: security ๊ตฌ์ฑ * fix: CookieCsrfTokenRepository ํ์ฑํ * chore: csrf ์ต์ ์์ ์ญ์ * fix: SwaggerUrlConstants ์์ * [WALWAL-116] ๋ฏธ์ ๊ธฐ๋ก ์ํฐํฐ ๊ตฌํ (#34) * feature: ๋ฏธ์ ๊ธฐ๋ก ์ํฐํฐ ๊ตฌํ * fix: Record -> MissionRecord๋ก ํด๋์ค๋ช ์์ * fix: mission_title ๋์ proxy๊ฐ์ฒด๋ฅผ ํตํด์ title๊ฐ์ ธ์ค๊ธฐ * [WALWAL-110] elastic beanstalk dev ์๋ฒ workflow ์์ฑ (#38) * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow test * chore: dev workflow 1์ฐจ ์์ฑ * fix: current time ์ญ์ * fix: job name ์์ * fix: docker compose ๋ฐ env ํ์ผ ํจํค์ง ํญ๋ชฉ ์ญ์ * hotfix: Elastic BeanStalk ๋ฐฐํฌ version Label (#41) * [WALWAL-132] application yml ๋ถ๋ฆฌ (#42) * chore: mysql ๊ตฌ์ฑ ๋ฐ yml ๋ถ๋ฆฌ * chore: s3 property ์ถ๊ฐ * [WALWAL-135] missionrecord crud ๊ตฌํ (#46) * feature: ๋ฏธ์ ๊ธฐ๋ก ์์ฑ ๊ตฌํ * fix: record response์Title์ถ๊ฐ * fix: pathvariable ์ ๊ฑฐ * feature: ๋ฏธ์ ๊ธฐ๋ก ์ญ์ ๊ตฌํ * fix: ApiResponse์ ์ฉ * fix: @tag์ด๋ ธํ ์ด์ ์ถ๊ฐ ๋ฐ ์ปจํธ๋กค๋ฌ๋ฐํ๊ฐ ์์ * refactor: ๋จ์ผ ๋ฏธ์ ์กฐํ ๋ฉ์๋ ๋ถ๋ฆฌ * [WALWAL-138]: mission crud ๊ตฌํ (#45) * feature: mission crud ๊ตฌํ * fix: review resolve * fix: id ๋ค์ด๋ฐ ์์ ๋ฐ ์๋น์ค ์๋ต ํด๋์ค ๋ณ๊ฒฝ * [WALWAL-142] EB docker-compose ๊ตฌ์ฑ (#50) * chore: docker-compose ํ ์คํธ * chore: docker-compose aws json ํ ์คํธ * chore: EB deploy envs ์ญ์ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ ๋ฐ ํ ์คํธ ์ผ์ด์ค ์์ * fix: version lavel ์์ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json v3 ๋ฐฐํฌ ํ ์คํธ * chore: docker-compose aws json v3 ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * fix: docker compose๋ก ๋ฐฐํฌ ํ ์คํธ * chore: ์ฌ๋ ๋ด ํ ์คํธ ๋ฐ compose port ์ค์ * chore: docker compose ports ํ ์คํธ * chore: docker compose ports ํ ์คํธ * chore: nginx test * chore: nginx test * chore: nginx test * chore: Dockerrun.aws.json ํ ์คํธ * chore: Dockerrun.aws.json ํ ์คํธ * chore: docker compose ํ ์คํธ * fix: nginx volumes endpoint * fix: nginx conf workflow ์ญ์ ํ ์คํธ * fix: bucket ์ ๋ก๋ ์ญ์ ํ ์คํธ * fix: version-label ํ์ฌ ์๊ฐ versioning * fix: bucket ์ ๋ก๋ ์๋ณต * fix: nginx conf workflow ์๋ณต ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: Dockerrun json ์ญ์ * [WALWAL-81] ์ ํ ๋ก๊ทธ์ธ ๊ตฌํ (#47) * feat: RefreshToken ๋ฐ DTO ์ ์ * feat: apple server ํต์ * feat: Apple ๋ก๊ทธ์ธ ๋ฐ ํ์๊ฐ์ * fix: ๋ด ์ ๋ณด ์กฐํ API ์์ * refactor: ๋ก๊ทธ์ธ ๋ก์ง ๋ถ๋ฆฌ * feat: ๋ก์ง ๊ฐ์ * chore: securityConfig auth ์๋ํฌ์ธํธ ์ถ๊ฐ * fix: conflict ํด๊ฒฐ * refactor: Apple ๋ก๊ทธ์ธ ๋ฆฌํฉํ ๋ง * refactor: Apple ๋ก๊ทธ์ธ ๋ฆฌํฉํ ๋ง ๋ฐ ๋ง์ผํ ๋์ ์ฌ๋ถ ์ปฌ๋ผ ์ถ๊ฐ * feat: swagger default ์ ์ ๋ฐ security JWT Filter ์ ์ฉ * fix: csrf ์ด์ * fix: csrf ์ด์ * refactor: Service ๋ก์ง ์ฝ๋ ๋ถ๋ฆฌ * fix: User fixtureMonkey PersonName ์์ * fix: Swagger ์์ * refactor: ๋ฏธ์ฌ์ฉ DTO ๋ฐ ๋ค์ด๋ฐ ์์ * refactor: ๋ค์ด๋ฐ ์์ ๋ฐ println ์ญ์ * fix: yml include ์ถ๊ฐ * chore: env sample ํ๋กํผํฐ ์ถ๊ฐ * fix: Apple Error Code ์ ์ * fix: ํ์๊ฐ์ ๋ก์ง ์์ ๋ฐ ํ ํฐ ๋ก์ง ์์ * fix: socialLogin ๋ฉ์๋ orElseGet ์์ * refactor: RefreshToken ์์ฑ ๋ก์ง ์ค๋ณต * fix: ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * fix: Apple PrivateKey ๋ง๋ฃ ์๊ฐ 5๋ถ ์ค์ * refactor: apple Private Key ์ฑ๊ธํค ํจํด * refactor: apple Private Key ์ฑ๊ธํค ํจํด์ผ๋ก ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * refactor: ๋ณ์ ์์ํ * [WALWAL-148] Dev, Prod ํ๊ฒฝ ๋ถ๋ฆฌ (#56) * feat: Environment ํ๊ฒฝ ๋ถ๋ฆฌ * test: dev profile swagger permitAll * fix: fixtureMokey ์์ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: fixtureMokey ์์ * test: dev profile swagger permitAll * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: profile ์์ธ ๋ฉ์ธ์ง * [WALWAL-145] missionrecord calendarview (#52) * [WALWAL-122] ์ด๋ฏธ์ง ์ ๋ก๋ ๊ธฐ๋ฅ (#58) * feat: Image ๋๋ฉ์ธ ๋ฐ DTO ์ ์ * feat: aws ์์กด์ฑ ์ถ๊ฐ ๋ฐ Image Controller, Service ์ถ๊ฐ * fix: image ๋ก์ง ์์ ์ปค๋ฐ * [WALWAL-148] Dev, Prod ํ๊ฒฝ ๋ถ๋ฆฌ (#56) * feat: Environment ํ๊ฒฝ ๋ถ๋ฆฌ * test: dev profile swagger permitAll * fix: fixtureMokey ์์ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: fixtureMokey ์์ * test: dev profile swagger permitAll * refactor: dev ํ๊ฒฝ ๋ฐฐํฌ ํ ์คํธ * fix: push branch develop์ผ๋ก ๋ณ๊ฒฝ * fix: profile ์์ธ ๋ฉ์ธ์ง * chore: s3 Config ์ถ๊ฐ * feat: Member ์ด๋ฏธ์ง ์ ๋ก๋ ๊ธฐ๋ฅ * fix: ์ด๋ฏธ์ง ์ ๋ก๋ ๋ก์ง ์์ * refactor: @dbscks97 ํผ๋๋ฐฑ ๋ฐ์ * refactor: @kwanok ํผ๋๋ฐฑ ๋ฐ์ * fix: MissionCreateRequest test ์ฝ๋ * [WALWAL-152] register Request Body ๋ถํ์ํ ํ๋ ์ญ์ (#62) * fix: register Request Body * fix: ๋ง์ผํ ์์ ๋์์ฌ๋ถ ์ญ์ * [WALWAL-147] ์ค๋์ ๋ฏธ์ API ์ถ๊ฐ (#53) * feat: ์ค๋์ ๋ฏธ์ ์๋ํฌ์ธํธ ์ถ๊ฐ * fix: ์ํ์ด ๋๋ค์ผ๋ก ๋ณด์ํจ์น * fix: ๋ฆฌ๋ทฐ ๋ฐ์, ํ ์คํธ ์ด๋ฆ ์์ , jpa ์ฟผ๋ฆฌ ์์ * fix: ๋ณ์๋ช ์์ missionIds * fix: QueryDSL๋ก ๋ณ๊ฒฝ * fix: QueryDSL ๋ฆฌ๋ทฐ ๋ฐ์ * fix: Error Code ์์ * [WALWAL-153] ๋ฏธ์ n๋ฒ์งธ ์นด์ดํธ ๊ธฐ๋ฅ ์ถ๊ฐ (#64) * feat: ์ํํ ์ด ๋ฏธ์ ๊ธฐ๋ก ์ * fix: ์๋ํฌ์ธํธ ์์ * fix: ๋ฉ์๋ ๋ช * [WALWAL-150] missionrecord imageupload ๊ธฐ๋ฅ ๊ตฌํ (#66) * feature: ๋ฏธ์ ์ฐธ์ฌ API๊ตฌํ * feature: ๋ฏธ์ ํญ ์ํ ์กฐํ API ๊ตฌํ * feature: ์๋ฃ๋ ๋ฏธ์ ์ด๋ฏธ์ง์ ๊ณต API ๊ตฌํ * feature: ๋ฏธ์ ๊ธฐ๋ก ์ ๋ก๋ ๋ฐ ์ ์ฅ, ํ ์คํธ ์ฝ๋ ์์ฑ * fix: PR ์์ ์ฌํญ ๋ฐ์ * fix: ์์ฐ๋ Response ๋ฐ ์คํค๋ง ์์ * refactor: ๋ฏธ์ ํญ ์กฐํ ์ ์ด๋ฏธ์ง๋ฐ์ดํฐ ํฌํจ * fix: ์ด๋ฏธ์งURL ์ ์ฅ๋ก์ง ์์ * fix: application.yml ์์ * fix: Testํ๋กํ์ผ ์ค์ * refactor: ๋ฏธ์ ๊ธฐ๋ก Response์ recordId์ถ๊ฐ ๋ฐ ์ด๋ฏธ์งurl์์ * [WALWAL-151] ๋ฐ์ผ๋ฆฌ๋ฏธ์ ์ผ๋ฌ์คํธ, ์ปฌ๋ฌ๊ฐ ์ถ๊ฐ (#71) * feature: ๋ฐ์ผ๋ฆฌ๋ฏธ์ ์ผ๋ฌ์คํธ, ์ปฌ๋ฌ๊ฐ ์ถ๊ฐ * fix: MissionControllertest์ฝ๋ ์์ * [WALWAL-155] ์นด์นด์ค ๋ก๊ทธ์ธ/ํ์๊ฐ์ ๊ตฌํ (#68) * feat: ์นด์นด์ค ๋ก๊ทธ์ธ/ํ์๊ฐ์ * fix: println ์ญ์ * fix: ์์ ํ ํฐ ์ฌ๋ถ ํ๋ณ (#74) * [WALWAL-163] ๋ฐฐํฌ ํ๊ฒฝ ๋ฉ๋ชจ๋ฆฌ ์ ํ (#77) * [WALWAL-163] ๋ฐฐํฌ ํ๊ฒฝ ๋ฉ๋ชจ๋ฆฌ ์ ํ * fix: memory * [WALWAL-160] ๋ฏธ์ ์์ ์ ๋์์ฑ ๋ฌธ์ ๊ฐ์ (#75) * [WALWAL-157] ํ์ํํด API (#82) * feat: ํ์ํํด API * feat: ํ์ํํด API redis deleteById * chore: ์ฃผ์ * chore: ์ฃผ์ ์ฒ๋ฆฌ ์์ * [WALWAL-154] PROD ์ด์ ์๋ฒ ์ํฌํ๋ก ์์ฑ (#85) * chore: PROD ๋ฐฐํฌ ํ ์คํธ * fix: ๋ณ์ ์ถ๊ฐ * fix: minor tags ํ ์คํธ * fix: minor tags ํ ์คํธ * fix: minor tags ํ ์คํธ * fix: workflow version * hotfix: EC2 ๋์ปค ๋จ์ผ ์ธ์คํด์ค ๋ฐฐํฌ (#90) * fix: docker deploy platform ์์ * fix: docker deploy platform ์์ * fix: ํ์ผ copy test * fix: ํ์ผ copy test * fix: ํ์ผ copy test * fix: ec2-user ๋ฐฐํฌ ํ ์คํธ * fix: ec2-user ๋ฐฐํฌ ํ ์คํธ * fix: run script ์ญ์ * fix: ec2-user ํ ์คํธ * fix: ec2-user ํ ์คํธ * fix: ec2-user ํ ์คํธ * fix: versioning ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * fix: ๋ฐฐํฌ ํ ์คํธ * refactor: dev ec2 docker-compose deploy workflow * fix: docker compose image, container ์์ * feat: push branchs develop์ผ๋ก ๋ณ๊ฒฝ * [WALWAL-156] ํ๋ก์ฐ ์ถ๊ฐ ๋ฐ ์ทจ์, ์กฐํ ๊ธฐ๋ฅ (#86) * feat: ํ๋ก์ฐ ์ถ๊ฐ, ์ญ์ , ์กฐํ API * test: Follow ํ ์คํธ ์ฝ๋ * fix: SRP ์์น * [WALWAL-164] ๋๋ค์ ๊ฒ์ฆ (#81) * feat: ๋๋ค์ ๊ฒ์ฆ * fix: null ์ฒดํฌ๋ง ํ๋๋ก * [WALWAL-167] Mission Response ๋ฐ API PathVariable ์์ (#91) * fix: Mission Response ๋ฐ API PathVariable ์์ * fix: MissionController Test ์์ * [WALWAL-163] ์ค์จ๊ฑฐ ๋ฌธ์ ์ด๋ฆ ์ผ๊ด์ ์ผ๋ก ํฌ๋งคํ (#79) * [WALWAL-163] ์ค์จ๊ฑฐ ๋ฌธ์ ์ด๋ฆ ์ผ๊ด์ ์ผ๋ก ํฌ๋งคํ * fix: ์ค์จ๊ฑฐ ๋ค์ด๋ฐ * test: SecurityUtil ํ ์คํธ ์ฝ๋ ์ถ๊ฐ (#99) * test: RefreshToken ํ ์คํธ (#100) * fix: ์จ๋ณด๋ฉ Default imageUrl ์์ฒญ ํ๋ ์ถ๊ฐ (#101) * fix: Default imageUrl ์ ๋ ฅ * fix: Default imageUrl empty ์ฒดํฌ * [WALWAL-165] FCM ํธ์ ์๋ฆผ ๊ธฐ๋ฅ ๊ตฌํ (#92) * feature: FCM ์๋ฆผ API ์๋น์ค ๊ตฌํ * fix: ์ฑ ์คํ ์ ํ ํฐ ํ์์คํฌํ ๊ฐฑ์ ์์ * fix: FcmResponseErrorType Enum์ผ๋ก ์ ๋ฆฌ * feature: ์์ static ์ ์ธ ๋ฐ secrets ํ๊ฒฝ๋ณ์์ค์ * fix: removeInactiveTokens๋ฉ์๋ ์ค์ผ์ฅด๋ฌ์คํ์๊ฐ ์์ * fix: docker-compose ํ๊ฒฝ๋ณ์ ์์ * fix: ๋ฏธ์ฌ์ฉ ๋ฉ์๋ ์ญ์ * fix: fcmSendResponse ์ญ์ * fix: FcmController throw IOException ์ ๊ฑฐ * refactor: scheduled๋ฉ์๋ ์๋น์ค๋ถ๋ฆฌ * fix: FIREBASE_CONFIG workflows์์ * fix: FIREBASE_CONFIG github secrets ์ฌ์ฉ * fix: @EnableScheduling ์ด๋ ธํ ์ด์ ์ถ๊ฐ * fix: docker ํ๊ฒฝ๋ณ์ -> env ์ค์ ์ผ๋ก ๋ณ๊ฒฝ * fix: .env ํ์ผ ๋ฐ fcm.yml ์์ * fix: FIREBASE_CONFIG .env๋ก ์์ * fix: fcm_token ๊ฐ์ฒด ์ญ์ -> soft ์ญ์ ๋ฅผ ํตํด ๋ฐ์ดํฐ ๋ณด์กด * feature: MulticastMessage ๊ตฌํ * fix: env ๋ณ์ ์์ * refactor: Transaction์ฒ๋ฆฌ๋ฅผ์ํ TokenService๋ถ๋ฆฌ * fix: sonarcloud ์ด์ ์์ * fix: Properties ์ ์ฉ * fix: @MockBean์ถ๊ฐ * [WALWAL-168] MissionRecord์ Text๊ฐ ์ถ๊ฐ (#103) * fix: MissionRecord์ Text๊ฐ ์ถ๊ฐ * fix: Test์ฝ๋ mocking์์ ์ถ๊ฐ * [WALWAL-149] Auth, Member ํ ์คํธ ์ฝ๋ ์์ฑ (#93) * test: MemberUtil ํ ์คํธ ์ฝ๋ ์ถ๊ฐ (#98) * test: MemberUtil ํ ์คํธ ์ฝ๋ ์ถ๊ฐ * refactor: MockitoExtension * chore: prod workflow ์์ฑ (#108) * fix: test docker compose ์์ --------- Co-authored-by: Park Yun Chan <dbscks9793@gmail.com> Co-authored-by: kwanok noh <61671343+kwanok@users.noreply.github.com>
๐ฑ ๊ด๋ จ ์ด์
๐ ์์ ๋ด์ฉ
getMissionRecordsForCalendar: ์ ์ฒด ๋ฏธ์ ๊ธฐ๋ก์ ํ์ด์ง๋ค์ด์ ๋ฐฉ์์ผ๋ก ์กฐํํ์ฌ ์บ๋ฆฐ๋ ์๋ต ํ์์ผ๋ก ๋ฐํ
getMissionRecords: ์ฃผ์ด์ง ์ปค์์ ํ์ด์ง๋ค์ด์ ์ ๋ณด๋ฅผ ๊ธฐ๋ฐ์ผ๋ก ๋ฏธ์ ๊ธฐ๋ก ์กฐํ
getNextCursor: ํ์ฌ ํ์ด์ง์ ๋ง์ง๋ง ๊ธฐ๋ก์ ๊ธฐ์ค์ผ๋ก ๋ค์ ํ์ด์ง์ ์ปค์ ์์ฑ
๐ ๋ฆฌ๋ทฐ ์๊ตฌ์ฌํญ
๐ ๋ ํผ๋ฐ์ค