Skip to content

Commit 43ce6fc

Browse files
authored
Bump com.github.spullara.mustache.java:compiler from 0.9.10 to 0.9.11 (opensearch-project#13329) (opensearch-project#13353)
* Bump com.github.spullara.mustache.java:compiler from 0.9.10 to 0.9.11 Signed-off-by: Craig Perkins <cwperx@amazon.com> * Add to CHANGELOG Signed-off-by: Craig Perkins <cwperx@amazon.com> * Fix error in yamlRestTest Signed-off-by: Craig Perkins <cwperx@amazon.com> --------- Signed-off-by: Craig Perkins <cwperx@amazon.com> (cherry picked from commit 97e3191)
1 parent cce8f63 commit 43ce6fc

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4040
- Bump bouncycastle from 1.77 to 1.78 ([#13243](https://github.com/opensearch-project/OpenSearch/pull/13243))
4141
- Update google dependencies in repository-gcs and discovery-gce ([#13213](https://github.com/opensearch-project/OpenSearch/pull/13213))
4242
- Bump `com.google.apis:google-api-services-compute` from v1-rev235-1.25.0 to v1-rev20240407-2.0.0 ([#13333](https://github.com/opensearch-project/OpenSearch/pull/13333))
43+
- Bump `com.github.spullara.mustache.java:compiler` from 0.9.10 to 0.9.11 ([#13329](https://github.com/opensearch-project/OpenSearch/pull/13329))
4344

4445
### Changed
4546
- [BWC and API enforcement] Enforcing the presence of API annotations at build time ([#12872](https://github.com/opensearch-project/OpenSearch/pull/12872))

modules/lang-mustache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ opensearchplugin {
3838
}
3939

4040
dependencies {
41-
api "com.github.spullara.mustache.java:compiler:0.9.10"
41+
api "com.github.spullara.mustache.java:compiler:0.9.11"
4242
}
4343

4444
restResources {

modules/lang-mustache/licenses/compiler-0.9.10.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1bce858aca4f0ce93fdb939de8c8474431c06322

modules/lang-mustache/src/yamlRestTest/resources/rest-api-spec/test/lang_mustache/20_render_search_template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
- match: { template_output.aggs.my_terms.terms.field: "my_other_field" }
4848

4949
- do:
50-
catch: /Improperly.closed.variable.in.query-template/
50+
catch: /Improperly.closed.variable:.my_value.in.query-template/
5151
render_search_template:
5252
body: { "source": { "query": { "match": { "text": "{{{my_value}}" } }, "aggs": { "my_terms": { "terms": { "field": "{{my_field}}" } } } }, "params": { "my_value": "bar", "my_field": "field1" } }
5353
---
@@ -99,7 +99,7 @@
9999
- match: { template_output.size: 100 }
100100

101101
- do:
102-
catch: /Improperly.closed.variable.in.query-template/
102+
catch: /Improperly.closed.variable:.my_value.in.query-template/
103103
render_search_template:
104104
body: { "source": "{ \"query\": { \"match\": { \"text\": \"{{{my_value}}\" } }, \"size\": {{my_size}} }", "params": { "my_value": "bar", "my_size": 100 } }
105105

0 commit comments

Comments
 (0)