Releases: faastjs/faast.js
Releases · faastjs/faast.js
v3.0.2
v3.0.1
v3.0.0
3.0.0 (2019-05-24)
BREAKING CHANGES
- Removed addDirectory and addZipFile options. These are removed in favor of
include/exclude, which supports globs and a simpler mechanism for mapping local paths to remote
paths using the cwd option. Zip files are no longer natively supported.
v2.1.0
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
2.0.0 (2019-05-16)
Bug Fixes
- google: Add retry to google invocations and code upload operations. (01b2bbd)
- google: Ensure google errors aren't mistaken for format strings. (8c7b7c0)
Features
- Add
validateSerialization
option to check args+return are serializable. (d8a2219), closes #5 - Add support for Buffer, Date, and undefined args and return values. (125d454), closes #43
- Serialize most built-in JavaScript object types. (56da0c0), closes #43
BREAKING CHANGES
- As part of this work we also needed to upgrade the default node version from 8.x to
10.x for both Google and AWS to support assert.deepStrictEqual semantics for NaN. As a result, this
may be a breaking change for those who were using nodejs 8.x specific code in their cloud functions.