Skip to content

Commit

Permalink
Merge branch '8.18' of github.com:elastic/elasticsearch into 8.18
Browse files Browse the repository at this point in the history
  • Loading branch information
JVerwolf committed Feb 21, 2025
2 parents d2f9247 + f45e283 commit e07bbec
Show file tree
Hide file tree
Showing 23 changed files with 439 additions and 156 deletions.
5 changes: 5 additions & 0 deletions docs/changelog/122938.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 122938
summary: Fix geoip databases index access after system feature migration (again)
area: Ingest Node
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/123155.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 123155
summary: Add `ElasticInferenceServiceCompletionServiceSettings`
area: Machine Learning
type: bug
issues: []
1 change: 1 addition & 0 deletions libs/entitlement/bridge/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
module org.elasticsearch.entitlement.bridge {
requires java.net.http;
requires jdk.net;
requires java.logging;

exports org.elasticsearch.entitlement.bridge;
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ForkJoinPool;
import java.util.function.BiPredicate;
import java.util.logging.FileHandler;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
Expand Down Expand Up @@ -820,9 +821,34 @@ public interface EntitlementChecker {

void check$java_nio_file_Files$$lines(Class<?> callerClass, Path path);

// file system providers
void check$java_nio_file_spi_FileSystemProvider$(Class<?> callerClass);

void check$java_util_logging_FileHandler$(Class<?> callerClass);

void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern);

void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, boolean append);

void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, int limit, int count);

void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, int limit, int count, boolean append);

void check$java_util_logging_FileHandler$(Class<?> callerClass, String pattern, long limit, int count, boolean append);

void check$java_util_logging_FileHandler$close(Class<?> callerClass, FileHandler that);

void check$java_net_http_HttpRequest$BodyPublishers$$ofFile(Class<?> callerClass, Path path);

void check$java_net_http_HttpResponse$BodyHandlers$$ofFile(Class<?> callerClass, Path path);

void check$java_net_http_HttpResponse$BodyHandlers$$ofFile(Class<?> callerClass, Path path, OpenOption... options);

void check$java_net_http_HttpResponse$BodyHandlers$$ofFileDownload(Class<?> callerClass, Path directory, OpenOption... openOptions);

void check$java_net_http_HttpResponse$BodySubscribers$$ofFile(Class<?> callerClass, Path directory);

void check$java_net_http_HttpResponse$BodySubscribers$$ofFile(Class<?> callerClass, Path directory, OpenOption... openOptions);

void checkNewFileSystem(Class<?> callerClass, FileSystemProvider that, URI uri, Map<String, ?> env);

void checkNewFileSystem(Class<?> callerClass, FileSystemProvider that, Path path, Map<String, ?> env);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
requires org.elasticsearch.entitlement;
requires org.elasticsearch.base; // SuppressForbidden
requires org.elasticsearch.logging;
requires java.logging;

exports org.elasticsearch.entitlement.qa.entitled; // Must be unqualified so non-modular IT tests can call us
}
Loading

0 comments on commit e07bbec

Please sign in to comment.