Skip to content

Commit e94a88c

Browse files
authored
Ingest attachment ships in-box from 8.4 (#44)
1 parent 9afc750 commit e94a88c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Elastic.Stack.ArtifactsApi/Products/ElasticsearchPlugin.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ public ElasticsearchPlugin(string plugin, Func<ElasticVersion, bool> isValid = n
3636
public static ElasticsearchPlugin DiscoveryGCE { get; } = new ElasticsearchPlugin("discovery-gce");
3737

3838
public static ElasticsearchPlugin IngestAttachment { get; } =
39-
new ElasticsearchPlugin("ingest-attachment", version => version >= "5.0.0-alpha3");
39+
new ElasticsearchPlugin("ingest-attachment", version => version >= "5.0.0-alpha3")
40+
{
41+
ShippedByDefaultAsOf = "8.4.0"
42+
};
4043

4144
public static ElasticsearchPlugin IngestGeoIp { get; } =
4245
new ElasticsearchPlugin("ingest-geoip", version => version >= "5.0.0-alpha3")

0 commit comments

Comments
 (0)