Skip to content

Regenerate release notes for BC3 #87449

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 9, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ static String generateMigrationFile(QualifiedVersion version, String template, L
bindings.put("deprecationsByNotabilityByArea", deprecationsByNotabilityByArea);
bindings.put("isElasticsearchSnapshot", version.isSnapshot());
bindings.put("majorDotMinor", version.major() + "." + version.minor());
bindings.put("majorDotMinorDotRevision", version.major() + "." + version.minor() + "." + version.revision());
bindings.put("majorMinor", String.valueOf(version.major()) + version.minor());
bindings.put("nextMajor", (version.major() + 1) + ".0");
bindings.put("version", version);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ your application to {es} ${majorDotMinor}.

See also <<release-highlights>> and <<es-release-notes>>.
<% if (isElasticsearchSnapshot) { %>
coming::[${version}]
coming::[${majorDotMinorDotRevision}]
<% } %>

[discrete]
[[breaking-changes-${majorDotMinor}]]
=== Breaking changes
<% if (breakingByNotabilityByArea.isEmpty()) { %>
// tag::notable-breaking-changes[]
There are no breaking changes in {es} ${majorDotMinor}.
// end::notable-breaking-changes[]
<% } else { %>
The following changes in {es} ${majorDotMinor} might affect your applications
and prevent them from operating normally.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ your application to {es} 8.4.

See also <<release-highlights>> and <<es-release-notes>>.

coming::[8.4.0-SNAPSHOT]
coming::[8.4.0]


[discrete]
Expand Down
5 changes: 0 additions & 5 deletions docs/changelog/86227.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/86852.yaml

This file was deleted.

2 changes: 2 additions & 0 deletions docs/reference/migration/migrate_8_3.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ See also <<release-highlights>> and <<es-release-notes>>.

coming::[8.3.0]


[discrete]
[[breaking-changes-8.3]]
=== Breaking changes
Expand All @@ -19,6 +20,7 @@ coming::[8.3.0]
There are no breaking changes in {es} 8.3.
// end::notable-breaking-changes[]


[discrete]
[[deprecated-8.3]]
=== Deprecations
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/release-notes/8.3.0.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ Infra/Core::
* Faster GET _cluster/settings API {es-pull}86405[#86405] (issue: {es-issue}82342[#82342])
* Faster string writes by saving stream flushes {es-pull}86114[#86114]
* Fleet: Add `start_time` and `minimum_execution_duration` attributes to actions {es-pull}86167[#86167]
* Force property expansion for security policy {es-pull}87396[#87396]
* Refactor array part into a `BytesRefArray` which can be serialized and … {es-pull}85826[#85826]
* Speed up ip v4 parser {es-pull}86253[#86253]
* Use varhandles for primitive type conversion in more places {es-pull}85577[#85577] (issue: {es-issue}78823[#78823])
Expand Down Expand Up @@ -319,7 +320,6 @@ SQL::
* Update dependency - JLine - to v 3.21.0 {es-pull}83767[#83767] (issue: {es-issue}83575[#83575])

Search::
* Upgrade to Lucene 9.2 snapshot {es-pull}86227[#86227]
* Upgrade to lucene snapshot 978eef5459c {es-pull}86852[#86852]
* Update to public lucene 9.2.0 release {es-pull}87162[#87162]