Merged
Conversation
- DEPLOYMENT.md: 상세한 배포 가이드 문서 추가 - deploy-manual.sh: 사전 검사 및 에러 처리 강화 - .gitignore: AWS 키 파일 보안 추가 - 환경변수로 키 파일 경로 설정 가능 - 컬러 출력 및 상세한 진행 상황 표시
- Trip.java: createdAt 필드 및 관련 import 제거 - TripResponseDto.java: createdAt 필드 제거 - TripTest.java: createdAt 관련 테스트 코드 제거 - 불필요한 LocalDateTime import 정리
- 국가 초기화 코드 제거 (CountryService 사용) - 날씨 아이콘 URL을 정적 리소스 경로로 변경 - 불필요한 CountryRepository dependency 제거 - 중복 초기화 로직 정리
- 5개 날씨 아이콘 PNG 파일 추가 - sunny.png (맑음) - cloudy.png (구름) - rainy.png (비) - windy.png (바람) - snowy.png (눈) - /images/weather/ 경로로 서빙됨
- WeatherController: 날씨 목록 조회 API 엔드포인트 추가 - WeatherService: 날씨 조회 비즈니스 로직 구현 - WeatherResponseDto: 날씨 응답 데이터 전송 객체 추가 - /api/weathers 엔드포인트로 전체 날씨 목록 조회 가능
- memory-ec2-key.pem 파일을 .gitignore에 추가하여 보안 강화
- 'GET /api/trips/{tripId}/representative-images' API 문서 수정
- '여행별 대표사진 조회' → '여행에 속한 다이어리들의 대표사진 목록 조회'
- API 기능을 더 정확하게 표현하도록 개선
fix : 리스트 문제 해결
- Let's Encrypt 무료 SSL 인증서 적용 - HTTP에서 HTTPS로 자동 리디렉션 설정 - application.yml에 SSL 설정 추가 - HttpsConfig 클래스로 커넥터 설정 구성 - 443 포트에서 HTTPS 서버 운영
- EmotionController: ListResponse<Emotion> -> List<Emotion> 변경
- WeatherController: ListResponse<WeatherResponseDto> -> List<WeatherResponseDto> 변경
- API 응답이 {"data": [...]} 에서 [...] 로 단순화됨
- application.yml: port 443 -> 8081로 변경 - SSL 설정 제거 (enabled: false) - forward-headers 설정 추가 - HttpsConfig.java 삭제
- UpdateTripRequest에 representativeImageUrl, startDate, endDate 필드 추가 - Trip 엔티티에서 startDate 업데이트 제약 제거 - TripService에 새 필드들 업데이트 로직 추가 - TripController에 날짜 순서 검증 추가 (startDate > endDate 방지)
- sampleImageUrl, cardImageUrl 필드 추가 - @NoArgsConstructor 추가
- CreateTripRequest: themeId 필드 옵셔널로 변경 - TripResponseDto: 테마 이미지 URL 필드 추가 (themeSampleImageUrl, themeCardImageUrl)
- TripService: themeId가 null인 경우 기본 테마(ID 1) 자동 설정 - TripController: themeId 필수 검증 제거
- DataInitializer에 6가지 테마 데이터 생성 로직 추가 - 테마별 이미지 URL 포함 (기본, Grey, 탑승권, 액자, Beach, Forest)
- TripThemeController: 테마 목록 조회 GET /api/themes 엔드포인트 추가 - TripThemeResponseDto: 테마 응답 DTO 추가
- CountryService: 검색 로직 메서드 추가 및 개선
- CountryController: POST /api/countries/search 엔드포인트 추가 - CountryValidator: 검색어 유효성 검사 유틸리티 추가 - 한국어 URL 인코딩 문제 해결을 위한 JSON 기반 검색 API
- Emotion, Weather enum 클래스 코드 정리 및 포맷팅
- DiaryController: 음성 관련 기능 추가 - DiaryService: 다이어리 생성/조회 로직 개선 - CreateDiaryRequest, DiaryResponseDto: 음성 필드 추가
- FileUploadController: 음성 파일 업로드 기능 추가 - S3Uploader: 파일 업로드 로직 개선
- TripRepresentativeImageDto 클래스 코드 정리 및 포맷팅
- MyPageServiceTest, SettingServiceTest 코드 정리 및 포맷팅
- multipart max-file-size: 100MB -> 500MB - multipart max-request-size: 100MB -> 500MB - tomcat max-http-post-size 및 max-http-header-size 추가 - import 설정을 optional로 변경
- deploy-manual.sh에서 AWS 리전 us-east-1 → ap-northeast-2로 변경
- FileController: S3에서 파일을 가져오는 GET /api/files 엔드포인트 추가 - 오디오 파일과 HEIF 파일에 대한 적절한 Content-Type 설정
- Dockerfile: Java 21 기반 애플리케이션 컨테이너 구성 - docker-compose.yml: MySQL과 애플리케이션을 함께 실행하는 구성 - nginx.conf: 리버스 프록시 및 로드밸런싱 설정 - .dockerignore: Docker 빌드 시 제외할 파일들 정의
- deploy-docker.sh: 로컬 Docker 컨테이너 빌드 및 실행 스크립트 - deploy-production-direct.sh: 운영 서버 빠른 Docker 배포 스크립트 - deploy-production-docker.sh: 운영 서버 Docker 배포 스크립트
- add_audio_to_diaries.sh: 다이어리에 오디오 URL 추가 스크립트 - clear_audio_urls.sh: 다이어리 오디오 URL 초기화 스크립트 - upload_and_assign_audio.sh: 오디오 업로드 및 다이어리 할당 스크립트 - upload_audio_files.sh: 오디오 파일 업로드 전용 스크립트
- CountryController에서 POST /api/countries/search 엔드포인트 제거 - 불필요한 Map import 제거 - CountryValidator 유틸리티 클래스 제거 - 프론트에서 GET 방식으로 URL 인코딩 처리하기로 결정
fix : "" 검색 시 나라 전체 반환
fix : "" 입력 시 전체 나라 배열
Refactor : 나라 이름 순 정렬
Refactor : 나라 이름 순으로 조회
fix: Login시 UserId 반환. 계정 삭제 일부 수정
fix : 테마 사진 수정
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.
No description provided.