Skip to content

Releases: scttcper/koa-simple-ratelimit

v5.1.1

02 Oct 03:41
fee61df
Compare
Choose a tag to compare

5.1.1 (2021-10-02)

Bug Fixes

v5.1.0

14 Dec 04:32
47ddc74
Compare
Choose a tag to compare

5.1.0 (2020-12-14)

Features

  • upgrade dep, disable sourcemaps (47ddc74)

v5.0.1

25 Oct 15:15
19dd27c
Compare
Choose a tag to compare

5.0.1 (2020-10-25)

Bug Fixes

v5.0.0

20 Jul 02:41
b0f006a
Compare
Choose a tag to compare

5.0.0 (2020-07-20)

Features

  • Rename whitelist / blacklist, require node 10 (#197) (b0f006a)

BREAKING CHANGES

  • whitelist / blacklist are now allowlist and blocklist
  • drops support for node 8

v4.0.2

26 May 05:51
8ed3dec
Compare
Choose a tag to compare

4.0.2 (2020-05-26)

Bug Fixes

v4.0.1

01 Feb 02:57
c25fce9
Compare
Choose a tag to compare

4.0.1 (2020-02-01)

Bug Fixes

v4.0.0

18 Sep 15:07
Compare
Choose a tag to compare

4.0.0 (2019-09-18)

Features

  • remove default export, ratelimit must now be imported directly (a3c778e)

BREAKING CHANGES

  • default export is removed, import the ratelimit function directly
// before
const ratelimit = require('koa-simple-ratelimit');
import ratelimit from 'koa-simple-ratelimit';

// after
const { ratelimit } = require('koa-simple-ratelimit');
import { ratelimit } from 'koa-simple-ratelimit';

v3.1.0

02 Sep 19:12
b399f0b
Compare
Choose a tag to compare

3.1.0 (2019-09-02)

Features

v3.0.2

01 Sep 16:42
Compare
Choose a tag to compare

3.0.2 (2019-09-01)

Bug Fixes

v3.0.1

19 Jul 21:29
Compare
Choose a tag to compare

3.0.1 (2019-07-19)

Bug Fixes

  • functions that return promises should be async (1504b66)