Skip to content

Commit

Permalink
chore(deps): bump galoy image to 'sha256:1bca1f22f77168daf21a3185a224…
Browse files Browse the repository at this point in the history
…b14d76cbf1e804b64f3517e7a21272bec79f'
  • Loading branch information
galoybot committed May 8, 2024
1 parent adf9d4b commit fbc7ae2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/galoy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version: 0.33.96-dev
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.20.183
appVersion: 0.20.186
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand Down
22 changes: 21 additions & 1 deletion charts/galoy/apollo-router/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1315,6 +1315,12 @@ enum Network
testnet @join__enumValue(graph: PUBLIC)
}

union NotificationAction
@join__type(graph: NOTIFICATIONS)
@join__unionMember(graph: NOTIFICATIONS, member: "OpenDeepLinkAction")
@join__unionMember(graph: NOTIFICATIONS, member: "OpenExternalLinkAction")
= OpenDeepLinkAction | OpenExternalLinkAction

scalar NotificationCategory
@join__type(graph: PUBLIC)

Expand Down Expand Up @@ -1448,6 +1454,18 @@ type OneDayAccountLimit implements AccountLimit
scalar OneTimeAuthCode
@join__type(graph: PUBLIC)

type OpenDeepLinkAction
@join__type(graph: NOTIFICATIONS)
{
deepLink: String!
}

type OpenExternalLinkAction
@join__type(graph: NOTIFICATIONS)
{
url: String!
}

"""Information about pagination in a connection"""
type PageInfo
@join__type(graph: NOTIFICATIONS)
Expand Down Expand Up @@ -1776,9 +1794,10 @@ type StatefulNotification
title: String!
body: String!
deepLink: String
action: NotificationAction
createdAt: Timestamp!
acknowledgedAt: Timestamp
addToBulletin: Boolean!
bulletinEnabled: Boolean!
}

input StatefulNotificationAcknowledgeInput
Expand Down Expand Up @@ -2063,6 +2082,7 @@ type User
apiKeys: [ApiKey!]! @join__field(graph: API_KEYS)
statefulNotifications(first: Int!, after: String): StatefulNotificationConnection! @join__field(graph: NOTIFICATIONS)
unacknowledgedStatefulNotificationsCount: Int! @join__field(graph: NOTIFICATIONS)
unacknowledgedStatefulNotificationsWithBulletinEnabled(first: Int!, after: String): StatefulNotificationConnection! @join__field(graph: NOTIFICATIONS)

"""
Get single contact details.
Expand Down
14 changes: 7 additions & 7 deletions charts/galoy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,31 +36,31 @@ galoy:
repository: us.gcr.io/galoy-org/galoy-api
## Digest of the image
##
digest: "sha256:36c9eb4d5b74a6d526c78183ab5df37f0b1d8ba23120bdff50418f123ef579bf"
digest: "sha256:1bca1f22f77168daf21a3185a224b14d76cbf1e804b64f3517e7a21272bec79f"
## Not used by Helm, just used to ref to the source https://github.com/GaloyMoney/galoy.git
## Reference for timestamping the corresponding docker image and used by internal CI.
##
git_ref: "dc50d89"
git_ref: "6f9ad59"
websocket:
repository: us.gcr.io/galoy-org/galoy-api-ws-server
## Digest of the image
##
digest: "sha256:8deba7033227f84d50f0ffe043e6eb6c67d0ebd3950b7891aad9eef9719eb21e"
digest: "sha256:9733674aeb4260e67c273001be18e5dd8f2565975174f36cc4c9e85e8d302398"
trigger:
repository: us.gcr.io/galoy-org/galoy-api-trigger
## Digest of the image
##
digest: "sha256:c3eb309fadb0ec06dbbd2707f5cf4187240202c4b5f7443777fbef3a1751d7fa"
digest: "sha256:d180f6e41cbd46b97adca17dec0dfc552907aa272e2034026c908f8327cc54b9"
cron:
repository: us.gcr.io/galoy-org/galoy-api-cron
## Digest of the image
##
digest: "sha256:b363b0390d1c96b8c55790d39ffbb9814db3061f145c3648c2598e1dc6864713"
digest: "sha256:e2ac50d4e1ec007018f124906c66ca4b541d4992f70bf15eafb1f72f827bae22"
exporter:
repository: us.gcr.io/galoy-org/galoy-api-exporter
## Digest of the image
##
digest: "sha256:133a8a54d5f4ec5f45c3442818d8f4d989ec82430ef7a223569faf15a55f3abf"
digest: "sha256:fb8bba26377a1caedc1d6bfbd38280160b9a02a4ee368d5ba913e03635487bb1"
consent:
repository: us.gcr.io/galoy-org/galoy-consent
## Digest of the image
Expand All @@ -84,7 +84,7 @@ galoy:
repository: us.gcr.io/galoy-org/galoy-api-migrate
## Digest of the image
##
digest: "sha256:bf3fb76af010c28dfc7d949d49dccb0103eee6960dbf58bbad399a04e3a96745"
digest: "sha256:cc218f4c90592deed5456d7aab222412ed48007bc9641bc7a1bdb558f160e186"
## Galoy Application MongoDB Backup Image details
##
mongoBackup:
Expand Down

0 comments on commit fbc7ae2

Please sign in to comment.