Skip to content
Open
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 whats-new.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ IMPORTANT: If migrating from earlier versions, be sure to also check out the lin
[[embedded-table]]
== @EmbeddedTable

The Jakarta Persistence compliant way to specify the table to which an embedded value maps is tedious, at best, requiring us of multiple `@AttributeOverride` and/or `@AssociationOverride` annotations -
The Jakarta Persistence compliant way to specify the table to which an embedded value maps is tedious at best, requiring use of multiple `@AttributeOverride` and/or `@AssociationOverride` annotations -

====
[source,java]
Expand Down Expand Up @@ -58,7 +58,7 @@ class Person {
----
====

The annotation is only legal on top-level embedded. Placement on nested embedded values will be ignored.
The annotation is only legal on a top-level embedded. Placement on nested embedded values will be ignored.

[[read-only-replicas]]
== Read-only replicas
Expand Down Expand Up @@ -141,7 +141,7 @@ Also, support for vectors in the following databases was added:

Two new methods were added to `SchemaManager`:

- `resynchronizeGenerators()` force all sequences to catch up with data imported to their corresponding tables
- `resynchronizeGenerators()` forces all sequences to catch up with data imported to their corresponding tables
- `truncateTable()` truncates a single table and resets its corresponding primary key sequence

In addition, `truncate()` now automatically resets all primary key sequences and tables backing table generators.
Expand Down