Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Storm provides a Bill of Materials (BOM) for centralized version management. Imp
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-bom</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -153,7 +153,7 @@ Storm provides a Bill of Materials (BOM) for centralized version management. Imp

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))
}
```

Expand All @@ -163,7 +163,7 @@ With the BOM imported, add Storm modules without specifying versions:

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))
implementation("st.orm:storm-kotlin")
runtimeOnly("st.orm:storm-core")
}
Expand Down
8 changes: 4 additions & 4 deletions docs/api-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The main Java API module. It provides the `ORMTemplate` entry point, repository
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-java21</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```

Expand Down Expand Up @@ -44,7 +44,7 @@ Spring Framework integration for Java. Provides `RepositoryBeanFactoryPostProces
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-spring</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```

Expand All @@ -58,7 +58,7 @@ Spring Boot auto-configuration for Java. Automatically creates an `ORMTemplate`
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-spring-boot-starter</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```

Expand All @@ -83,7 +83,7 @@ The `storm-metamodel-processor` annotation processor generates type-safe metamod
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-metamodel-processor</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down
14 changes: 7 additions & 7 deletions docs/api-kotlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ The main Kotlin API module. It provides the `ORMTemplate` interface, extension f

```kotlin
// Gradle (Kotlin DSL)
implementation("st.orm:storm-kotlin:1.9.0")
implementation("st.orm:storm-kotlin:1.9.1")
```

```xml
<!-- Maven -->
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-kotlin</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```

Expand All @@ -33,7 +33,7 @@ The Kotlin API does not depend on any preview features. All APIs are stable and
Spring Framework integration for Kotlin. Provides `RepositoryBeanFactoryPostProcessor` for repository auto-discovery and injection, `@EnableTransactionIntegration` for bridging Storm's programmatic transactions with Spring's `@Transactional`, and transaction-aware coroutine support. Add this module when you use Spring Framework without Spring Boot.

```kotlin
implementation("st.orm:storm-kotlin-spring:1.9.0")
implementation("st.orm:storm-kotlin-spring:1.9.1")
```

See [Spring Integration](spring-integration.md) for configuration details.
Expand All @@ -43,7 +43,7 @@ See [Spring Integration](spring-integration.md) for configuration details.
Spring Boot auto-configuration for Kotlin. Automatically creates an `ORMTemplate` bean from the `DataSource`, discovers repositories, enables transaction integration, and binds `storm.*` properties from `application.yml`. This is the recommended dependency for Spring Boot applications.

```kotlin
implementation("st.orm:storm-kotlin-spring-boot-starter:1.9.0")
implementation("st.orm:storm-kotlin-spring-boot-starter:1.9.1")
```

See [Spring Integration: Spring Boot Starter](spring-integration.md#spring-boot-starter) for what the starter provides and how to override its defaults.
Expand All @@ -53,7 +53,7 @@ See [Spring Integration: Spring Boot Starter](spring-integration.md#spring-boot-
Validation support for Kotlin entities. Provides integration with Kotlin validation libraries for entity constraint checking.

```kotlin
implementation("st.orm:storm-kotlin-validator:1.9.0")
implementation("st.orm:storm-kotlin-validator:1.9.1")
```

## Key Classes and Functions
Expand Down Expand Up @@ -104,7 +104,7 @@ plugins {
}

dependencies {
ksp("st.orm:storm-metamodel-ksp:1.9.0")
ksp("st.orm:storm-metamodel-ksp:1.9.1")
}
```

Expand All @@ -123,7 +123,7 @@ dependencies {
<path>
<groupId>st.orm</groupId>
<artifactId>storm-metamodel-processor</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down
30 changes: 15 additions & 15 deletions docs/dialects.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,39 +27,39 @@ Add the dialect dependency for your database. Dialects are runtime-only dependen
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-postgresql</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>runtime</scope>
</dependency>

<!-- MySQL -->
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-mysql</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>runtime</scope>
</dependency>

<!-- MariaDB -->
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-mariadb</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>runtime</scope>
</dependency>

<!-- Oracle -->
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-oracle</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>runtime</scope>
</dependency>

<!-- MS SQL Server -->
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-mssqlserver</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>runtime</scope>
</dependency>
```
Expand All @@ -68,38 +68,38 @@ Add the dialect dependency for your database. Dialects are runtime-only dependen

```groovy
// PostgreSQL
runtimeOnly 'st.orm:storm-postgresql:1.9.0'
runtimeOnly 'st.orm:storm-postgresql:1.9.1'

// MySQL
runtimeOnly 'st.orm:storm-mysql:1.9.0'
runtimeOnly 'st.orm:storm-mysql:1.9.1'

// MariaDB
runtimeOnly 'st.orm:storm-mariadb:1.9.0'
runtimeOnly 'st.orm:storm-mariadb:1.9.1'

// Oracle
runtimeOnly 'st.orm:storm-oracle:1.9.0'
runtimeOnly 'st.orm:storm-oracle:1.9.1'

// MS SQL Server
runtimeOnly 'st.orm:storm-mssqlserver:1.9.0'
runtimeOnly 'st.orm:storm-mssqlserver:1.9.1'
```

### Gradle (Kotlin DSL)

```kotlin
// PostgreSQL
runtimeOnly("st.orm:storm-postgresql:1.9.0")
runtimeOnly("st.orm:storm-postgresql:1.9.1")

// MySQL
runtimeOnly("st.orm:storm-mysql:1.9.0")
runtimeOnly("st.orm:storm-mysql:1.9.1")

// MariaDB
runtimeOnly("st.orm:storm-mariadb:1.9.0")
runtimeOnly("st.orm:storm-mariadb:1.9.1")

// Oracle
runtimeOnly("st.orm:storm-oracle:1.9.0")
runtimeOnly("st.orm:storm-oracle:1.9.1")

// MS SQL Server
runtimeOnly("st.orm:storm-mssqlserver:1.9.0")
runtimeOnly("st.orm:storm-mssqlserver:1.9.1")
```

## Automatic Detection
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Storm provides a Bill of Materials (BOM) for centralized version management. Imp

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))
implementation("st.orm:storm-kotlin")
runtimeOnly("st.orm:storm-core")
}
Expand All @@ -154,7 +154,7 @@ dependencies {
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-bom</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
18 changes: 9 additions & 9 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Storm provides a Bill of Materials (BOM) for centralized version management. Imp

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))
}
```

Expand All @@ -39,7 +39,7 @@ dependencies {
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-bom</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -58,7 +58,7 @@ dependencies {
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-bom</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -70,7 +70,7 @@ dependencies {

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))
}
```

Expand All @@ -86,7 +86,7 @@ dependencies {

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))

implementation("st.orm:storm-kotlin")
}
Expand Down Expand Up @@ -121,7 +121,7 @@ dependencies {

```kotlin
dependencies {
implementation(platform("st.orm:storm-bom:1.9.0"))
implementation(platform("st.orm:storm-bom:1.9.1"))

implementation("st.orm:storm-java21")
}
Expand Down Expand Up @@ -182,7 +182,7 @@ plugins {
}

dependencies {
ksp("st.orm:storm-metamodel-ksp:1.9.0")
ksp("st.orm:storm-metamodel-ksp:1.9.1")
}
```

Expand All @@ -201,7 +201,7 @@ dependencies {
<path>
<groupId>st.orm</groupId>
<artifactId>storm-metamodel-processor</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand All @@ -227,7 +227,7 @@ dependencies {

```kotlin
dependencies {
annotationProcessor("st.orm:storm-metamodel-processor:1.9.0")
annotationProcessor("st.orm:storm-metamodel-processor:1.9.1")
}
```

Expand Down
10 changes: 5 additions & 5 deletions docs/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ Works with both Kotlin and Java projects. Two variants are available, matching t
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-jackson2</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```

```groovy
implementation 'st.orm:storm-jackson2:1.9.0'
implementation 'st.orm:storm-jackson2:1.9.1'
```

**Jackson 3** (requires Jackson 3.0+):
Expand All @@ -33,12 +33,12 @@ implementation 'st.orm:storm-jackson2:1.9.0'
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-jackson3</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
```

```groovy
implementation 'st.orm:storm-jackson3:1.9.0'
implementation 'st.orm:storm-jackson3:1.9.1'
```

The two modules are mutually exclusive on the classpath. Both provide the same public API (`st.orm.jackson` package), so switching between them requires only changing the Maven dependency.
Expand All @@ -53,7 +53,7 @@ plugins {
}

dependencies {
implementation("st.orm:storm-kotlinx-serialization:1.9.0")
implementation("st.orm:storm-kotlinx-serialization:1.9.1")
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/metamodel.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ plugins {
}

dependencies {
ksp("st.orm:storm-metamodel-processor:1.9.0")
ksp("st.orm:storm-metamodel-processor:1.9.1")
}
```

### Gradle (Java)

```kotlin
annotationProcessor("st.orm:storm-metamodel-processor:1.9.0")
annotationProcessor("st.orm:storm-metamodel-processor:1.9.1")
```

### Maven (Java)
Expand All @@ -65,7 +65,7 @@ annotationProcessor("st.orm:storm-metamodel-processor:1.9.0")
<dependency>
<groupId>st.orm</groupId>
<artifactId>storm-metamodel-processor</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down
Loading