Skip to content

Commit

Permalink
Merge branch '8.14' into backport/8.14/pr-183842
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrazb authored Jun 13, 2024
2 parents d53fa3c + cca8bd7 commit 94a5d96
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dashboarding"
],
"private": true,
"version": "8.14.1",
"version": "8.14.2",
"branch": "8.14",
"types": "./kibana.d.ts",
"tsdocMetadata": "./build/tsdoc-metadata.json",
Expand Down
48 changes: 48 additions & 0 deletions packages/kbn-search-connectors/types/native_connectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -866,8 +866,56 @@ export const NATIVE_CONNECTOR_DEFINITIONS: Record<string, NativeConnector | unde
validations: [],
value: false,
},
use_document_level_security: {
default_value: null,
depends_on: [],
display: DisplayType.TOGGLE,
label: ENABLE_DOCUMENT_LEVEL_SECURITY_LABEL,
options: [],
order: 8,
required: true,
sensitive: false,
tooltip: getEnableDocumentLevelSecurityTooltip(
i18n.translate('searchConnectors.nativeConnectors.dropbox.tooltipName', {
defaultMessage: 'Dropbox',
})
),
type: FieldType.BOOLEAN,
ui_restrictions: [],
validations: [],
value: false,
},
include_inherited_users_and_groups: {
default_value: null,
depends_on: [{ field: 'use_document_level_security', value: true }],
display: DisplayType.TOGGLE,
label: i18n.translate(
'searchConnectors.nativeConnectors.dropbox.includeInheritedUsersAndGroups.label',
{
defaultMessage: 'Include groups and inherited users',
}
),
options: [],
order: 9,
required: false,
sensitive: false,
tooltip: i18n.translate(
'searchConnectors.nativeConnectors.dropbox.includeInheritedUsersAndGroups.tooltip',
{
defaultMessage:
'Include groups and inherited users when indexing permissions. Enabling this configurable field will cause a significant performance degradation.',
}
),
type: FieldType.BOOLEAN,
ui_restrictions: [],
validations: [],
value: false,
},
},
features: {
[FeatureName.DOCUMENT_LEVEL_SECURITY]: {
enabled: true,
},
[FeatureName.SYNC_RULES]: {
advanced: { enabled: true },
basic: { enabled: true },
Expand Down
2 changes: 1 addition & 1 deletion x-pack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "x-pack",
"version": "8.14.1",
"version": "8.14.2",
"author": "Elastic",
"private": true,
"license": "Elastic-License",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');

describe('forecasts', function () {
// Failing: See https://github.com/elastic/kibana/issues/164381
describe.skip('forecasts', function () {
this.tags(['ml']);

describe('with single metric job', function () {
Expand Down

0 comments on commit 94a5d96

Please sign in to comment.