Skip to content

Commit 9c3a8f6

Browse files
Merge branch '1.x' into backport-cookie-splitter
2 parents f6f7a89 + 0319257 commit 9c3a8f6

File tree

4 files changed

+580
-75
lines changed

4 files changed

+580
-75
lines changed

opensearch_dashboards.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "securityDashboards",
3-
"version": "1.3.12.0",
4-
"opensearchDashboardsVersion": "1.3.12",
3+
"version": "1.3.14.0",
4+
"opensearchDashboardsVersion": "1.3.14",
55
"configPath": [
66
"opensearch_security"
77
],
@@ -10,4 +10,4 @@
1010
],
1111
"server": true,
1212
"ui": true
13-
}
13+
}

package.json

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "opensearch-security-dashboards",
3-
"version": "1.3.12.0",
3+
"version": "1.3.14.0",
44
"main": "target/plugins/opensearch_security_dashboards",
55
"opensearchDashboards": {
6-
"version": "1.3.12",
7-
"templateVersion": "1.3.12"
6+
"version": "1.3.14",
7+
"templateVersion": "1.3.14"
88
},
99
"license": "Apache-2.0",
1010
"homepage": "https://github.com/opensearch-project/security-dashboards-plugin",
@@ -25,7 +25,9 @@
2525
"samlp": "6.0.2",
2626
"**/glob-parent": "^6.0.0",
2727
"**/loader-utils": "^2.0.4",
28-
"decode-uri-component": "^0.2.1"
28+
"decode-uri-component": "^0.2.1",
29+
"debug": "^4.3.4",
30+
"browserify-sign": "^4.2.2"
2931
},
3032
"devDependencies": {
3133
"@elastic/eslint-import-resolver-kibana": "link:../../packages/osd-eslint-import-resolver-opensearch-dashboards",
@@ -42,4 +44,4 @@
4244
"@hapi/cryptiles": "5.0.0",
4345
"html-entities": "1.3.1"
4446
}
45-
}
47+
}

server/multitenancy/tenant_resolver.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
import { isEmpty, findKey, cloneDeep } from 'lodash';
1717
import { OpenSearchDashboardsRequest } from 'opensearch-dashboards/server';
1818
import { ResponseObject } from '@hapi/hapi';
19+
import { modifyUrl } from '@osd/std';
1920
import { SecuritySessionCookie } from '../session/security_cookie';
20-
import { GLOBAL_TENANT_SYMBOL, PRIVATE_TENANT_SYMBOL } from '../../common';
21-
import { modifyUrl } from '../../../../packages/osd-std';
21+
import { GLOBAL_TENANT_SYMBOL, PRIVATE_TENANT_SYMBOL, globalTenantName } from '../../common';
2222
import { ensureRawRequest } from '../../../../src/core/server/http/router';
2323
import { GOTO_PREFIX } from '../../../../src/plugins/share/common/short_url_routes';
2424
import { SecurityPluginConfigType } from '..';

0 commit comments

Comments
 (0)