Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge the 1.0.2 release into master #85

Merged
merged 32 commits into from
Jun 9, 2019
Merged

Merge the 1.0.2 release into master #85

merged 32 commits into from
Jun 9, 2019

Commits on May 7, 2019

  1. Merge pull request #69 from wework/rhinof-patch-2

    Fixed typo in README.md
    Guy Baron committed May 7, 2019
    Configuration menu
    Copy the full SHA
    bbbeac7 View commit details
    Browse the repository at this point in the history
  2. added a test for health prob and fixed a minor race condition in worker

    initalization
    Guy Baron committed May 7, 2019
    Configuration menu
    Copy the full SHA
    c875004 View commit details
    Browse the repository at this point in the history
  3. fixed builder to set default bolicies when building the bus and chang…

    …ed tests to run with multiple workers
    Guy Baron committed May 7, 2019
    Configuration menu
    Copy the full SHA
    592287c View commit details
    Browse the repository at this point in the history
  4. improved deadlettering test

    the test now validates that messages get rejected when handlers return
    an error and all rety attempts did not sccueed
    Guy Baron committed May 7, 2019
    Configuration menu
    Copy the full SHA
    a3069de View commit details
    Browse the repository at this point in the history

Commits on May 8, 2019

  1. Merge pull request #71 from wework/coverage

    increased test coverage
    Guy Baron committed May 8, 2019
    Configuration menu
    Copy the full SHA
    665d2d1 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2019

  1. added tests for protobuf serlializer

    Guy Baron committed May 9, 2019
    Configuration menu
    Copy the full SHA
    905f904 View commit details
    Browse the repository at this point in the history
  2. added tests for protobuf serializer error scenarios

    Guy Baron committed May 9, 2019
    Configuration menu
    Copy the full SHA
    9e5407b View commit details
    Browse the repository at this point in the history
  3. added more error testing for proto serializer

    Guy Baron committed May 9, 2019
    Configuration menu
    Copy the full SHA
    c1040a5 View commit details
    Browse the repository at this point in the history
  4. fixed validation in proto serialization error tests

    Guy Baron committed May 9, 2019
    Configuration menu
    Copy the full SHA
    5490d3d View commit details
    Browse the repository at this point in the history

Commits on May 12, 2019

  1. Merge pull request #72 from wework/coverage

    added tests for protobuf serlializer
    Guy Baron committed May 12, 2019
    Configuration menu
    Copy the full SHA
    11dc2d7 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2019

  1. fixing a bug where saga configuration functions were run only when sa…

    …ga was
    
    created.
    
    This fixes #74
    Guy Baron committed May 13, 2019
    Configuration menu
    Copy the full SHA
    6d1480d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #75 from wework/sagainit

    fixing a bug where saga configuration functions were run only when saga was created
    vladshub committed May 13, 2019
    Configuration menu
    Copy the full SHA
    3470c20 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2019

  1. Update SAGA.md

    adiweiss committed May 15, 2019
    Configuration menu
    Copy the full SHA
    fc06b81 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2019

  1. Merge pull request #76 from wework/adiweiss-patch-1

    fix wrong timeout interface method in documentation
    adiweiss committed May 16, 2019
    Configuration menu
    Copy the full SHA
    526db83 View commit details
    Browse the repository at this point in the history
  2. increasing test timeouts to 60s

    Guy Baron committed May 16, 2019
    Configuration menu
    Copy the full SHA
    a019efb View commit details
    Browse the repository at this point in the history
  3. Merge pull request #77 from wework/rhinof-patch-1

    increasing test timeouts of ci build to 60s
    Guy Baron committed May 16, 2019
    Configuration menu
    Copy the full SHA
    4dfb283 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2019

  1. first commit towards supporting persistent timeouts

    Timeouts now are not passed as bus messages to avoid the need to deal
    with serialization.
    Timeout interface changed so that handling a timeout now accepts a
    transaction and a bus instance instead of an invocation and a bus
    message
    Guy Baron committed May 19, 2019
    Configuration menu
    Copy the full SHA
    212181d View commit details
    Browse the repository at this point in the history
  2. a timed out saga only gets deleted if it is complete

    This allows saga instances ifthey choose to continue react to messages after they
    timeout
    Guy Baron committed May 19, 2019
    Configuration menu
    Copy the full SHA
    e45a8a1 View commit details
    Browse the repository at this point in the history
  3. deleteing the saga instance after timeout only if it is complete

    otherwise updating it
    
    In addition fixing some linting errors
    Guy Baron committed May 19, 2019
    Configuration menu
    Copy the full SHA
    dd62b43 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d05664f View commit details
    Browse the repository at this point in the history
  5. Merge branch 'v1.x' into fixsagatimeout

    Guy Baron committed May 19, 2019
    Configuration menu
    Copy the full SHA
    2d190e2 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #78 from wework/fixsagatimeout

    first commit towards supporting persistent timeouts
    Guy Baron committed May 19, 2019
    Configuration menu
    Copy the full SHA
    8d9296e View commit details
    Browse the repository at this point in the history

Commits on May 22, 2019

  1. Update SAGA.md

    update documentation after changes of timeout interface : https://github.com/wework/grabbit/pull/78/files
    adiweiss committed May 22, 2019
    Configuration menu
    Copy the full SHA
    80be1cc View commit details
    Browse the repository at this point in the history
  2. Merge pull request #79 from wework/adiweiss-fix-doc

    Update SAGA.md - timeout interface doc fix
    adiweiss committed May 22, 2019
    Configuration menu
    Copy the full SHA
    853a7d6 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2019

  1. fixing a bug in which all handler retires executed within the same

    transaction
    
    When a handler fails and gets retried each retry should be run in a new
    transaction
    Guy Baron committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    bcb1974 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #82 from wework/fixtx

    fixing a bug in which all handler retires executed within the same
    Guy Baron committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    382bf3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bad2ebf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4d54fc7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    784cfec View commit details
    Browse the repository at this point in the history
  6. fixing import cycle

    avigailberger committed Jun 5, 2019
    Configuration menu
    Copy the full SHA
    d9d244d View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2019

  1. Configuration menu
    Copy the full SHA
    4c2becb View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2019

  1. Merge pull request #84 from wework/allow-configuring-max-retries

    Allow configuring max retries
    Guy Baron committed Jun 8, 2019
    Configuration menu
    Copy the full SHA
    8c8ebbe View commit details
    Browse the repository at this point in the history