Commit Graph

1845 Commits

Author SHA1 Message Date
Mark Paluch
563aaf7565 Prepare 4.3 GA (2024.0.0).
See #1489
2024-05-17 11:49:10 +02:00
Mark Paluch
5923cbebbc After release cleanups.
See #1484
2024-04-12 10:52:59 +02:00
Mark Paluch
8122477d6d Prepare next development iteration.
See #1484
2024-04-12 10:52:58 +02:00
Mark Paluch
2a128f5768 Release version 4.3 RC1 (2024.0.0).
See #1484
2024-04-12 10:50:41 +02:00
Mark Paluch
6f4fee859d Prepare 4.3 RC1 (2024.0.0).
See #1484
2024-04-12 10:50:27 +02:00
Mark Paluch
2c6b029a6d Polishing.
Reformat code. Lazily obtain the keyspace name from CqlSession in SimpleUserTypeResolver.

See #380
Original pull request: #1485
2024-03-18 14:42:45 +01:00
Christoph Strobl
f31c877fdb Allow lenient infrastructure startup.
By avoiding interaction with a potential lazy proxy for a given CqlSession until it becomes mandatory we allow users to leverage lazy bean intialization for CqlSession during application startup.
To fully enable this changes we need changes in the boot autoconfigration.

Closes #380
Original pull request: #1485
2024-03-18 14:42:45 +01:00
Mark Paluch
95f7080eff After release cleanups.
See #1480
2024-03-15 11:09:58 +01:00
Mark Paluch
80b1258887 Prepare next development iteration.
See #1480
2024-03-15 11:09:57 +01:00
Mark Paluch
fd21aa06ed Release version 4.3 M2 (2024.0.0).
See #1480
2024-03-15 11:07:31 +01:00
Mark Paluch
c02dc58297 Prepare 4.3 M2 (2024.0.0).
See #1480
2024-03-15 11:07:09 +01:00
Christoph Strobl
8f2ed0c9d3 After release cleanups.
See #1453
2024-02-16 14:41:25 +01:00
Christoph Strobl
8d43b06b65 Prepare next development iteration.
See #1453
2024-02-16 14:41:23 +01:00
Christoph Strobl
b26379fb95 Release version 4.3 M1 (2024.0.0).
See #1453
2024-02-16 14:37:38 +01:00
Christoph Strobl
05b0d3e70f Prepare 4.3 M1 (2024.0.0).
See #1453
2024-02-16 14:37:00 +01:00
Mark Paluch
5279c5fae2 Add support for ValueExpression.
Closes #1477
2024-02-12 15:49:15 +01:00
Mark Paluch
d01caa4795 Refactor @PrimaryKey and @PrimaryKeyColumn to be aliases for @Column.
Both annotations are now aliases for `@Column`.

Closes #1476
2024-02-08 09:31:20 +01:00
Mark Paluch
04e83612f4 Refine documentation.
Remove links to absent headers. Merge introduction to Cassandra section page.

Closes #1475
2024-02-07 09:29:09 +01:00
Eric Haag
60a7079444 Update Revved up by Develocity badge.
Closes #1470
2024-02-07 09:27:00 +01:00
Mark Paluch
22c236ca99 Inspect collection elements during write value conversion.
We now deeply introspect collection and map elements when obtaining write values to ensure proper UDT and tuple conversions.

Previously, collections containing UDT values did a pass-thru of values instead of applying UDT mapping.

Closes #1473
2024-02-06 14:53:34 +01:00
Mark Paluch
b436f92aaf Refine Artifactory build name.
See #1453
2024-01-31 15:08:49 +01:00
Mark Paluch
de69842956 Read DTO projection properties only once.
We ensure to not read DTO properties multiple times if these are already read by their persistence creator.

Closes #1472
2024-01-29 09:26:38 +01:00
Mark Paluch
e68a0472c7 Introduce caching and equality checks to derived persistent entities and properties.
We now provide equals/hashCode and selective caching for derived properties and entities derived from embedded properties and constructor-annotated properties to avoid memory leaks using properties and entities as cache keys.

Closes #1471
2024-01-24 14:00:45 +01:00
Mark Paluch
45cb35b4d2 Migrate to Cassandra driver at org.apache.cassandra.
Closes #1467
2024-01-11 08:44:00 +01:00
Mark Paluch
9b930ed4ff Extend license header copyright years to 2024.
See #1465
2024-01-02 14:41:39 +01:00
Mark Paluch
275b037370 Update CI properties.
See #1453
2023-12-14 08:50:31 +01:00
Mark Paluch
dcc8478a2a Upgrade to Maven Wrapper 3.9.6.
See #1459
2023-12-14 08:40:40 +01:00
Mark Paluch
f9f1d2e375 Adopt CassandraParameters and CassandraParameter to reflect the actual parameter type when using generics.
Closes #1456
2023-12-08 11:33:56 +01:00
Mark Paluch
8338715019 Introduce property for Jenkins user and Artifactory server details.
Closes #1455
2023-11-27 09:39:54 +01:00
Runbing
95a76826e7 Fixed the URL for the Spring Data Commons documentation.
I fixed an incorrect URL in the **antora.yml** file that was preventing other pages from linking to the Spring Data Commons documentation.

Closes #1454
2023-11-20 11:24:13 +01:00
Mark Paluch
b6043dfabd After release cleanups.
See #1443
2023-11-17 14:33:26 +01:00
Mark Paluch
6a0533cc2b Prepare next development iteration.
See #1443
2023-11-17 14:33:24 +01:00
Mark Paluch
eab43b7101 Release version 4.2 GA (2023.1.0).
See #1443
2023-11-17 14:29:58 +01:00
Mark Paluch
4443080f62 Prepare 4.2 GA (2023.1.0).
See #1443
2023-11-17 14:28:28 +01:00
Mark Paluch
ee7def18ce Polishing.
Use shorter field names.

See #1449
2023-11-13 14:34:29 +01:00
Mark Paluch
75cb544f9d Add support for property @ValueConverter.
We now support property-specific value converters to apply value conversion for individual properties instead being limited to the type level.

Closes #1449
2023-11-13 14:34:24 +01:00
Mark Paluch
1a1301d7cd Refine documentation of BeforeConvert/BeforeSave lifecycle hooks.
Closes #1448
2023-11-10 10:19:10 +01:00
Mark Paluch
6d1685729d Upgrade snappy-java to 1.1.10.5.
Closes #1435
2023-10-25 15:22:09 +02:00
Mark Paluch
e9f0a08481 Document how to use SessionBuilderConfigurer.
Closes #1447
2023-10-25 15:20:36 +02:00
Eric Haag
2489fe44b2 Connect build to ge.spring.io.
This change publishes a build scan to ge.spring.io for every local build from an authenticated Spring committer and for CI where appropriate access tokens are available. The build will not fail if publishing fails.

This change also allows the build to benefit from local and remote build caching, providing faster builds for all contributors.

Additionally, the project will have access to all features of Gradle Enterprise such as:

- Dashboards to view all historical build scans, along with performance trends over time
- Build failure analytics for enhanced investigation and diagnosis of build failures
- Test failure analytics to better understand trends and causes around slow, failing, and flaky tests

See #1445.
2023-10-19 10:43:20 -05:00
Greg L. Turnquist
2dc2b49892 Update CI properties.
See #1443
2023-10-19 09:38:54 -05:00
Greg L. Turnquist
d76a051b0b Update CI properties.
See #1443
2023-10-16 13:28:20 -05:00
John Blum
4e44abd09b After release cleanups.
See #1433
2023-10-13 08:52:00 -07:00
John Blum
472881ac95 Prepare next development iteration.
See #1433
2023-10-13 08:51:58 -07:00
John Blum
2e32a237f0 Release version 4.2 RC1 (2023.1.0).
See #1433
2023-10-13 08:44:25 -07:00
John Blum
af885fcb79 Prepare 4.2 RC1 (2023.1.0).
See #1433
2023-10-13 08:43:55 -07:00
John Blum
771277d4a6 Update CI properties.
See #1433
2023-10-04 17:24:10 -07:00
John Blum
7f6c9dae11 Upgrade to Maven Wrapper 3.9.5.
See #1437
2023-10-04 16:58:01 -07:00
Mark Paluch
83e99ebd18 Upgrade to OpenWebBeans 4.0.
Closes #1436
2023-09-29 09:37:51 +02:00
Mark Paluch
aa6aab6199 Add missing spread operators to CqlTemplate kotlin extensions.
Closes #1434
2023-09-20 15:38:43 +02:00