Skip to content

Commit 9c55dd3

Browse files
authored
Increase fields limit (#294)
1 parent 2e4f856 commit 9c55dd3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

code/go/pkg/validator/limits_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestLimitsValidation(t *testing.T) {
7777
{
7878
title: "fieldsPerDataStreamLimit exceeded",
7979
fsys: newMockFS().Good().WithFiles(
80-
newMockFile("data_stream/foo/fields/many-fields.yml").WithContent(generateFields(1500)),
80+
newMockFile("data_stream/foo/fields/many-fields.yml").WithContent(generateFields(2500)),
8181
),
8282
valid: false,
8383
},

versions/1/changelog.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
## This file documents changes in the package specification. It is NOT a package specification file.
33
## Newer entries go at the bottom.
44
##
5-
- version: 1.5.1-next
5+
- version: 1.6.0
66
changes:
77
- description: Validate required fields
88
type: enhancement
99
link: https://github.com/elastic/package-spec/pull/291
10+
- description: Increase fields limit from 1024 to 2048.
11+
type: enhancement
12+
link: https://github.com/elastic/package-spec/pull/294
1013
- version: 1.5.0
1114
changes:
1215
- description: Add kibana/csp-rule-template asset

versions/1/spec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
sizeLimit: 150MB
1212
configurationSizeLimit: 5MB
1313
relativePathSizeLimit: 3MB
14-
fieldsPerDataStreamLimit: 1024
14+
fieldsPerDataStreamLimit: 2048
1515
contents:
1616
- description: The main package manifest file
1717
type: file

0 commit comments

Comments
 (0)