-
Notifications
You must be signed in to change notification settings - Fork 0
Deploy: Merge to main #31
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
Changes from all commits
bce7dbc
3573613
08cfb63
ac96fa0
43e75ed
a70941b
cbbf597
d03fd30
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| package ita.tinybite.domain.auth.dto.request; | ||
|
|
||
| import ita.tinybite.domain.user.constant.PlatformType; | ||
|
|
||
| public record GoogleAndAppleLoginReq(String idToken, | ||
| PlatformType platformType) { | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,18 @@ | ||||||||||
| package ita.tinybite.domain.auth.dto.request; | ||||||||||
|
|
||||||||||
| import ita.tinybite.domain.user.constant.PlatformType; | ||||||||||
| import jakarta.validation.constraints.NotBlank; | ||||||||||
|
|
||||||||||
| public record GoogleAndAppleSignupRequest( | ||||||||||
| @NotBlank(message = "idTokenμ νμμ λλ€") | ||||||||||
| String idToken, | ||||||||||
| @NotBlank(message = "μ νλ²νΈλ νμμ λλ€") | ||||||||||
| String phone, | ||||||||||
| @NotBlank(message = "λλ€μμ νμμ λλ€") | ||||||||||
| String nickname, | ||||||||||
| @NotBlank(message = "μμΉ μ 보 νμμ λλ€") | ||||||||||
| String location, | ||||||||||
| @NotBlank(message = "νλ«νΌμ 보λ νμμ λλ€") | ||||||||||
| PlatformType platform | ||||||||||
|
Comment on lines
+15
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
+import jakarta.validation.constraints.NotNull;
- @NotBlank(message = "νλ«νΌμ 보λ νμμ
λλ€")
- PlatformType platform
+ @NotNull(message = "νλ«νΌμ 보λ νμμ
λλ€")
+ PlatformType platformπ Committable suggestion
Suggested change
π€ Prompt for AI Agents |
||||||||||
| ) { | ||||||||||
| } | ||||||||||
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.
π§© Analysis chain
π Script executed:
Repository: tinybite-2025/tinybite-server
Length of output: 200
π Web query:
google-api-client 2.7.2 security vulnerabilities CVEπ‘ Result:
Short answer: google-api-client 2.7.2 itself has no direct CVE entries, but published metadata and vulnerability databases show it can be affected by vulnerabilities in thirdβparty dependencies β notably CVEβ2024β7254 (Protocol Buffers stackβoverflow / DoS via specially nested protobufs) and CVEβ2025β27820 (Apache HttpClient PSL validation / hostname/cookie check bug). Upgrade or remediate the affected dependencies (or upgrade the library) to fixed versions. [1][2][3][4]
Sources
If you want, I can:
π Web query:
firebase-admin 9.1.1 security vulnerabilities CVEπ‘ Result:
Short answer: firebase-admin 9.1.1 itself has no recorded direct CVE, but the 9.1.1 artifact pulls in Netty components that are known to contain multiple CVEs (e.g. CVE-2025-58056, CVE-2024-29025, CVE-2023-34462, CVE-2022-41915), so a project using firebaseβadmin 9.1.1 can be transitively exposed via those dependency vulnerabilities. [1][2][3][4][5]
Sources:
If you want, I can:
Google API ν΄λΌμ΄μΈνΈ λ° Firebase Admin SDK λ²μ μ κ·Έλ μ΄λ νμ
μΆκ°λ μμ‘΄μ±λ€μ΄ μ¬κ°νκ² κ΅¬λ²μ μ λλ€:
μ¦μ μ΅μ λ²μ μΌλ‘ μ κ·Έλ μ΄λνμΈμ.
π€ Prompt for AI Agents