Skip to content

Bump github.com/nitram509/lib-bpmn-engine from 0.3.0-beta2 to 0.3.0-beta4#2

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/github.com/nitram509/lib-bpmn-engine-0.3.0-beta4
Open

Bump github.com/nitram509/lib-bpmn-engine from 0.3.0-beta2 to 0.3.0-beta4#2
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/github.com/nitram509/lib-bpmn-engine-0.3.0-beta4

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 30, 2023

Bumps github.com/nitram509/lib-bpmn-engine from 0.3.0-beta2 to 0.3.0-beta4.

Release notes

Sourced from github.com/nitram509/lib-bpmn-engine's releases.

v0.3.0-beta4

  • WiP serialization and deserialization ... please don't try yet ... it's not working in this beta3 version
  • make explicit engine name optional (#73 BREAKING CHANGE)
  • use global ID generator internally, to avoid ID collisions between multiple engine instances
  • refactor activity.LifecylceState (BREAKING CHANGE)
  • refactor process_instance.State (BREAKING CHANGE)
    • new return type for e.g. instance.GetState() --is--> ActivityState (BREAKING CHANGE)
  • new ExpressionEvaluationError
    • improved errors for intermediate timer catch events (#38, #69)
    • improved error handling for intermediate message catch events
    • variable mapping and expression evaluation errors
    • return proper BpmnEngineError, at creation time (BREAKING CHANGE)
  • new support intermediate link throw & catch element (#141)
  • new CreateInstanceById() and CreateAndRunInstanceById() functions to ease handling with multiple versions
  • use Go Getter idiomatic (BREAKING CHANGE) (#144)

Migration notes for breaking changes

New Initializer

Bpmn Engines are anonymous by default now, and shall be initialized by calling .New()
Example: replace bpmn_engine.New("name") with bpmn_engine.New()

Note: you might use .NewWithName("a name") to assign different names for each engine instance. This might help in scenarios, where you e.g. assign one engine instance to a thread.

activity.LifecylceState and process_instance.State

Both are consolidated towards bpmn_engine.ActivityState, which you can simply use in the same manner.

Use Go Getter idiomatic

For some interfaces, the prior code looked like e.g. engine.GetName(). According to https://go.dev/doc/effective_go#Getters, this getter should better be written as engine.Name().

Changelog

Sourced from github.com/nitram509/lib-bpmn-engine's changelog.

v0.3.0-beta4

  • WiP serialization and deserialization ... please don't try yet ... it's not working in this beta3 version
  • make explicit engine name optional (#73 BREAKING CHANGE)
  • use global ID generator internally, to avoid ID collisions between multiple engine instances
  • refactor activity.LifecylceState (BREAKING CHANGE)
  • refactor process_instance.State (BREAKING CHANGE)
    • new return type for e.g. instance.GetState() --is--> ActivityState (BREAKING CHANGE)
  • new ExpressionEvaluationError
    • improved errors for intermediate timer catch events (#38, #69)
    • improved error handling for intermediate message catch events
    • variable mapping and expression evaluation errors
    • return proper BpmnEngineError, at creation time (BREAKING CHANGE)
  • new support intermediate link throw & catch element (#141)
  • new CreateInstanceById() and CreateAndRunInstanceById() functions to ease handling with multiple versions
  • use Go Getter idiomatic (BREAKING CHANGE) (#144)

Migration notes for breaking changes

New Initializer

Bpmn Engines are anonymous by default now, and shall be initialized by calling .New()
Example: replace bpmn_engine.New("name") with bpmn_engine.New()

Note: you might use .NewWithName("a name") to assign different names for each engine instance. This might help in scenarios, where you e.g. assign one engine instance to a thread.

activity.LifecylceState and process_instance.State

Both are consolidated towards bpmn_engine.ActivityState, which you can simply use in the same manner.

Use Go Getter idiomatic

For some interfaces, the prior code looked like e.g. engine.GetName(). According to https://go.dev/doc/effective_go#Getters, this getter should better be written as engine.Name().


Commits
  • b495406 mark marshalling as not yet supported, disable tests
  • a8d61b4 mark marshalling as not yet supported
  • ef29317 fix docs
  • f46b6dc Merge remote-tracking branch 'origin/main'
  • a8f0585 improve changelog
  • d6e276f Apply automatic changes
  • 5c0f1b6 add missing test file
  • f3d6e8d use Getter idiomatic for ActiveJob
  • 4651ce0 Implement create instance by ID and add documentation
  • 289fd3c use Getter idiomatic (#144)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/nitram509/lib-bpmn-engine](https://github.com/nitram509/lib-bpmn-engine) from 0.3.0-beta2 to 0.3.0-beta4.
- [Release notes](https://github.com/nitram509/lib-bpmn-engine/releases)
- [Changelog](https://github.com/nitram509/lib-bpmn-engine/blob/main/CHANGELOG.md)
- [Commits](nitram509/lib-bpmn-engine@v0.3.0-beta2...v0.3.0-beta4)

---
updated-dependencies:
- dependency-name: github.com/nitram509/lib-bpmn-engine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants