Skip to content

Commit f41d42b

Browse files
authored
Merge branch 'main' into feat/add_bar_gauge
2 parents c9d302f + 1e3eb1a commit f41d42b

File tree

81 files changed

+3293
-714
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+3293
-714
lines changed

.github/workflows/cypress_workflow.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ env:
5252
COMMENT_TAG: "[MANUAL CYPRESS TEST RUN RESULTS]"
5353
COMMENT_SUCCESS_MSG: ":white_check_mark: Cypress test run succeeded!"
5454
COMMENT_FAILURE_MSG: ":x: Cypress test run failed!"
55-
LATEST_VERSION: "2.17.0"
55+
LATEST_VERSION: '3.3.0'
5656

5757
jobs:
5858
cypress-tests:
@@ -156,8 +156,8 @@ jobs:
156156
${{ (matrix.config == 'query_enhanced' || matrix.config == 'explore') &&
157157
'/bin/bash -c "./opensearch-${{ env.LATEST_VERSION }}/opensearch-tar-install.sh &"' ||
158158
matrix.config == 'dashboard' &&
159-
'node scripts/opensearch snapshot -E cluster.routing.allocation.disk.threshold_enabled=false -E search.concurrent_segment_search.mode=none' ||
160-
'node ../scripts/opensearch snapshot -E cluster.routing.allocation.disk.threshold_enabled=false -E search.concurrent_segment_search.mode=none' }}
159+
'node scripts/opensearch snapshot -E cluster.routing.allocation.disk.threshold_enabled=false -E search.concurrent_segment_search.mode=none -E action.auto_create_index=true' ||
160+
'node ../scripts/opensearch snapshot -E cluster.routing.allocation.disk.threshold_enabled=false -E search.concurrent_segment_search.mode=none -E action.auto_create_index=true' }}
161161
# prevents extra Cypress installation progress messages
162162
CI: 1
163163
# avoid warnings like "tput: No value for $TERM and no -T specified"
@@ -283,12 +283,22 @@ jobs:
283283
rm -f opensearch-*.tar.gz
284284
shell: bash
285285

286-
- name: Remove security plugin
286+
- name: Remove security plugin and plugins that depend on security
287287
if: matrix.config == 'query_enhanced' || matrix.config == 'explore'
288288
run: |
289+
/bin/bash -c "yes | ./opensearch-${{ env.LATEST_VERSION }}/bin/opensearch-plugin remove opensearch-skills"
290+
/bin/bash -c "yes | ./opensearch-${{ env.LATEST_VERSION }}/bin/opensearch-plugin remove opensearch-ml"
291+
/bin/bash -c "yes | ./opensearch-${{ env.LATEST_VERSION }}/bin/opensearch-plugin remove opensearch-anomaly-detection"
289292
/bin/bash -c "yes | ./opensearch-${{ env.LATEST_VERSION }}/bin/opensearch-plugin remove opensearch-security"
290293
shell: bash
291294

295+
- name: Configure OpenSearch for index creation
296+
if: matrix.config == 'query_enhanced' || matrix.config == 'explore'
297+
run: |
298+
echo "action.auto_create_index: true" >> ./opensearch-${{ env.LATEST_VERSION }}/config/opensearch.yml
299+
echo "cluster.routing.allocation.disk.threshold_enabled: false" >> ./opensearch-${{ env.LATEST_VERSION }}/config/opensearch.yml
300+
shell: bash
301+
292302
- name: Run OpenSearch
293303
if: matrix.config == 'query_enhanced' || matrix.config == 'explore'
294304
run: |

changelogs/fragments/10718.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fix:
2+
- Incorrect bucket options displayed ([#10718](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10718))

changelogs/fragments/10722.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
chore:
2+
- Update Traces README for 3.3 ([#10722](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10722))

changelogs/fragments/10745.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
feat:
2+
- Add span status filters to trace details. Combine bug fixes. ([#10745](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10745))

changelogs/fragments/10751.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fix:
2+
- Update correlations save button tooltip ([#10751](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10751))

changelogs/fragments/10753.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fix:
2+
- Added support for loading state in the header ([#10753](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10753))

changelogs/fragments/10754.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fix:
2+
- Fix table vis fields order not the same as fields order in the query ([#10754](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10754))
3+
- Table vis pagination not working due to unnecessary rerendering ([#10754](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10754))
4+
- Change the default table column alignment to left ([#10754](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10754))

changelogs/fragments/10757.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fix:
2+
- Hide unwanted axis of point layers and crosshair layers ([#10757](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10757))
3+
- Bucket count placeholder text ([#10757](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10757))
4+
- Incorrect pie chart legend opacity ([#10757](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10757))

changelogs/fragments/10761.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
- Fix Cypress test failures by enabling OpenSearch index auto-creation ([#10761](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10761))

changelogs/fragments/10763.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
- Field Statistics cypress test ([#10763](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/10763))

0 commit comments

Comments
 (0)