OpenSearch/modules
Sohaib Iftikhar 40b822c878 Scripting: Remove support for deprecated StoredScript contexts (#31394)
Removes support for storing scripts without the usual json around the
script. So You can no longer do:
```
POST _scripts/<templatename>
{
    "query": {
        "match": {
            "title": "{{query_string}}"
        }
    }
}
```

and must instead do:
```
POST _scripts/<templatename>
{
    "script": {
        "lang": "mustache",
        "source": {
            "query": {
                "match": {
                    "title": "{{query_string}}"
                }
            }
        }
    }
}
```

This improves error reporting when you attempt to store a script but don't
quite get the syntax right. Before, there was a good chance that we'd
think of it as a "raw" template and just store it. Now we won't do that.
Nice.
2018-07-05 09:30:08 -04:00
..
aggs-matrix-stats Add support for switching distribution for all integration tests (#30874) 2018-06-26 06:49:03 -07:00
analysis-common Add support for switching distribution for all integration tests (#30874) 2018-06-26 06:49:03 -07:00
ingest-common ingest: Introduction of a bytes processor (#31733) 2018-07-03 10:40:56 -05:00
lang-expression Add support for switching distribution for all integration tests (#30874) 2018-06-26 06:49:03 -07:00
lang-mustache Scripting: Remove support for deprecated StoredScript contexts (#31394) 2018-07-05 09:30:08 -04:00
lang-painless Add JDK11 support and enable in CI (#31644) 2018-07-05 03:24:01 +00:00
mapper-extras Remove all unused imports and fix CRLF (#31207) 2018-06-11 15:12:12 +02:00
parent-join has_parent builder: exception message/param fix (#31182) 2018-06-30 11:17:37 -07:00
percolator Remove version argument in RangeFieldType (#30411) 2018-05-16 17:42:44 +02:00
rank-eval Clean up double semicolon code typos (#31687) 2018-07-02 15:14:44 +02:00
reindex Core: Combine doExecute methods in TransportAction (#31517) 2018-06-22 15:03:01 -07:00
repository-url Add write*Blob option to replace existing blob (#31729) 2018-07-03 09:13:50 +02:00
transport-netty4 Detach Transport from TransportService (#31727) 2018-07-04 11:32:35 +02:00
build.gradle Painless: Add spi jar that will be published for extending whitelists (#28302) 2018-01-18 19:16:26 -08:00