You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge remote-tracking branch 'elastic/master' into retention-lease-ccr
* elastic/master:
Remove immediate operation retry after mapping update (elastic#38873)
Remove mentioning of types from bulk API docs (elastic#38896)
SQL: change JDBC setup URL in the documentation (elastic#38564)
Skip BWC tests in checkPart1 and checkPart2 (elastic#38730)
Enable silent FollowersCheckerTest (elastic#38851)
Update TESTING.asciidoc with platform specific instructions (elastic#38802)
Use consistent view of realms for authentication (elastic#38815)
Stabilize RareClusterState (elastic#38671)
Increase Timeout in UnicastZenPingTests (elastic#38893)
Do not recommend installing vagrant-winrm elastic#38887
_cat/indices with Security, hide names when wildcard (elastic#38824)
SQL: fall back to using the field name for column label (elastic#38842)
Fix LocalIndexFollowingIT#testRemoveRemoteConnection() test (elastic#38709)
Remove joda time mentions in documentation (elastic#38720)
Add enabled status for token and api key service (elastic#38687)
Copy file name to clipboardExpand all lines: build.gradle
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -159,8 +159,10 @@ task verifyVersions {
159
159
* the enabled state of every bwc task. It should be set back to true
160
160
* after the backport of the backcompat code is complete.
161
161
*/
162
-
finalboolean bwc_tests_enabled =true
163
-
finalString bwc_tests_disabled_issue =""/* place a PR link here when committing bwc changes */
162
+
163
+
boolean bwc_tests_enabled =false
164
+
finalString bwc_tests_disabled_issue ="https://github.com/elastic/elasticsearch/pull/38687"/* place a PR link here when committing bwc changes */
165
+
164
166
if (bwc_tests_enabled ==false) {
165
167
if (bwc_tests_disabled_issue.isEmpty()) {
166
168
thrownewGradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")
@@ -170,6 +172,17 @@ if (bwc_tests_enabled == false) {
Copy file name to clipboardExpand all lines: docs/reference/ingest/processors/date-index-name.asciidoc
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -137,9 +137,9 @@ understands this to mean `2016-04-01` as is explained in the <<date-math-index-n
137
137
| `field` | yes | - | The field to get the date or timestamp from.
138
138
| `index_name_prefix` | no | - | A prefix of the index name to be prepended before the printed date. Supports <<accessing-template-fields,template snippets>>.
139
139
| `date_rounding` | yes | - | How to round the date when formatting the date into the index name. Valid values are: `y` (year), `M` (month), `w` (week), `d` (day), `h` (hour), `m` (minute) and `s` (second). Supports <<accessing-template-fields,template snippets>>.
140
-
| `date_formats` | no | yyyy-MM-dd'T'HH:mm:ss.SSSZ | An array of the expected date formats for parsing dates / timestamps in the document being preprocessed. Can be a Joda pattern or one of the following formats: ISO8601, UNIX, UNIX_MS, or TAI64N.
140
+
| `date_formats` | no | yyyy-MM-dd'T'HH:mm:ss.SSSZ | An array of the expected date formats for parsing dates / timestamps in the document being preprocessed. Can be a java time pattern or one of the following formats: ISO8601, UNIX, UNIX_MS, or TAI64N.
141
141
| `timezone` | no | UTC | The timezone to use when parsing the date and when date math index supports resolves expressions into concrete index names.
142
142
| `locale` | no | ENGLISH | The locale to use when parsing the date from the document being preprocessed, relevant when parsing month names or week days.
143
-
| `index_name_format` | no | yyyy-MM-dd | The format to be used when printing the parsed date into the index name. An valid Joda pattern is expected here. Supports <<accessing-template-fields,template snippets>>.
143
+
| `index_name_format` | no | yyyy-MM-dd | The format to be used when printing the parsed date into the index name. An valid java time pattern is expected here. Supports <<accessing-template-fields,template snippets>>.
Copy file name to clipboardExpand all lines: docs/reference/ingest/processors/date.asciidoc
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ in the same order they were defined as part of the processor definition.
14
14
| Name | Required | Default | Description
15
15
| `field` | yes | - | The field to get the date from.
16
16
| `target_field` | no | @timestamp | The field that will hold the parsed date.
17
-
| `formats` | yes | - | An array of the expected date formats. Can be a Joda pattern or one of the following formats: ISO8601, UNIX, UNIX_MS, or TAI64N.
17
+
| `formats` | yes | - | An array of the expected date formats. Can be a java time pattern or one of the following formats: ISO8601, UNIX, UNIX_MS, or TAI64N.
18
18
| `timezone` | no | UTC | The timezone to use when parsing the date. Supports <<accessing-template-fields,template snippets>>.
19
19
| `locale` | no | ENGLISH | The locale to use when parsing the date, relevant when parsing month names or week days. Supports <<accessing-template-fields,template snippets>>.
0 commit comments