Releases: sensorbee/sensorbee
Releases · sensorbee/sensorbee
v0.7.1
v0.7.0
From this release, SensorBee only supports Go1.8 or later (#140, #141).
Breaking Change!!
- change behavior of converting string to bool (#138)
- before: "" -> false, "(non-empty)" -> true
- after:
- "f", "false", "n", "no", "off", "0" -> false
- "t", "true", "y", "yes", "on", "1" -> true
- other -> invalid (error)
Other changes
The following list contains changes in this version.
- support inner map and inner array on
WITHstatement (#133) - support file rotate option on built-in
filesink (#135) - add
Array.Copyto create deep copies of array (#139) - add UDS termination when
runfilecommand is finished (#146) - add UDS existed check when
runfilecommand with--save-udsoption (#151) - "*.peg.go" file is regenerated (#132)
- support
go generatewith "jsonpath.peg.go" (#142)
- support
v0.6.1
v0.6.0
- Add
commandssection in build.yaml for build_sensorbee to support custom subcommand (#117) - Add
data.Decoderto convertdata.Mapinto a struct (#123) - Add a new option to log destination less tuples (#126)
- A destination is tuples is logged when a tuple is dropped by a source or stream which doesn't have any destination.
- Remove undocumented
expcommand from the default command list (#128)
v0.5.2
v0.5.1
v0.5.0
This release removes the default sensorbee command and a user always needs to build a custom sensorbee command by build_sensorbee. This is because the default sensorbee can do pretty much nothing due to the lack of plugins.
To complement the sensorbee shell command, the bql command is provided. It acts exactly like sensorbee shell and the same command line options can be used.
The following list contains changes in this version.
- Remove default
sensorbeecommand (#68) - Add
bqlcommand (#65) - Support parsing integers in JSON as int, not float (#108)
- Add
intervalandrepeatparameters to the built-in file source (#66) - Set buffer size of the sink processing
SELECTstatements to 1 (#104) - Add
blob_to_raw_stringbuilt-in UDF that converts a blob value to a string without base64 encoding if blob only contains valid UDF-8 characters (#105) - Add
encode_jsonanddecode_jsonUDFs (#107) - Other small fixes: #64, #67, #69, #70, #73, #75, #76, #103