Serverless 1.1.2
·
37 commits
to serverless
since this release
What's Changed
- Add support for
GeoShapeQuery - Add support for
ShapeQuery - Add support for
ES|QL Scriptis no longer an union and instead combines the properties ofInlineScriptandStoredScriptId(breaking change!)- Minor fixes and improvements to request/response classes and in-code documentation
Breaking Changes
Script is no longer an union and instead combines the properties of InlineScript and StoredScriptId.
All places that use InlineScript or StoredScriptId must be changed from e.g. .InlineScript(new InlineScript(...)) to .Script(new Script(...)). Construction of the union like e.g. new Script(new InlineScript(...)) or new Script(storedScriptId) is no longer required and should be replaced by just new Script(...).
Full Changelog: serverless-1.1.1...serverless-1.1.2