Conversation
- EventScale 도메인 추가 및 includeSmall 구독 설정을 조회 조건에 연결 - 접수 임박 대회를 최우선 노출하는 4단계 정렬 우선순위 도입 - 접수중 대회는 최근 수집순으로 정렬해 발송마다 목록 갱신 - 메일 1건당 대회 노출을 10건에서 15건으로 확대
- HMAC 서명 기반 무기한 해지 토큰 및 인증 없이 접근 가능한 해지 엔드포인트 추가 - List-Unsubscribe / List-Unsubscribe-Post 헤더로 RFC 8058 원클릭 해지 대응 - 알림/웰컴 메일 푸터에 개인 해지 링크 및 결과 안내 페이지 추가 - 해지 토큰 서명키는 JWT 시크릿에서 용도별로 분리 파생
- spring-boot-flyway 및 flyway-core/postgresql 의존성 추가 - 기존 schema.sql을 V1 초기 마이그레이션으로 이관, 운영 DB는 baseline 처리 - 마이그레이션과 엔티티 매핑을 검증하는 테스트 추가
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
개요
구독 설정이 실제 발송에 반영되지 않던 문제를 바로잡고, 알림 정렬과 수신 거부 경험을 개선했습니다. 스키마 관리를 Flyway로 전환합니다.
변경 사항
알림 대회 필터링 및 정렬 개선
includeSmall구독 설정이 조회 조건에 연결되지 않아 무시되던 문제 수정include_small=false면SMALL만 제외하고MAJOR/UNKNOWN은 유지메일 원클릭 구독 해지
List-Unsubscribe/List-Unsubscribe-Post헤더로 RFC 8058 원클릭 해지 대응Flyway 마이그레이션 도입
schema.sql을 V1 초기 마이그레이션으로 이관참고
ddl-auto가update에서validate로 변경되어, 엔티티 변경 시 마이그레이션 스크립트가 필요합니다.