James Mead
a7d7be1eea
Changelog changes ( #619 )
...
* Add missing reference to CHANGELOG.md
I missed this in 2c52bef1b1 .
* Explain that CHANGELOG.md will no longer be updated
2023-08-02 21:05:20 +12:00
James Mead
2c52bef1b1
Update changelog for v6.7.0 ( #617 )
2023-08-02 19:11:17 +12:00
James Mead
31adbd0ad8
Rename MiniTest -> Minitest ( #618 )
...
The latest version of minitest dropped the "ancient MiniTest
compatibility layer" [1], so we need to use the newer module name,
`Minitest`.
[1]: https://github.com/minitest/minitest/blob/master/History.rdoc#label-5.19.0+-2F+2023-07-26
2023-08-02 19:01:56 +12:00
Samuel Williams
d82c9fd7e3
Bump minor version.
2023-07-26 16:39:28 +12:00
Samuel Williams
02ef216788
Gem release management. ( #614 )
...
* Use `bake-gem` for release management.
* Prefer `require_relative` for loading `version.rb` in gemspec.
2023-07-26 16:37:35 +12:00
Samuel Williams
b708de32f3
Support Rack 3. ( #586 )
2023-07-25 15:16:43 +12:00
Gonzalo
e039ecde2a
ci: tests against redis gem v5 ( #612 )
...
* ci: tests against redis gem v5
* ci: fixes incompatibility between redis-store 1.9.2 and redis 5
2023-07-25 13:13:39 +12:00
Gonzalo
c8e574aa6f
Merge pull request #604 from nateberkopec/patch-1
...
Add note about cache stores and in-memory caches.
2022-12-17 11:54:02 -03:00
Nate Berkopec
a6bbbdc779
Add note about cache stores and in-memory caches.
...
This was part of the "lessons learned" from Bannerbear's DDoS attack: https://www.bannerbear.com/blog/how-to-survive-a-ddos-attack/
2022-12-16 15:22:34 +09:00
Maksim Abramchuk
4d201f7e42
Update example description to not suggest using a deprecated method. ( #589 )
2022-09-04 09:37:52 +12:00
Gonzalo
e9b753b4e7
test: update rack-test to v2 from v1
2022-08-09 20:51:24 +12:00
Gonzalo
95ce9fdd7c
Merge pull request #579 from kyoshidajp/replace_git.io
...
Replace git.io URL
2022-05-01 16:20:27 -03:00
Katsuhiko YOSHIDA
d3be2f31a5
Replace git.io URL
2022-04-28 19:14:17 +09:00
Gonzalo
f5f92f4459
Bump gem version to v6.6.1
2022-04-13 22:50:01 -03:00
Gonzalo
07822ada92
ci: update rubies
2022-04-13 22:47:06 -03:00
Gonzalo
b0be38334a
Merge pull request #575 from sixpark/adriancb/update_readme
...
fix(documentation): Updating README with non-deprecated configuration.
2022-03-19 22:19:11 -03:00
Adrian CB
8313e38df3
fix(documentation): Updating README with non-deprecated configuration.
2022-03-08 16:58:58 +11:00
Samuel Williams
933c0576b8
Lower case headers. ( #573 )
2022-02-19 13:56:02 +13:00
Gonzalo
d41abd7908
Merge pull request #572 from ixti/ixti/fix-redis-4.6.0-warnings
...
fix: Fix redis-rb 4.6.0 deprecation warnings
2022-02-07 14:51:53 -03:00
Alexey Zapparov
c01208afe6
fix: Fix redis-rb 4.6.0 deprecation warnings
...
Redis 4.6.0 deprecated calling commands on `Redis` inside `#pipelined`:
redis.pipelined do
redis.get("key")
end
The above should be:
redis.pipelined do |pipeline|
pipeline.get("key")
end
See: https://github.com/redis/redis-rb/pull/1059
2022-02-04 21:14:00 +01:00
Gonzalo
82181325bc
docs: update docs to point to main branch
2022-02-01 09:48:23 -03:00
Gonzalo
d0ec4de69b
Bump gem version to v6.6.0
2022-01-29 16:15:15 -03:00
Gonzalo
3eca60dba1
Merge pull request #556 from zarqman/dalli3-and-rails7
...
Add support for Rails 7.0
2022-01-29 16:02:28 -03:00
Gonzalo
97abc93889
test: update rails 7 appraisal after final release
2022-01-29 15:52:40 -03:00
Gonzalo
8d9c884d40
Merge branch 'master' into dalli3-and-rails7
2022-01-29 15:51:25 -03:00
Gonzalo
d2040063fb
Merge branch 'ruby-3-1'
2022-01-29 15:39:18 -03:00
Gonzalo
9ccf6286d1
Merge pull request #565 from orhantoy/include-license-in-gem-build
...
Include LICENSE in gem build
2022-01-29 15:37:06 -03:00
Gonzalo
501ab01573
ci: run tests against ruby 3.1
2022-01-29 15:36:58 -03:00
Gonzalo
aaeff6d0ae
feat: deprecate throttled_response and blocklisted_response
2022-01-29 15:22:19 -03:00
Gonzalo
8bf9d4efad
refactor: attempt to make method name more self explanatory and clear
2022-01-29 15:06:13 -03:00
Orhan Toy
c95f9624aa
Include LICENSE in gem build
2022-01-28 19:04:52 +01:00
Gonzalo
a92513fb3e
Merge pull request #562 from johlym/patch-1
...
Update README to mention .clear_configuration
2022-01-18 09:40:06 -03:00
Johnathan Lyman
4e90859a37
Update README to mention .clear_configuration
...
Adds a line to the Test case isolation section about `.clear_configuration`.
2022-01-17 12:25:43 -08:00
Gonzalo
7bcd3b1529
ci: update rubies
2021-12-15 11:59:52 -03:00
Gonzalo
e31488aeba
Merge pull request #558 from agbaber/fix-rack-spec-doc-link
...
docs: update link to rack spec in README
2021-11-26 13:26:41 -03:00
Andrew Baber
78bc155ac9
docs: update link to rack spec in README
2021-11-19 12:34:50 -05:00
thomas morgan
2fc8c7b65f
support rails 7.0
2021-11-17 11:33:17 -07:00
Gonzalo
f920e635f6
Merge pull request #557 from zarqman/dalli3
...
Test against dalli 3.0
2021-11-16 16:18:04 -03:00
thomas morgan
0fbfda0146
test against dalli 3.0
2021-11-16 10:04:16 -07:00
Gonzalo
1a872aa24c
docs: update CI badge
2021-07-21 19:16:32 -03:00
Gonzalo
a20d58e022
ci: update machine os
2021-07-21 18:59:09 -03:00
Gonzalo
511efd15c9
ci: update rubies
2021-07-21 18:58:13 -03:00
Gonzalo
7f2ccca650
ci: run GitHub Actions CI for pull requests
2021-07-21 18:52:11 -03:00
Gonzalo
50b9f37156
ci: move from TravisCI to GitHub Actions
2021-07-19 21:27:02 -03:00
Gonzalo
17b7368a95
docs: attempt to avoid README version confusion
2021-06-15 12:29:14 -03:00
Gonzalo
2257f00876
docs: update 'How can I help?' section
2021-03-21 18:28:59 -03:00
Gonzalo
886ba3a18d
Merge branch '6-stable'
2021-02-07 16:46:46 -03:00
Gonzalo
12a8390d2d
Bump gem version to v6.5
2021-02-07 13:34:46 -03:00
Gonzalo
f3f0df3fc0
refactor: attempt to avoid user confusion by clarifying method is used by throttle
2021-02-07 13:34:26 -03:00
brchristian
0f1a72a4d4
Use single quotes in example configuration
2021-02-07 13:02:33 -03:00