Skip to content

Commit 9f66fa6

Browse files
Merge branch 'main' into datetrunc-roundto-with-min-max-from-predicates
2 parents def5d8d + d2e75cc commit 9f66fa6

File tree

246 files changed

+11388
-2672
lines changed

Some content is hidden

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

246 files changed

+11388
-2672
lines changed

benchmarks/src/main/java/org/elasticsearch/benchmark/_nightly/esql/ValuesSourceReaderBenchmark.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,6 @@ record ItrAndOrd(PrimitiveIterator.OfInt itr, int ord) {}
579579
pages.add(
580580
new Page(
581581
new DocVector(
582-
583582
ShardRefCounted.ALWAYS_REFERENCED,
584583
blockFactory.newConstantIntBlockWith(0, size).asVector(),
585584
leafs.build().asBlock().asVector(),

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ private static ListMultimap<Class<?>, String> createLegacyRestTestBasePluginUsag
5959
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:deprecation:qa:early-deprecation-rest");
6060
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:deprecation:qa:rest");
6161
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:downsample:qa:with-security");
62-
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:enrich:qa:rest");
63-
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:enrich:qa:rest-with-advanced-security");
64-
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:enrich:qa:rest-with-security");
6562
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:ent-search:qa:rest");
6663
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:eql:qa:ccs-rolling-upgrade");
6764
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:eql:qa:correctness");

docs/changelog/130140.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 130140
2+
summary: Correct slow log user for RCS 2.0
3+
area: Authentication
4+
type: enhancement
5+
issues: []

docs/changelog/130279.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 130279
2+
summary: Fix missing removal of query cancellation callback in QueryPhase
3+
area: Search
4+
type: bug
5+
issues: [130071]

docs/changelog/130510.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 130510
2+
summary: Add fast path for single value in VALUES aggregator
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/130944.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 130944
2+
summary: Remove unnecessary calls to Fold
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 119756

docs/changelog/131733.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 131733
2+
summary: Replace `RoundTo` linear search evaluator with manual evaluators
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/131817.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 131817
2+
summary: Change equals and hashcode for `ConstantNullBlock`
3+
area: ES|QL
4+
type: bug
5+
issues: []

docs/changelog/131917.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 131917
2+
summary: Fix NPE on empty to_lower/to_upper call
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 131913

docs/reference/elasticsearch-plugins/cloud/ec-plugins-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ curl -X POST \
4949
-H "Authorization: ApiKey $CLOUD_API_KEY" \
5050
-H 'Content-Type: application/json' \
5151
-d '{
52-
"download_url" : "https://my_site/custom-plugin-8.4.3.zip",
52+
"download_url" : "<MY_SITE_URL>/custom-plugin-8.4.3.zip",
5353
"extension_type" : "plugin",
5454
"name" : "custom-plugin",
5555
"version" : "8.4.3"
@@ -323,7 +323,7 @@ curl -X POST \
323323
-H "Authorization: ApiKey $CLOUD_API_KEY" \
324324
-H 'Content-Type: application/json' \
325325
-d '{
326-
"download_url" : "https://my_site/custom-plugin-8.4.3-10212022.zip",
326+
"download_url" : "<MY_SITE_URL>/custom-plugin-8.4.3-10212022.zip",
327327
"extension_type" : "plugin",
328328
"name": "custom-plugin-10212022",
329329
"version" : "8.4.3"

0 commit comments

Comments
 (0)