Bernhard Häussner
Bernhard Häussner
The [`page_entries_info`](https://github.com/kaminari/kaminari/blob/master/kaminari-core/lib/kaminari/helpers/helper_methods.rb#L100) helper was updated in #694 to support for internationalization of `entry_name` for ActiveRecord (Thanks! 😊). However, it [always calls `downcase`](https://github.com/kaminari/kaminari/blob/master/kaminari-core/lib/kaminari/helpers/helper_methods.rb#L104) on the resulting entry name. This is a...
So spree_auth_devise [already patches `Spree::Admin::BaseController#unauthorized `](https://github.com/spree/spree_auth_devise/blob/master/lib/controllers/backend/spree/admin/admin_controller_decorator.rb) such that unauthorized actions go to the backend login form. However, when the authorization failures come from exceptions from CanCan's `authorize!` method, [spree calls...
Is this project still maintained after [commons-collections 4.0](http://commons.apache.org/proper/commons-collections/release_4_0.html) with generics is released? Anyway, there is a minor glitch in [ComparatorUtils.java:190](https://github.com/megamattron/collections-generic/blob/master/src/java/org/apache/commons/collections15/ComparatorUtils.java#L190): `public static Comparator transformedComparator(Comparator comparator, Transformer transformer) {` Which should...
After starting my project with node version v22.14.0 (current LTS), I got a deprecation warning which I could trace back to the `frame-stream` package using the `--trace-deprecation` flag: ``` (node:58294)...
As described in https://github.com/davedoesdev/frame-stream/issues/23 this project uses the [deprecated](https://nodejs.org/api/deprecations.html#DEP0060) `util._extend` of node's utils package in the code here in the constructor of `Decoder` to merge the options with the default...