Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/install/stack_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ package install

const (
// DefaultStackVersion is the default version of the stack
DefaultStackVersion = "8.4.1"
DefaultStackVersion = "8.5.0"
)
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
{
"example": {
"float": 6.9200717685635164E18,
"float": 6.920071768563516E18,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that something has changed on parsing of big numbers in Elasticsearch 8.5.0, let's hope this doesn't affect the tests of many integrations 🤞

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reported in elastic/elasticsearch#91563 just in case.

Copy link
Member Author

@jsoriano jsoriano Nov 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FTR, this number is originally 6920071768563516847, and processed with:

  - convert:
    field: message
    target_field: example.float
    type: double

"float_as_long": 6.9200716E18,
"long": 6920071768563516847,
"long_as_float": 6920071768563516847
Expand All @@ -67,7 +67,7 @@
{
"example": {
"float": 1.624617166182E9,
"float_as_long": 1.62461722E9
"float_as_long": 1.6246172E9
Copy link
Member Author

@jsoriano jsoriano Nov 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FTR, this number is originally 1624617166.182, and processed with:

  - convert:
    field: message
    target_field: example.float_as_long
    type: float

},
"message": "1624617166.182"
}
Expand Down