Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/run-cypress-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Run Cypress Tests
description: 'Runs Cypress tests for the security-dashboards-plugin with opensearch_dashboards.yml and security configuration provided'

env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'

inputs:
security_config_file:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress-test-multiauth-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Snapshot based E2E SAML multi-auth tests workflow
on: [ push, pull_request ]

env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: E2E multi datasources disabled workflow
on: [ push, pull_request ]

env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: E2E multi datasources enabled workflow
on: [ push, pull_request ]

env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress-test-oidc-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Snapshot based E2E OIDC tests workflow
on: [ push, pull_request ]

env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'
KEYCLOAK_VERSION: '21.0.1'
TEST_KEYCLOAK_CLIENT_SECRET: 'oacHfNaXyy81r2uHq1A9RY4ASryre4rZ'
CI: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress-test-saml-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Snapshot based E2E SAML tests workflow
on: [ push, pull_request ]

env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress-test-tenancy-disabled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
SPEC: 'cypress/integration/plugins/security-dashboards-plugin/aggregation_view.js,'
PLUGIN_NAME: opensearch-security
OPENSEARCH_INITIAL_ADMIN_PASSWORD: myStrongPassword123!
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'

jobs:
cypress-tests-multitenancy-disabled:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
PLUGIN_NAME: opensearch-security
OPENSEARCH_INITIAL_ADMIN_PASSWORD: myStrongPassword123!
CYPRESS_NO_COMMAND_LOG: 1
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'

jobs:
cypress-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:
CI: 1
PLUGIN_NAME: opensearch-security
OPENSEARCH_INITIAL_ADMIN_PASSWORD: myStrongPassword123!
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'

jobs:
tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-binary-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Install Dashboards with Plugin via Binary'

on: [push, pull_request]
env:
OPENSEARCH_VERSION: '3.0.0-alpha1'
OPENSEARCH_VERSION: '3.0.0-beta1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand Down
2 changes: 1 addition & 1 deletion opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "securityDashboards",
"version": "3.0.0.0-alpha1",
"version": "3.0.0.0-beta1",
"opensearchDashboardsVersion": "3.0.0",
"configPath": [
"opensearch_security"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opensearch-security-dashboards",
"version": "3.0.0.0-alpha1",
"version": "3.0.0.0-beta1",
"main": "target/plugins/opensearch_security_dashboards",
"opensearchDashboards": {
"version": "3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion test/jest_integration/jwt_auth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('start OpenSearch Dashboards server', () => {
verbose: false,
},
opensearch: {
hosts: ['https://localhost:9200'],
hosts: ['https://[::1]:9200'],
ignoreVersionMismatch: true,
ssl: { verificationMode: 'none' },
username: OPENSEARCH_DASHBOARDS_SERVER_USER,
Expand Down
Loading