Tags: serverlessworkflow/sdk-go
Tags
Set EventRef.ResultEventRef to optional (#239) * Set EventRef.ResultEventRef to optional Signed-off-by: Dmitrii Tikhomirov <chani.liet@gmail.com> * removed validate declaration and updated tests Signed-off-by: Dmitrii Tikhomirov <chani.liet@gmail.com> --------- Signed-off-by: Dmitrii Tikhomirov <chani.liet@gmail.com>
chore(deps): bump golang.org/x/net from 0.26.0 to 0.33.0 (#219) Bumps [golang.org/x/net](https://github.com/golang/net) from 0.26.0 to 0.33.0. - [Commits](golang/net@v0.26.0...v0.33.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fix: ISO8601 duration wouldn't parse for valid fractional values (#199) * fix: ISO8601 duration won't parse for valid fractional values Previously, the library utilized a parsing library for ISO8601 durations that parsed durations into integers only. This caused issues with durations containing fractional values, such as "P0.5S", which are valid ISO8601 strings but failed to parse due to the limitation of the previous library. In this commit, I've replaced the outdated parsing library with a more robust alternative. The new library properly handles fractional values, ensuring accurate parsing of ISO8601 duration strings, including cases like "P0.5S". This update enhances the functionality and reliability of the library by accommodating a broader range of ISO8601 duration formats. Additionally, it ensures compatibility with modern standards and improves the overall usability of the library. Signed-off-by: Kshitiz Agrawal <kshitizagrawal@outlook.com> * fix: resolve failing test cases Signed-off-by: Kshitiz Agrawal <kshitizagrawal@outlook.com> * feat: add test case for fractional ISO duration Signed-off-by: Kshitiz Agrawal <kshitizagrawal@outlook.com> --------- Signed-off-by: Kshitiz Agrawal <kshitizagrawal@outlook.com>
PreviousNext