Skip to content

Serverless 1.1.2

Compare
Choose a tag to compare
@flobernd flobernd released this 29 Jul 13:31
· 37 commits to serverless since this release
42af8fa

What's Changed

  • Add support for GeoShapeQuery
  • Add support for ShapeQuery
  • Add support for ES|QL
  • Script is no longer an union and instead combines the properties of InlineScript and StoredScriptId (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