Skip to content

fix: 1.4.3 공휴일 표시 핫픽스#315

Merged
kswift1 merged 3 commits into
mainfrom
release/v1.4.3
May 20, 2026
Merged

fix: 1.4.3 공휴일 표시 핫픽스#315
kswift1 merged 3 commits into
mainfrom
release/v1.4.3

Conversation

@kswift1
Copy link
Copy Markdown
Owner

@kswift1 kswift1 commented May 17, 2026

요약

  • iOS 배포 workflow에 공휴일 API 키 secret 전달을 추가했습니다.
  • xcconfig 생성 시 DATA_GO_KR_SERVICE_KEY 누락을 실패 처리하도록 막았습니다.
  • 앱 버전을 1.4.3으로 올리고 릴리즈 노트를 추가했습니다.
  • CalendarFeatureExample에도 공휴일 API 키 주입을 맞췄습니다.

검증

  • GitHub repo secret DATA_GO_KR_SERVICE_KEY 등록 확인
  • workflow YAML 파싱 확인
  • scripts/generate-xcconfig.sh 문법 확인
  • prod 생성 기준 Promiso Release 설정에서 DATA_GO_KR_SERVICE_KEY 주입 확인
  • prod Info.plist 생성물에서 CFBundleShortVersionString=1.4.3 확인
  • CalendarFeature 테스트 26개 통과

배포

  • Stage/Prod Deploy iOS workflow를 release/v1.4.3 ref로 시작했습니다.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이번 핫픽스는 캘린더 공휴일 표시 기능을 복구하기 위한 업데이트입니다. 공휴일 API 키 주입 누락 문제를 해결하기 위해 빌드 스크립트의 유효성 검사를 강화하고, 관련 프로젝트 설정 및 앱 버전을 최신화하였습니다.

Highlights

  • 공휴일 API 키 주입: iOS 배포 워크플로우 및 빌드 스크립트에 공휴일 API 키(DATA_GO_KR_SERVICE_KEY)를 필수 환경 변수로 추가하여 누락을 방지했습니다.
  • 버전 업데이트: 앱 버전을 1.4.3으로 상향 조정하고 관련 릴리즈 노트를 작성했습니다.
  • CalendarFeature 설정 보완: CalendarFeatureExample 프로젝트에 공휴일 API 키 주입 설정을 추가하고 환경별 xcconfig 구성을 적용했습니다.
Ignored Files
  • Ignored by pattern: .github/workflows/** (4)
    • .github/workflows/deploy-ios.yml
    • .github/workflows/pr-check.yml
    • .github/workflows/qa-nightly.yml
    • .github/workflows/qa-weekly.yml
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the project to version 1.4.3, including a fix for holiday display and the integration of a new service key (DATA_GO_KR_SERVICE_KEY) across environment configurations. Feedback focuses on preventing xcconfig parsing errors by escaping potential slashes in the service key, maintaining naming consistency with environment-specific suffixes, and ensuring the example target's Release configuration uses the appropriate production xcconfig instead of the development one.

Comment thread scripts/generate-xcconfig.sh Outdated
check_env_var "GOOGLE_CLIENT_ID_DEV" || return 1
check_env_var "GOOGLE_REVERSED_CLIENT_ID_DEV" || return 1
check_env_var "KAKAO_NATIVE_APP_KEY_DEV" || return 1
check_env_var "DATA_GO_KR_SERVICE_KEY" || return 1
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

xcconfig 파일에서 //는 주석의 시작으로 인식됩니다. 공공데이터포털의 서비스 키(Service Key)는 Base64 형식이 포함될 수 있어 // 문자가 나타날 가능성이 높습니다. 만약 키에 //가 포함되면 xcconfig 파싱 시 그 이후의 값은 주석으로 처리되어 키가 잘리게 되고, 결과적으로 런타임에 공휴일 API 호출이 실패하게 됩니다. 이 변수를 사용하는 cat 블록 이전에 ///$(EMPTY)/와 같이 이스케이프 처리하는 로직을 추가하는 것을 권장합니다. (이 이슈는 Dev, Stage, Prod 모든 환경 설정에 해당합니다.)

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

완료: 629c7c811

Comment thread scripts/generate-xcconfig.sh Outdated
check_env_var "GOOGLE_CLIENT_ID_PROD" || return 1
check_env_var "GOOGLE_REVERSED_CLIENT_ID_PROD" || return 1
check_env_var "KAKAO_NATIVE_APP_KEY_PROD" || return 1
check_env_var "DATA_GO_KR_SERVICE_KEY" || return 1
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

현재 DATA_GO_KR_SERVICE_KEY는 모든 환경(Dev, Stage, Prod)에서 동일한 환경 변수 이름을 사용하고 있습니다. 이 스크립트의 다른 변수들(GOOGLE_CLIENT_ID_PROD, KAKAO_NATIVE_APP_KEY_PROD 등)은 환경별 접미사를 사용하여 개별적으로 관리되고 있습니다. 일관성을 유지하고 환경별로 다른 키를 사용할 수 있도록 DATA_GO_KR_SERVICE_KEY_PROD와 같은 네이밍 규칙을 따르는 것이 유지보수 측면에서 좋습니다.

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

완료: 629c7c811

settings: .standard(
configurations: [
.debug(name: "Debug", xcconfig: .relativeToRoot("Config/Dev.xcconfig")),
.release(name: "Release", xcconfig: .relativeToRoot("Config/Dev.xcconfig"))
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

CalendarFeatureExample 타겟의 Release 구성(Configuration)에서 Dev.xcconfig를 사용하도록 설정되어 있습니다. 일반적으로 Release 빌드는 프로덕션 환경에 가까운 설정을 테스트하기 위해 사용되므로, Prod.xcconfig 또는 Stage.xcconfig를 사용하도록 설정하는 것이 더 적절합니다.

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

완료: 0e00bb8d6

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 17, 2026

PR 체크 성공

모드: 🔨 전체 빌드
빌드: 성공
테스트: 통과

📊 모듈별 커버리지
모듈 커버리지 상태
Clients 14% 🔴
PromisoShared 9.8% 🔴
HomeFeature 11.6% 🔴
AuthFeature 19.1% 🔴
GroupFeature 19.3% 🔴
CalendarFeature 7.7% 🔴
SettingsFeature 13.1% 🔴
RootTabFeature 37.4% 🟡
AppEntryFeature 21.1% 🔴
SharedFeature 16.8% 🔴
NotificationCenterFeature 38% 🟡
PersonalFeature 23.5% 🔴
전체 15.2%

🔴 30% 미만 | 🟡 30~50% | 🟢 50% 이상

상세 정보
  • Workflow: PR Check
  • Branch: release/v1.4.3
  • Commit: 629c7c8
  • 빌드 모드: 🔨 전체 빌드

@kswift1 kswift1 deployed to staging May 17, 2026 15:46 — with GitHub Actions Active
@kswift1 kswift1 merged commit fa716b0 into main May 20, 2026
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant