Skip to content

Commit a9caddf

Browse files
Merge remote-tracking branch 'origin/main' into profiler-plugin
2 parents 62b9fc8 + da119b0 commit a9caddf

File tree

489 files changed

+10744
-3390
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+10744
-3390
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,27 @@ labels: [">bug", "needs:triage"]
44
body:
55
- type: markdown
66
attributes:
7-
value: |
7+
value: >
88
Github is reserved for bug reports and feature requests; it is
99
not the place for general questions. If you have a question or
1010
an unconfirmed bug, please visit the [forums](https://discuss.elastic.co/c/elasticsearch).
11-
Please also check your OS is [supported](https://www.elastic.co/support/matrix#show_os).
12-
If it is not, the issue is likely to be closed.
11+
Please also check your OS is [supported](https://www.elastic.co/support/matrix#show_os),
12+
and that the version of Elasticsearch has not passed [end-of-life](https://www.elastic.co/support/eol).
13+
If you are using an unsupported OS or an unsupported version then the issue is likely to be closed.
14+
1315
1416
For security vulnerabilities please only send reports to [email protected].
1517
See https://www.elastic.co/community/security for more information.
1618
19+
1720
Please fill in the following details to help us reproduce the bug:
1821
- type: input
1922
id: es_version
2023
attributes:
2124
label: Elasticsearch Version
22-
description: The version of Elasticsearch you are running, found with `bin/elasticsearch --version`
25+
description: >-
26+
The version of Elasticsearch you are running, found with `bin/elasticsearch --version`.
27+
Ensure this version has not [passed end-of-life](https://www.elastic.co/support/eol).
2328
validations:
2429
required: true
2530
- type: input

build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/PrecommitTaskPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ public void apply(Project project) {
3131
"lifecycle-base",
3232
p -> project.getTasks().named(LifecycleBasePlugin.CHECK_TASK_NAME).configure(t -> t.dependsOn(precommit))
3333
);
34-
project.getPluginManager().withPlugin("java", p -> {
34+
project.getPluginManager().withPlugin("java-base", p -> {
3535
// run compilation as part of precommit
3636
project.getExtensions().getByType(JavaPluginExtension.class).getSourceSets().all(sourceSet ->
37-
precommit.configure(t -> t.shouldRunAfter(sourceSet.getClassesTaskName()))
37+
precommit.configure(t -> t.dependsOn(sourceSet.getClassesTaskName()))
3838
);
3939
// make sure tests run after all precommit tasks
4040
project.getTasks().withType(Test.class).configureEach(t -> t.mustRunAfter(precommit));

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchJavaBasePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ public class ElasticsearchJavaBasePlugin implements Plugin<Project> {
3838
public void apply(Project project) {
3939
// make sure the global build info plugin is applied to the root project
4040
project.getRootProject().getPluginManager().apply(GlobalBuildInfoPlugin.class);
41-
// common repositories setup
4241
project.getPluginManager().apply(JavaBasePlugin.class);
42+
// common repositories setup
4343
project.getPluginManager().apply(RepositoriesSetupPlugin.class);
4444
project.getPluginManager().apply(ElasticsearchTestBasePlugin.class);
4545
project.getPluginManager().apply(PrecommitTaskPlugin.class);

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ tasks.register("verifyVersions") {
137137
* after the backport of the backcompat code is complete.
138138
*/
139139

140-
boolean bwc_tests_enabled = false
140+
boolean bwc_tests_enabled = true
141141
// place a PR link here when committing bwc changes:
142-
String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/91823"
142+
String bwc_tests_disabled_issue = ""
143143
if (bwc_tests_enabled == false) {
144144
if (bwc_tests_disabled_issue.isEmpty()) {
145145
throw new GradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")

docs/changelog/91256.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 91256
2+
summary: Prevalidate node removal API (pt. 2)
3+
area: Allocation
4+
type: enhancement
5+
issues:
6+
- 87776

docs/changelog/91508.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 91508
2+
summary: "Add kibana.stats.elasticsearch_client stats to the monitoring index templates."
3+
area: Monitoring
4+
type: enhancement
5+
issues: []

docs/changelog/91701.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 91701
2+
summary: "[Fleet] Added logs-elastic_agent* read privileges to `kibana_system`"
3+
area: Authorization
4+
type: enhancement
5+
issues: []

docs/changelog/91704.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pr: 91704
2+
summary: '`DoPrivileged` in `ElasticsearchEncaughtExceptionHandler` and check modify
3+
thread'
4+
area: Infra/Core
5+
type: bug
6+
issues:
7+
- 91650

docs/changelog/91772.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 91772
2+
summary: Add `trace.id` to request trace logs
3+
area: Infra/Core
4+
type: bug
5+
issues: [88174]

docs/changelog/91780.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 91780
2+
summary: Check stable plugin version at install and load time
3+
area: Infra/Plugins
4+
type: enhancement
5+
issues: []

0 commit comments

Comments
 (0)