Merged
Conversation
Contributor
|
Pinging @elastic/kibana-operations |
spalger
commented
Jul 3, 2019
src/legacy/core_plugins/embeddable_api/public/test_samples/embeddables/filterable_container.tsx
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
Contributor
💔 Build Failed |
Contributor
|
Solved that EditorConfigProvider issue via #40250 |
f4ff49d to
9c75ee6
Compare
spalger
commented
Jul 5, 2019
spalger
commented
Jul 5, 2019
x-pack/legacy/plugins/beats_management/server/rest_api/beats/enroll.ts
Outdated
Show resolved
Hide resolved
spalger
commented
Jul 5, 2019
x-pack/legacy/plugins/ml/public/data_frame/pages/data_frame_new_pivot/wizard.tsx
Outdated
Show resolved
Hide resolved
added 15 commits
July 5, 2019 09:56
sorenlouv
reviewed
Jul 9, 2019
| transactionId: transaction.transaction.id, | ||
| traceId: transaction.trace.id, | ||
| banana: 'ok' | ||
| traceId: transaction.trace.id |
Member
There was a problem hiding this comment.
Wat? Thanks for fixing this... 🍌not 🆗
sorenlouv
reviewed
Jul 9, 2019
sorenlouv
approved these changes
Jul 9, 2019
eliperelman
reviewed
Jul 9, 2019
src/legacy/core_plugins/data/public/expressions/expressions_service.test.tsx
Outdated
Show resolved
Hide resolved
jbudz
approved these changes
Jul 9, 2019
added 9 commits
July 10, 2019 08:03
# Conflicts: # x-pack/legacy/plugins/canvas/server/usage/custom_element_collector.ts # x-pack/legacy/plugins/canvas/server/usage/workpad_collector.ts
Contributor
💚 Build Succeeded |
Contributor
💔 Build Failed |
Contributor
Author
|
retest |
Contributor
Author
|
retest |
Contributor
💔 Build Failed |
Contributor
💚 Build Succeeded |
spalger
pushed a commit
to spalger/kibana
that referenced
this pull request
Jul 10, 2019
* [ts] upgrade to 3.5.2
* [ts] run from cwd so that relative paths are correct
* move eslint-disable-line comment into jsx attribute
* autofix eslint violations
* avoid generic type, it's not necessary and problematic
* make elasticsearch.cluster optional, many instances don't have them
* remove invalid prop
* expand AllowUnknownProperties to cleanly handle arrays
* esfilter values can sometimes be an array of strings
* allow exception objects to have unknown properties
* define accumulator as a boolean
* fix return type
* return a 404 if beat isn't found after update
* use Object.values for better types
* define return type of get() call
* define value type for Set
* define return value of get()
* define State property type
* use less get(), so ts can infer types
* define Set item type
* map state type
* make default_operator optional, since it's not always defined
* remove seemingly unused prop
* define return type of get() fn
* define inner type for state
* don't define base types are objects with index signatues
* regenerate public api docs
* make indices privileges optional too
* remove unnecessary index-signature from Exception interface
* use variadic _arg instead
* [core/plugin] use Record<string, any> rather than {}
* replace a couple more instances of {}
* revert some unnecessary changes
* remove unused types
* [reporting] output, payload, and meta are required properties
* bump to latest patch version
# Conflicts:
# x-pack/legacy/plugins/canvas/server/usage/custom_element_collector.ts
# x-pack/legacy/plugins/canvas/server/usage/workpad_collector.ts
spalger
pushed a commit
that referenced
this pull request
Jul 10, 2019
* [ts] upgrade to 3.5.3 (#40228) * [ts] upgrade to 3.5.2 * [ts] run from cwd so that relative paths are correct * move eslint-disable-line comment into jsx attribute * autofix eslint violations * avoid generic type, it's not necessary and problematic * make elasticsearch.cluster optional, many instances don't have them * remove invalid prop * expand AllowUnknownProperties to cleanly handle arrays * esfilter values can sometimes be an array of strings * allow exception objects to have unknown properties * define accumulator as a boolean * fix return type * return a 404 if beat isn't found after update * use Object.values for better types * define return type of get() call * define value type for Set * define return value of get() * define State property type * use less get(), so ts can infer types * define Set item type * map state type * make default_operator optional, since it's not always defined * remove seemingly unused prop * define return type of get() fn * define inner type for state * don't define base types are objects with index signatues * regenerate public api docs * make indices privileges optional too * remove unnecessary index-signature from Exception interface * use variadic _arg instead * [core/plugin] use Record<string, any> rather than {} * replace a couple more instances of {} * revert some unnecessary changes * remove unused types * [reporting] output, payload, and meta are required properties * bump to latest patch version # Conflicts: # x-pack/legacy/plugins/canvas/server/usage/custom_element_collector.ts # x-pack/legacy/plugins/canvas/server/usage/workpad_collector.ts * define inner type for Set * default `config.get()` to any instead of unknown
Contributor
Author
|
7.x/7.4: 1591c25 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR upgrades us to TS 3.5.2. All issues should be resolved. The main differences between these versions include the new
readonlysupport for array types, and slightly stricter handling of index-signatures forunknownvalues.