Skip to content

Commit

Permalink
chore(release): [ci skip] bump quickstart image to sha256@e5b3ec62a4f…
Browse files Browse the repository at this point in the history
…db476b44805e0c719e2d12a11c40491e739f825e6efd212b66f5c
  • Loading branch information
galoybot committed May 14, 2024
1 parent 5e287ae commit f698e14
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 26 deletions.
3 changes: 2 additions & 1 deletion quickstart/dev/config/apollo-federation/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2138,7 +2138,8 @@ type User
id: ID!
apiKeys: [ApiKey!]! @join__field(graph: API_KEYS)
statefulNotifications(first: Int!, after: String): StatefulNotificationConnection! @join__field(graph: NOTIFICATIONS)
unacknowledgedStatefulNotificationsCount: Int! @join__field(graph: NOTIFICATIONS)
statefulNotificationsWithoutBulletinEnabled(first: Int!, after: String): StatefulNotificationConnection! @join__field(graph: NOTIFICATIONS)
unacknowledgedStatefulNotificationsWithoutBulletinEnabledCount: Int! @join__field(graph: NOTIFICATIONS)
unacknowledgedStatefulNotificationsWithBulletinEnabled(first: Int!, after: String): StatefulNotificationConnection! @join__field(graph: NOTIFICATIONS)

"""
Expand Down
6 changes: 3 additions & 3 deletions quickstart/docker-compose.tmpl.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#@ load("@ytt:data", "data")

#@ galoy_api_image_digest = "sha256@2e6cf203b02499e493eb0a6f2124863f359d693274c511c2d9b1313b3b81f87f"
#@ galoy_trigger_image_digest = "sha256@a9966cad1c50434d0697bc0702abb82ab71a49f56df37bef68e6d613d576a097"
#@ mongodb_migrate_image_digest = "sha256@acb76a1f0b6cef30a3cf794cac954422f185096c9450307847316080b25cb665"
#@ galoy_api_image_digest = "sha256@e5b3ec62a4fdb476b44805e0c719e2d12a11c40491e739f825e6efd212b66f5c"
#@ galoy_trigger_image_digest = "sha256@b09562367897e5c01254cac6014d78d35208da7eb771ab27f06e5b854876b757"
#@ mongodb_migrate_image_digest = "sha256@ebd8d58baa3174e6c0fdcb2a915fd0378e73865d8155e3180f383966f75bda63"
#@ galoy_notifications_image_digest = "sha256@6538962850fed78a1616fdf3e83dad1035c9ffc4ccd7360c3f50caef40a649ff"

#@ core_env = [
Expand Down
6 changes: 3 additions & 3 deletions quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
- POSTGRES_PASSWORD=secret
- POSTGRES_DB=hydra
galoy:
image: us.gcr.io/galoy-org/galoy-api@sha256:2e6cf203b02499e493eb0a6f2124863f359d693274c511c2d9b1313b3b81f87f
image: us.gcr.io/galoy-org/galoy-api@sha256:e5b3ec62a4fdb476b44805e0c719e2d12a11c40491e739f825e6efd212b66f5c
environment:
- HELMREVISION=dev
- NETWORK=regtest
Expand Down Expand Up @@ -161,7 +161,7 @@ services:
aliases:
- bats-tests
trigger:
image: us.gcr.io/galoy-org/galoy-api-trigger@sha256:a9966cad1c50434d0697bc0702abb82ab71a49f56df37bef68e6d613d576a097
image: us.gcr.io/galoy-org/galoy-api-trigger@sha256:b09562367897e5c01254cac6014d78d35208da7eb771ab27f06e5b854876b757
environment:
- HELMREVISION=dev
- NETWORK=regtest
Expand Down Expand Up @@ -254,7 +254,7 @@ services:
environment:
- MONGO_INITDB_DATABASE=galoy
mongodb-migrate:
image: us.gcr.io/galoy-org/galoy-api-migrate@sha256:acb76a1f0b6cef30a3cf794cac954422f185096c9450307847316080b25cb665
image: us.gcr.io/galoy-org/galoy-api-migrate@sha256:ebd8d58baa3174e6c0fdcb2a915fd0378e73865d8155e3180f383966f75bda63
depends_on:
- mongodb
environment:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
query listStatefulNotificationsWithoutBulletinEnabled($first: Int = 2, $after: String = null) {
me {
id
statefulNotificationsWithoutBulletinEnabled(first: $first, after: $after) {
pageInfo {
endCursor
hasNextPage
}
nodes {
id
body
title
deepLink
acknowledgedAt
createdAt
bulletinEnabled
}
}
}
}
1 change: 1 addition & 0 deletions quickstart/graphql/gql/list-stateful-notifications.gql
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ query listStatefulNotifications($first: Int = 2, $after: String = null) {
deepLink
acknowledgedAt
createdAt
bulletinEnabled
}
}
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
query unacknowledgedStatefulNotificationsWithoutBulletinEnabledCount {
me {
id
unacknowledgedStatefulNotificationsWithoutBulletinEnabledCount
}
}
18 changes: 9 additions & 9 deletions quickstart/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- git:
commitTitle: 'feat(notifications): add icon to stateful notification (#4444)...'
sha: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
commitTitle: 'feat(notifications): query and counts for non bulletins (#4453)...'
sha: 5e287ae0fc6ca27a30957797035b1de1e2df5d44
tags:
- 0.20.193-4-g349a31b6e
- 0.20.194-1-g5e287ae0f
path: .
path: dev
- contents:
- git:
commitTitle: 'feat(notifications): add icon to stateful notification (#4444)...'
sha: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
commitTitle: 'feat(notifications): query and counts for non bulletins (#4453)...'
sha: 5e287ae0fc6ca27a30957797035b1de1e2df5d44
tags:
- 0.20.193-4-g349a31b6e
- 0.20.194-1-g5e287ae0f
path: schemas
- git:
commitTitle: 'feat(notifications): add icon to stateful notification (#4444)...'
sha: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
commitTitle: 'feat(notifications): query and counts for non bulletins (#4453)...'
sha: 5e287ae0fc6ca27a30957797035b1de1e2df5d44
tags:
- 0.20.193-4-g349a31b6e
- 0.20.194-1-g5e287ae0f
path: gql
path: graphql
kind: LockConfig
6 changes: 3 additions & 3 deletions quickstart/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ directories:
- path: ./
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
ref: 5e287ae0fc6ca27a30957797035b1de1e2df5d44
includePaths:
- dev/**/*
excludePaths:
Expand All @@ -18,15 +18,15 @@ directories:
- path: schemas/
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
ref: 5e287ae0fc6ca27a30957797035b1de1e2df5d44
includePaths:
- core/api/src/graphql/public/schema.graphql
- core/api/src/graphql/admin/schema.graphql
newRootPath: core/api/src/graphql
- path: gql/
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
ref: 5e287ae0fc6ca27a30957797035b1de1e2df5d44
includePaths:
- bats/gql/**/*
newRootPath: bats/gql
2 changes: 1 addition & 1 deletion quickstart/vendir/values.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#@data/values
---
galoy_git_ref: 349a31b6e80df69c481e9a9736b0fe5efb4efce2
galoy_git_ref: 5e287ae0fc6ca27a30957797035b1de1e2df5d44

0 comments on commit f698e14

Please sign in to comment.