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

Add RateLimitPolicy #903

Merged

Commits on Mar 23, 2019

  1. Configuration menu
    Copy the full SHA
    271cfd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d70287 View commit details
    Browse the repository at this point in the history
  3. Add example syntax

    reisenberger committed Mar 23, 2019
    Configuration menu
    Copy the full SHA
    6aa1e2a View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2019

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

Commits on Jul 4, 2019

  1. Configuration menu
    Copy the full SHA
    cba0b51 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    193b356 View commit details
    Browse the repository at this point in the history
  3. Factor out test helpers

    reisenberger committed Jul 4, 2019
    Configuration menu
    Copy the full SHA
    5496e66 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4b17e56 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bfc3251 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8fbb193 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d1c7ec8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    416c6ff View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fcaf1ac View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ebd8a56 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c7af7e4 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2019

  1. Configuration menu
    Copy the full SHA
    a2f6566 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c92cb6b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1532500 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    56fea85 View commit details
    Browse the repository at this point in the history
  5. Improve code layout

    reisenberger committed Jul 5, 2019
    Configuration menu
    Copy the full SHA
    182c635 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2a1c508 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2019

  1. Configuration menu
    Copy the full SHA
    fd609ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0121b3d View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2019

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

Commits on Jul 16, 2019

  1. Configuration menu
    Copy the full SHA
    db47862 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    daa42cb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c916be5 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2021

  1. Remove LockBasedTokenBucketRateLimiter

    Remove the LockBasedTokenBucketRateLimiter class which isn't used other than in tests.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    3afd688 View commit details
    Browse the repository at this point in the history
  2. Throw ArgumentNullException

    Throw ArgumentNullException instead of NullReferenceException.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    5a0cafc View commit details
    Browse the repository at this point in the history
  3. Pass value to ArgumentOutOfRangeException

    Pass the invalid value when throwing ArgumentOutOfRangeException.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    fc7bd8f View commit details
    Browse the repository at this point in the history
  4. Make LockFreeTokenBucketRateLimiter sealed

    Seal the LockFreeTokenBucketRateLimiter class.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    fcc8550 View commit details
    Browse the repository at this point in the history
  5. Make RateLimiterFactory static

    Make the RateLimiterFactory class static.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    881eedc View commit details
    Browse the repository at this point in the history
  6. Add parenthesis

    Add parenthesis to operation to make it clearer.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    f7a1ab0 View commit details
    Browse the repository at this point in the history
  7. Use string not String

    Use the always-unambiguous `string` keyword instead of `String`.
    See https://blog.paranoidcoding.com/2019/04/08/string-vs-String-is-not-about-style.html.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    423e8ab View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9f72e8b View commit details
    Browse the repository at this point in the history
  9. Bump version to 7.3.0

    Bump the next version to 7.3.0.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    f01b12e View commit details
    Browse the repository at this point in the history
  10. Fix typo

    Remove superfluous dollar character from exception message.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    c654e0e View commit details
    Browse the repository at this point in the history
  11. Code review fixes

    Fix exception message typos.
    Add access modifier.
    Remove blank line after comment.
    martincostello committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    4ec4d23 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2022

  1. Fix links

    Change ratelimit to rate-limit.
    martincostello committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    8db33b5 View commit details
    Browse the repository at this point in the history
  2. Fix typos

    Fix various typos, as well as free whitespace trimming from using Atom.
    martincostello committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    544d554 View commit details
    Browse the repository at this point in the history
  3. Add rate-limit documentation

    Add documentation for the RateLimit policy.
    martincostello committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    51cbb17 View commit details
    Browse the repository at this point in the history
  4. Update Cake

    Update to the highest 0.x version of Cake and pin to use a version of Cake.FileHelpers and Cake.Yaml released in the same time frame.
    martincostello committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    fb169ba View commit details
    Browse the repository at this point in the history
  5. Do not generate benchmarks package

    Suppress a NuGet package being created by the benchmarks project.
    martincostello committed Jan 16, 2022
    Configuration menu
    Copy the full SHA
    bf0de16 View commit details
    Browse the repository at this point in the history