-
Notifications
You must be signed in to change notification settings - Fork 205
[Backport 1.3] Preserve URL Hash for SAML based login with Tests #1220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
37f9a4e
187f2f0
a2dbf4a
21f3073
f53c76c
d7fc153
ea610a6
d50017e
c7bebaa
71ae84a
606269c
7001f90
952ff59
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ jobs: | |
| with: | ||
| path: OpenSearch-Dashboards | ||
| repository: opensearch-project/OpenSearch-Dashboards | ||
| ref: '1.x' | ||
| ref: 'main' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why point to
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above about just copy+pasting the files with changes to try to get a working version of any sort. I am going to be fixing these once I get the yarn issue fixed. |
||
| fetch-depth: 0 | ||
| - name: Create plugins dir | ||
| run: | | ||
|
|
@@ -46,7 +46,7 @@ jobs: | |
| run: | | ||
| npm uninstall -g yarn | ||
| echo "Installing yarn ${{ steps.versions_step.outputs.yarn_version }}" | ||
| npm i -g yarn@${{ steps.versions.outputs.yarn_version }} | ||
| npm i -g yarn@${{ steps.versions.outputs.yarn_version }} --ignore-engines | ||
| - name: Bootstrap OpenSearch Dashboards | ||
| run: | | ||
| cd ./OpenSearch-Dashboards | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,20 +15,23 @@ | |
| "build": "yarn plugin-helpers build && node build_tools/rename_zip.js", | ||
| "start": "node ../../scripts/opensearch-dashboards --dev", | ||
| "lint:es": "node ../../scripts/eslint", | ||
| "lint:sass": "node ../../scripts/sasslint", | ||
| "lint": "yarn run lint:es && yarn run lint:sass", | ||
| "lint": "yarn run lint:es && yarn run lint:style", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why remove the call to sasslint here? |
||
| "pretest:jest_server": "node ./test/jest_integration/runIdpServer.js &", | ||
| "test:jest_server": "node ./test/run_jest_tests.js --config ./test/jest.config.server.js", | ||
| "test:jest_ui": "node ./test/run_jest_tests.js --config ./test/jest.config.ui.js" | ||
| }, | ||
| "devDependencies": { | ||
| "@elastic/eslint-import-resolver-kibana": "link:../../packages/osd-eslint-import-resolver-opensearch-dashboards", | ||
| "typescript": "4.0.2", | ||
| "@elastic/eslint-import-resolver-kibana": "link:../../packages/osd-eslint-import-resolver-opensearch-dashboards", | ||
| "@testing-library/react-hooks": "^7.0.2", | ||
| "@types/hapi__wreck": "^15.0.1", | ||
| "gulp-rename": "2.0.0", | ||
| "@testing-library/react-hooks": "^3.4.1", | ||
| "@types/hapi__wreck": "^15.0.1" | ||
| "saml-idp": "^1.2.1", | ||
| "selenium-webdriver": "^4.0.0-alpha.7", | ||
| "selfsigned": "^2.0.1", | ||
| "typescript": "4.0.2" | ||
| }, | ||
| "dependencies": { | ||
| "@hapi/wreck": "^15.0.2", | ||
| "@hapi/wreck": "^17.1.0", | ||
| "@hapi/cryptiles": "5.0.0", | ||
| "html-entities": "1.3.1" | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe these 2.4.0 version updates shouldn't be part of this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I am just trying to get anything to work at this point. So I just copied the entire file to make sure that it was not a missing line somewhere that was causing the issue. I will be going back through to pair down the changes to those necessary once I get anything working.