Skip to content

Commit

Permalink
release: 0.3.8
Browse files Browse the repository at this point in the history
* feat: 리뷰 등록시 회원 매너 온도 반영 기능 추가 및 리뷰 등록 리팩토링 (#158)

* refactor: 회원 리뷰 등록 API 리팩토링 (#157)

* feat: 회원 리뷰 등록시, 온도 반영 및 리뷰 피드백 반영 (#157)

* feat: User 엔티티 메소드 추가 (#157)

* feat: Review enum 필드 추가 (#157)

* test: 리뷰 등록시 온도 업데이트에 대한 단위 테스트 (#157)

* test: 리뷰 등록 기능 통합 테스트 (#157)

* refactor: 회원 리뷰 등록 메소드 수정 (#157)

* test: 불필요한 테스트 제거 및 CI 오류 수정 (#157)

* test: MeetingRepository 테스트에서 시간과 id비교 비활서화

* refactor: 회원 탈퇴 URI 변경 (#162)

* refactor: 회원 탈퇴 URI 수정 (#161)

* test: 회원 탈퇴 URI 수정에 대한 테스트 수정 (#161)

* fix: CI 에러 수정 (#161)

* fix: 필드 값 비교를 위해 deprecated 된 메소드을 대체 (#161)

* fix: 필드 값 비교를 위해 deprecated 된 메소드을 대체 (#161)

* feat: fcm token 업데이트 api 추가 (#166)

* fix: user_alert ddl의 pk에 auto_increment를 추가한다

* feat: token 업데이트 api를 추가한다

* fix: 모임 수정 시 이미지가 추가되는 버그 수정 (#169)

* perf: upgrade GPT-3.5 to GPT-4 (#174)

* refactor: 위치 기반 데이터 값 유효기간 변경

* refactor: 위치 기반 데이터 값 유효기간 변경

* refactor: 위치 기반 데이터 값 유효기간 변경

* feat: 모임 종료, 사용자 추천 알림을 추가 (#182)

* feat: Alert Entity를 추가하고, 알림 전송 기능이 Entity를 파라미터로 받아 동작하게 수정한다

* refactor: MeetingAlerted를 BeforeMeetingAlerted로 직관적으로 변경한다

* feat: 모임 종료 알림을 추가한다

* feat: 유저가 추천받았을때 알림 전송 기능을 추가한다

* feat: 유저가 한달 동안 받은 알람을 조회하는 기능 개발 (#185)

* fix: flyway schema에 _이 하나밖에 없는 버그를 수정한다

* feat: 유저가 한달동안 받은 알람을 조회하는 기능을 개발한다

* refactor: AlertRepository의 finalAll 메소드를 findAllByCreatedAt으로 변경한다

* feat: 북마크 추가, 취소 기능 구현 (#184)

* chore: 북마크 스키마 추가

* feat: 북마크 추가, 삭제 기능

* test: 북마크 추가, 삭제 테스트 작성

- 북마크 추가 케이스
- 북마크 취소 케이스
- 모임 단일 응답에 북마크 여부 추

* feat: bookmarked -> isBookmarked, V1__ 언더바 누락 수정

* fix: flyway_schema alert userId를 user_id로 변경한다

* fix: flyway 13 의 alert table문을 변경한다

---------

Co-authored-by: ChoiDongKuen <[email protected]>
Co-authored-by: ddingmin <[email protected]>
  • Loading branch information
3 people authored Feb 10, 2024
1 parent d8eb41a commit d05a41c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/main/resources/db/migration/V13__alter_alert_user_id.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
alter table alert
drop column userId;
alter table alert
add column user_id bigint not null;
2 changes: 1 addition & 1 deletion src/test/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ create table if not exists users_reviews

create table if not exists alert(
id bigint not null auto_increment,
userId bigint not null,
user_id bigint not null,
title varchar(20) not null,
`body` varchar(20) not null,
type enum('BEFORE_MEETING'),
Expand Down

0 comments on commit d05a41c

Please sign in to comment.