Skip to content

Commit

Permalink
chore(deps): bump galoy image to 'sha256:6145d165b6c17e4db13afce7e64f…
Browse files Browse the repository at this point in the history
…ed3fe54d73b8c927d451bb5fb2f585dc4fc2'
  • Loading branch information
galoybot committed Nov 2, 2023
1 parent c93e191 commit 66efd82
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 39 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.26.16-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.15.83
appVersion: 0.15.84
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand Down
10 changes: 5 additions & 5 deletions charts/galoy/apollo-router/api-keys-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ input ApiKeyRevokeInput {
}


extend type ConsumerAccount @key(fields: "id") {
id: ID! @external
apiKeys: [ApiKey!]!
}

"""
Implement the DateTime<Utc> scalar
Expand All @@ -41,6 +36,11 @@ type Mutation {



extend type User @key(fields: "id") {
id: ID! @external
apiKeys: [ApiKey!]!
}

extend schema @link(
url: "https://specs.apollo.dev/federation/v2.3",
import: ["@key", "@tag", "@shareable", "@inaccessible", "@override", "@external", "@provides", "@requires", "@composeDirective", "@interfaceObject"]
Expand Down
53 changes: 27 additions & 26 deletions charts/galoy/apollo-router/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -320,26 +320,24 @@ type CentAmountPayload

type ConsumerAccount implements Account
@join__implements(graph: PUBLIC, interface: "Account")
@join__type(graph: API_KEYS, key: "id", extension: true)
@join__type(graph: PUBLIC)
{
id: ID!
apiKeys: [ApiKey!]! @join__field(graph: API_KEYS)
callbackEndpoints: [CallbackEndpoint!]! @join__field(graph: PUBLIC)
callbackEndpoints: [CallbackEndpoint!]!

"""
return CSV stream, base64 encoded, of the list of transactions in the wallet
"""
csvTransactions(walletIds: [WalletId!]!): String! @join__field(graph: PUBLIC)
defaultWalletId: WalletId! @join__field(graph: PUBLIC)
displayCurrency: DisplayCurrency! @join__field(graph: PUBLIC)
level: AccountLevel! @join__field(graph: PUBLIC)
limits: AccountLimits! @join__field(graph: PUBLIC)
notificationSettings: NotificationSettings! @join__field(graph: PUBLIC)
csvTransactions(walletIds: [WalletId!]!): String!
defaultWalletId: WalletId!
displayCurrency: DisplayCurrency!
id: ID!
level: AccountLevel!
limits: AccountLimits!
notificationSettings: NotificationSettings!

"""List the quiz questions of the consumer account"""
quiz: [Quiz!]! @join__field(graph: PUBLIC)
realtimePrice: RealtimePrice! @join__field(graph: PUBLIC)
quiz: [Quiz!]!
realtimePrice: RealtimePrice!

"""
A list of all transactions associated with walletIds optionally passed.
Expand All @@ -357,9 +355,9 @@ type ConsumerAccount implements Account
"""Returns the last n items from the list."""
last: Int
walletIds: [WalletId]
): TransactionConnection @join__field(graph: PUBLIC)
walletById(walletId: WalletId!): Wallet! @join__field(graph: PUBLIC)
wallets: [Wallet!]! @join__field(graph: PUBLIC)
): TransactionConnection
walletById(walletId: WalletId!): Wallet!
wallets: [Wallet!]!
}

"""
Expand Down Expand Up @@ -1690,43 +1688,46 @@ type UsdWallet implements Wallet
}

type User
@join__type(graph: API_KEYS, key: "id", extension: true)
@join__type(graph: PUBLIC)
{
id: ID!
apiKeys: [ApiKey!]! @join__field(graph: API_KEYS)

"""
Get single contact details.
Can include the transactions associated with the contact.
"""
contactByUsername(username: Username!): UserContact! @deprecated(reason: "will be moved to Accounts")
contactByUsername(username: Username!): UserContact! @join__field(graph: PUBLIC) @deprecated(reason: "will be moved to Accounts")

"""
Get full list of contacts.
Can include the transactions associated with each contact.
"""
contacts: [UserContact!]! @deprecated(reason: "will be moved to account")
createdAt: Timestamp!
defaultAccount: Account!
contacts: [UserContact!]! @join__field(graph: PUBLIC) @deprecated(reason: "will be moved to account")
createdAt: Timestamp! @join__field(graph: PUBLIC)
defaultAccount: Account! @join__field(graph: PUBLIC)

"""Email address"""
email: Email
id: ID!
email: Email @join__field(graph: PUBLIC)

"""
Preferred language for user.
When value is 'default' the intent is to use preferred language from OS settings.
"""
language: Language!
language: Language! @join__field(graph: PUBLIC)

"""Phone number with international calling code."""
phone: Phone
phone: Phone @join__field(graph: PUBLIC)

"""List the quiz questions the user may have completed."""
quizQuestions: [UserQuizQuestion!]! @deprecated(reason: "use Quiz from Account instead")
quizQuestions: [UserQuizQuestion!]! @join__field(graph: PUBLIC) @deprecated(reason: "use Quiz from Account instead")

"""Whether TOTP is enabled for this user."""
totpEnabled: Boolean!
totpEnabled: Boolean! @join__field(graph: PUBLIC)

"""Optional immutable user friendly identifier."""
username: Username @deprecated(reason: "will be moved to @Handle in Account and Wallet")
username: Username @join__field(graph: PUBLIC) @deprecated(reason: "will be moved to @Handle in Account and Wallet")
}

type UserContact
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:6d875d027323afe51d6d23aa101e68b55e0904f133b685fa6251561965861b50"
digest: "sha256:6145d165b6c17e4db13afce7e64fed3fe54d73b8c927d451bb5fb2f585dc4fc2"
## 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: "8b2b2ac"
git_ref: "eb661c6"
websocket:
repository: us.gcr.io/galoy-org/galoy-api-ws-server
## Digest of the image
##
digest: "sha256:c033574c691cfd1fe12a50def8a3ad153b980562f86cb8b832961b766ba7a376"
digest: "sha256:62e873deb35692c5bb79778bf897c5ce70614c9b1d5a2cea52f2a034a27aa35f"
trigger:
repository: us.gcr.io/galoy-org/galoy-api-trigger
## Digest of the image
##
digest: "sha256:f3551282c242e1e1fe3fceaf3bbeff74015e49450bbfa470222e9a489be29b68"
digest: "sha256:ab82f485770b0230df010c1983892ec511ee3636365d41cedae64df11d199d59"
cron:
repository: us.gcr.io/galoy-org/galoy-api-cron
## Digest of the image
##
digest: "sha256:156083c8b31f200dc2e33ea2d36c1ec29dae3c14dc7dce2ac95f2d3908e6774e"
digest: "sha256:6d508c0b56b9cf815a551e05773a498d03b92b0fc0fcf86b32acf7cda059a098"
exporter:
repository: us.gcr.io/galoy-org/galoy-api-exporter
## Digest of the image
##
digest: "sha256:538f6a0d3a5e9b285492e486f009ead3b8d76a4beb350afe58230fab8d3f90ea"
digest: "sha256:ea6fd75b3a647fade17c41003472466a141b59026494fad8c52970ddeebb2d8b"
consent:
repository: us.gcr.io/galoy-org/galoy-consent
## Digest of the image
Expand All @@ -74,7 +74,7 @@ galoy:
repository: us.gcr.io/galoy-org/galoy-app-migrate
## Digest of the image
##
digest: "sha256:12d685b37d15dcd75daacf11dd118487aaa375affa466ea135bf891229dbcb1d"
digest: "sha256:c89e3a7160ecf5d2e49f4e7aa08ea73a50e649584b3a9ac7f8e20cd2b521fac7"
## Galoy Application MongoDB Backup Image details
##
mongoBackup:
Expand Down

0 comments on commit 66efd82

Please sign in to comment.