Skip to content

Commit de6ce72

Browse files
matiwinnetouclaude
authored andcommitted
chore: upgrade to version 2.0.0-beta with yaci-store 2.0.0-beta4
- Bump version from 1.4.1 to 2.0.0-beta - Update yaci-store from 0.1.5 to 2.0.0-beta4 - Update cardano-client-lib from 0.6.6 to 0.7.0 - Update yaci from 0.3.8 to 0.4.0-beta5 - Enable governance data support (Voltaire) - Re-enable peer discovery in docker-compose config - Simplify database migration for address_utxo index - Remove maven.compiler.proc property 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ea5a95e commit de6ce72

File tree

5 files changed

+14
-26
lines changed

5 files changed

+14
-26
lines changed

.env.docker-compose

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ CONTINUE_PARSING_ON_ERROR=true
109109
SYNC=true
110110

111111
## Peer Discovery
112-
PEER_DISCOVERY=false
112+
PEER_DISCOVERY=true
113113

114114
## Token Registry
115115
TOKEN_REGISTRY_ENABLED=false

pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
</licenses>
2727

2828
<properties>
29-
<maven.compiler.proc>full</maven.compiler.proc>
30-
<revision>1.4.1</revision>
29+
<revision>2.0.0-beta</revision>
3130
<java.version>24</java.version>
3231
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3332
<version.spring-boot>3.5.0</version.spring-boot>
@@ -41,8 +40,8 @@
4140
<version.lombok>1.18.38</version.lombok>
4241
<version.swagger-annotations>2.2.8</version.swagger-annotations>
4342
<version.log4j>2.20.0</version.log4j>
44-
<version.client-lib>0.6.6</version.client-lib>
45-
<version.yaci>0.3.8</version.yaci>
43+
<version.client-lib>0.7.0</version.client-lib>
44+
<version.yaci>0.4.0-beta5</version.yaci>
4645
<version.commons-io>2.14.0</version.commons-io>
4746
<version.javax-validation-api>2.0.1.Final</version.javax-validation-api>
4847
<version.findsecbugs-plugin>1.13.0</version.findsecbugs-plugin>

test-data-generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
<dependency>
2929
<groupId>com.bloxbean.cardano</groupId>
3030
<artifactId>cardano-client-lib</artifactId>
31-
<version>0.6.4</version>
31+
<version>0.7.0</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>com.bloxbean.cardano</groupId>
3535
<artifactId>cardano-client-backend-blockfrost</artifactId>
36-
<version>0.6.4</version>
36+
<version>0.7.0</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>org.projectlombok</groupId>

yaci-indexer/pom.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818

1919
<properties>
2020
<java.version>24</java.version>
21-
<maven.compiler.proc>full</maven.compiler.proc>
22-
<yaci-store.version>0.1.5</yaci-store.version>
21+
<yaci-store.version>2.0.0-beta4</yaci-store.version>
2322
<sonar.exclusions>src/main/java/org/cardanofoundation/rosetta/yaciindexer/stores/txsize/model/*</sonar.exclusions>
2423
<!-- <version.spotless-maven-plugin>2.43.0</version.spotless-maven-plugin>-->
2524
</properties>
@@ -99,12 +98,12 @@
9998
<artifactId>yaci-store-admin-spring-boot-starter</artifactId>
10099
<version>${yaci-store.version}</version>
101100
</dependency>
102-
<!-- &lt;!&ndash; Used for governance data (Voltaire) &ndash;&gt;-->
103-
<!-- <dependency>-->
104-
<!-- <groupId>com.bloxbean.cardano</groupId>-->
105-
<!-- <artifactId>yaci-store-governance-spring-boot-starter</artifactId>-->
106-
<!-- <version>${yaci-store.version}</version>-->
107-
<!-- </dependency>-->
101+
<!-- Used for governance data (Voltaire) -->
102+
<dependency>
103+
<groupId>com.bloxbean.cardano</groupId>
104+
<artifactId>yaci-store-governance-spring-boot-starter</artifactId>
105+
<version>${yaci-store.version}</version>
106+
</dependency>
108107
<!-- Used for epoch_params -> protocolparams-->
109108
<dependency>
110109
<groupId>com.bloxbean.cardano</groupId>
Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
1-
DO $$
2-
BEGIN
3-
IF NOT EXISTS (
4-
SELECT 1 FROM pg_indexes
5-
WHERE indexname = 'idx_address_utxo_tx_hash'
6-
AND tablename = 'address_utxo'
7-
AND schemaname = current_schema()
8-
) THEN
9-
CREATE INDEX idx_address_utxo_tx_hash ON address_utxo USING btree (tx_hash);
10-
END IF;
11-
END $$;
1+
CREATE INDEX idx_address_utxo_tx_hash ON address_utxo USING btree (tx_hash);

0 commit comments

Comments
 (0)