Skip to content

Commit 28d5c74

Browse files
committed
chore(release): 0.9.20
1 parent 5acb554 commit 28d5c74

File tree

5 files changed

+9
-19
lines changed

5 files changed

+9
-19
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.9.20](https://github.com/InverterNetwork/indexer/compare/v0.9.19...v0.9.20) (2025-03-01)
6+
7+
8+
### Bug Fixes
9+
10+
* **ci:** improve database detection and logging in blue-green deployment ([92ab669](https://github.com/InverterNetwork/indexer/commit/92ab6694a3d6c1b5a36a6f2015cbf77864186c83))
11+
* **ci:** simplify database detection in ECS deployment workflow ([5acb554](https://github.com/InverterNetwork/indexer/commit/5acb554b43b08450edfeb3be8d8ba2f86dbf926e))
12+
513
### [0.9.19](https://github.com/InverterNetwork/indexer/compare/v0.9.18...v0.9.19) (2025-03-01)
614

715

graphql/src/gen/schema.graphql

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6424,7 +6424,6 @@ type MigrationConfig {
64246424
db_write_timestamp: timestamp
64256425
dexAdapter: String!
64266426
id: String!
6427-
initialRewardDuration: numeric!
64286427
isImmutable: Boolean!
64296428
lpTokenRecipient: String!
64306429
migrationThreshold: numeric!
@@ -6440,7 +6439,6 @@ input MigrationConfig_bool_exp {
64406439
db_write_timestamp: timestamp_comparison_exp
64416440
dexAdapter: String_comparison_exp
64426441
id: String_comparison_exp
6443-
initialRewardDuration: numeric_comparison_exp
64446442
isImmutable: Boolean_comparison_exp
64456443
lpTokenRecipient: String_comparison_exp
64466444
migrationThreshold: numeric_comparison_exp
@@ -6451,7 +6449,6 @@ input MigrationConfig_order_by {
64516449
db_write_timestamp: order_by
64526450
dexAdapter: order_by
64536451
id: order_by
6454-
initialRewardDuration: order_by
64556452
isImmutable: order_by
64566453
lpTokenRecipient: order_by
64576454
migrationThreshold: order_by
@@ -6470,9 +6467,6 @@ enum MigrationConfig_select_column {
64706467
"""column name"""
64716468
id
64726469

6473-
"""column name"""
6474-
initialRewardDuration
6475-
64766470
"""column name"""
64776471
isImmutable
64786472

@@ -6499,7 +6493,6 @@ input MigrationConfig_stream_cursor_value_input {
64996493
db_write_timestamp: timestamp
65006494
dexAdapter: String
65016495
id: String
6502-
initialRewardDuration: numeric
65036496
isImmutable: Boolean
65046497
lpTokenRecipient: String
65056498
migrationThreshold: numeric

graphql/src/gen/schema.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2335,7 +2335,6 @@ export interface MigrationConfig {
23352335
db_write_timestamp: Scalars['timestamp'] | null
23362336
dexAdapter: Scalars['String']
23372337
id: Scalars['String']
2338-
initialRewardDuration: Scalars['numeric']
23392338
isImmutable: Scalars['Boolean']
23402339
lpTokenRecipient: Scalars['String']
23412340
migrationThreshold: Scalars['numeric']
@@ -2347,7 +2346,6 @@ export type MigrationConfig_select_column =
23472346
| 'db_write_timestamp'
23482347
| 'dexAdapter'
23492348
| 'id'
2350-
| 'initialRewardDuration'
23512349
| 'isImmutable'
23522350
| 'lpTokenRecipient'
23532351
| 'migrationThreshold'
@@ -9512,7 +9510,6 @@ export interface MigrationConfigGenqlSelection {
95129510
db_write_timestamp?: boolean | number
95139511
dexAdapter?: boolean | number
95149512
id?: boolean | number
9515-
initialRewardDuration?: boolean | number
95169513
isImmutable?: boolean | number
95179514
lpTokenRecipient?: boolean | number
95189515
migrationThreshold?: boolean | number
@@ -9528,7 +9525,6 @@ export interface MigrationConfig_bool_exp {
95289525
db_write_timestamp?: timestamp_comparison_exp | null
95299526
dexAdapter?: String_comparison_exp | null
95309527
id?: String_comparison_exp | null
9531-
initialRewardDuration?: numeric_comparison_exp | null
95329528
isImmutable?: Boolean_comparison_exp | null
95339529
lpTokenRecipient?: String_comparison_exp | null
95349530
migrationThreshold?: numeric_comparison_exp | null
@@ -9539,7 +9535,6 @@ export interface MigrationConfig_order_by {
95399535
db_write_timestamp?: order_by | null
95409536
dexAdapter?: order_by | null
95419537
id?: order_by | null
9542-
initialRewardDuration?: order_by | null
95439538
isImmutable?: order_by | null
95449539
lpTokenRecipient?: order_by | null
95459540
migrationThreshold?: order_by | null
@@ -9558,7 +9553,6 @@ export interface MigrationConfig_stream_cursor_value_input {
95589553
db_write_timestamp?: Scalars['timestamp'] | null
95599554
dexAdapter?: Scalars['String'] | null
95609555
id?: Scalars['String'] | null
9561-
initialRewardDuration?: Scalars['numeric'] | null
95629556
isImmutable?: Scalars['Boolean'] | null
95639557
lpTokenRecipient?: Scalars['String'] | null
95649558
migrationThreshold?: Scalars['numeric'] | null
@@ -17664,7 +17658,6 @@ export const enumMigrationConfigSelectColumn = {
1766417658
db_write_timestamp: 'db_write_timestamp' as const,
1766517659
dexAdapter: 'dexAdapter' as const,
1766617660
id: 'id' as const,
17667-
initialRewardDuration: 'initialRewardDuration' as const,
1766817661
isImmutable: 'isImmutable' as const,
1766917662
lpTokenRecipient: 'lpTokenRecipient' as const,
1767017663
migrationThreshold: 'migrationThreshold' as const,

graphql/src/gen/types.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4711,7 +4711,6 @@ export default {
47114711
db_write_timestamp: [622],
47124712
dexAdapter: [480],
47134713
id: [480],
4714-
initialRewardDuration: [597],
47154714
isImmutable: [47],
47164715
lpTokenRecipient: [480],
47174716
migrationThreshold: [597],
@@ -4724,7 +4723,6 @@ export default {
47244723
db_write_timestamp: [623],
47254724
dexAdapter: [482],
47264725
id: [482],
4727-
initialRewardDuration: [598],
47284726
isImmutable: [48],
47294727
lpTokenRecipient: [482],
47304728
migrationThreshold: [598],
@@ -4734,7 +4732,6 @@ export default {
47344732
db_write_timestamp: [599],
47354733
dexAdapter: [599],
47364734
id: [599],
4737-
initialRewardDuration: [599],
47384735
isImmutable: [599],
47394736
lpTokenRecipient: [599],
47404737
migrationThreshold: [599],
@@ -4750,7 +4747,6 @@ export default {
47504747
db_write_timestamp: [622],
47514748
dexAdapter: [480],
47524749
id: [480],
4753-
initialRewardDuration: [597],
47544750
isImmutable: [47],
47554751
lpTokenRecipient: [480],
47564752
migrationThreshold: [597],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "indexer",
3-
"version": "0.9.19",
3+
"version": "0.9.20",
44
"scripts": {
55
"dev": "DEBUG=* env $(cat .env | xargs) envio dev",
66
"watch": "tsc --watch --noEmit -p tsconfig.json",

0 commit comments

Comments
 (0)