Skip to content

Conversation

@cheetahbot
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
opensearchproject/opensearch final patch 3.3.0 -> 3.3.2

Release Notes

opensearch-project/OpenSearch (opensearchproject/opensearch)

v3.3.2

Compare Source

Version 3.3.2 Release Notes

Compatible with OpenSearch 3.3.2 and OpenSearch Dashboards 3.3.0

Fixed
  • [Star Tree] Fix sub-aggregator casting for search with profile=true (#​19652)
  • [Java Agent] Allow JRT protocol URLs in protection domain extraction (#​19683)
  • Fix bwc @​timestamp upgrade issue by adding a version check on skip_list param (#​19671)
  • Fix issue with updating core with a patch number other than 0 (#​19377)
  • Fix IndexOutOfBoundsException when running include/exclude on non-existent prefix in terms aggregations (#​19637)
  • Add S3Repository.LEGACY_MD5_CHECKSUM_CALCULATION to list of repository-s3 settings (#​19789)
Dependencies
  • Bump ch.qos.logback modules from 1.5.18 to 1.5.20 in HDFS test fixture (#​19764)
  • Bump org.bouncycastle:bc-fips from 2.1.1 to 2.1.2 (#​19817)

v3.3.1

Compare Source

Version 3.3.1 Release Notes

OpenSearch 3.3.1 Only.

Fixed
  • Fix issue with updating core with a patch number other than 0 (#​19377)
  • [Star Tree] Fix sub-aggregator casting for search with profile=true (#​19652)
  • Fix bwc @​timestamp upgrade issue by adding a version check on skip_list param (#​19671)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 12pm and before 4pm every weekday" in timezone Europe/Copenhagen.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@github-actions
Copy link

github-actions bot commented Nov 20, 2025

⚠️MegaLinter analysis: Success with warnings

Descriptor Linter Files Fixed Errors Warnings Elapsed time
✅ BASH shellcheck 5 0 0 0.14s
⚠️ BASH shfmt 5 1 0 0.01s
✅ COPYPASTE jscpd yes no no 1.56s
✅ DOCKERFILE hadolint 2 0 0 0.05s
✅ JSON jsonlint 4 0 0 0.21s
✅ JSON prettier 4 0 0 1.13s
✅ JSON v8r 4 0 0 3.03s
✅ REPOSITORY git_diff yes no no 0.01s
✅ REPOSITORY grype yes no no 30.07s
✅ REPOSITORY syft yes no no 2.39s
✅ REPOSITORY trivy yes no no 8.72s
✅ REPOSITORY trivy-sbom yes no no 0.2s
✅ REPOSITORY trufflehog yes no no 4.21s
⚠️ YAML prettier 19 1 4 0.76s
✅ YAML v8r 19 0 0 6.05s
⚠️ YAML yamllint 19 8 0 0.63s

Detailed Issues

⚠️ YAML / prettier - 1 error
Checking formatting...
[warn] .github/workflows/e2e.yaml
[warn] config/redpanda-admin.yaml
[warn] config/redpanda-cluster.yaml
[warn] Code style issues found in 3 files. Run Prettier with --write to fix.
⚠️ BASH / shfmt - 1 error
diff config/keycloak/keycloak_custom_role_creation.sh.orig config/keycloak/keycloak_custom_role_creation.sh
--- config/keycloak/keycloak_custom_role_creation.sh.orig
+++ config/keycloak/keycloak_custom_role_creation.sh
@@ -13,7 +13,7 @@
 # Build the roles_definition_substitution string for $(env:DEMO_ROLES_DEFINITION)
 roles_definition_substitution=""
 for role in "${roles_array[@]}"; do
-    roles_definition_substitution+="{\"name\":\"$role\"},"
+	roles_definition_substitution+="{\"name\":\"$role\"},"
 done
 # Remove the trailing comma
 roles_definition_substitution="${roles_definition_substitution%,}"
@@ -21,7 +21,7 @@
 # Build the client_roles_substitution string for $(env:DEMO_CLIENT_ROLES) using a loop
 client_roles_substitution="["
 for role in "${roles_array[@]}"; do
-    client_roles_substitution+="\"$role\","
+	client_roles_substitution+="\"$role\","
 done
 # Remove the trailing comma
 client_roles_substitution="${client_roles_substitution%,}"
@@ -29,7 +29,7 @@
 
 # Perform substitutions and save to output file
 sed -e "s/\$(env:DEMO_ROLES_DEFINITION)/$roles_definition_substitution/g" \
-    -e "s/\$(env:DEMO_CLIENT_NAME)/$DEMO_CLIENT_NAME/g" \
-    -e "s/\$(env:DEMO_CLIENT_SECRET)/$DEMO_CLIENT_SECRET/g" \
-    -e "s/\$(env:DEMO_CLIENT_ROLES)/$client_roles_substitution/g" \
-    "$input_file" > "$output_file"
\ No newline at end of file
+	-e "s/\$(env:DEMO_CLIENT_NAME)/$DEMO_CLIENT_NAME/g" \
+	-e "s/\$(env:DEMO_CLIENT_SECRET)/$DEMO_CLIENT_SECRET/g" \
+	-e "s/\$(env:DEMO_CLIENT_ROLES)/$client_roles_substitution/g" \
+	"$input_file" >"$output_file"
⚠️ YAML / yamllint - 8 errors
.github/workflows/e2e.yaml
  4:1       warning  truthy value should be one of [false, true]  (truthy)
  79:1      error    trailing spaces  (trailing-spaces)

.github/workflows/megalinter.yaml
  4:1       warning  truthy value should be one of [false, true]  (truthy)

config/opensearch_dashboards/opensearch_dashboards.yml
  32:14     warning  truthy value should be one of [false, true]  (truthy)

config/redpanda-admin.yaml
  14:8      error    trailing spaces  (trailing-spaces)
  17:5      warning  comment not indented like content  (comments-indentation)

config/redpanda-cluster.yaml
  20:8      error    trailing spaces  (trailing-spaces)
  23:5      warning  comment not indented like content  (comments-indentation)

See detailed reports in MegaLinter artifacts

Your project could benefit from a custom flavor, which would allow you to run only the linters you need, and thus improve runtime performances. (Skip this info by defining FLAVOR_SUGGESTIONS: false)

  • Documentation: Custom Flavors
  • Command: npx mega-linter-runner@9.2.0 --custom-flavor-setup --custom-flavor-linters BASH_SHELLCHECK,BASH_SHFMT,COPYPASTE_JSCPD,DOCKERFILE_HADOLINT,JSON_JSONLINT,JSON_V8R,JSON_PRETTIER,REPOSITORY_GIT_DIFF,REPOSITORY_GRYPE,REPOSITORY_SYFT,REPOSITORY_TRIVY,REPOSITORY_TRIVY_SBOM,REPOSITORY_TRUFFLEHOG,YAML_PRETTIER,YAML_YAMLLINT,YAML_V8R

MegaLinter is graciously provided by OX Security

@cheetahbot cheetahbot force-pushed the renovate/opensearchproject/opensearch-patch branch 2 times, most recently from e5cb43a to 7b43e73 Compare November 23, 2025 20:18
@cheetahbot cheetahbot force-pushed the renovate/opensearchproject/opensearch-patch branch from 7b43e73 to 519925e Compare November 25, 2025 20:18
@cheetahbot
Copy link
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@cheetahbot cheetahbot changed the title chore(deps): patch update opensearchproject/opensearch docker tag to v3.3.2 chore(deps): patch update opensearchproject/opensearch docker tag to v3.3.2 - abandoned Dec 20, 2025
@cheetahbot
Copy link
Contributor Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

auto-merge was automatically disabled January 6, 2026 14:59

Pull request was closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants