Recent Releases of https://github.com/kaminari/kaminari
https://github.com/kaminari/kaminari -
1.2.2
Enhancements:
Bug Fixes:
- Restored
path_to_next_urlhelper that was accidentally deleted in v1.2.0 #1027 [@ryym] - Fixed invalid link tag HTML output from
rel_next_prev_link_tagshelper #1045 [@dlackty] - Fixed Errno::ENOENT error for views generator on Ruby 3 #1050 [@ar31an]
- Suppress warnings about keyword args on Ruby 2.7 #1053 [@mishina]
- Ruby
Published by amatsuda about 4 years ago
https://github.com/kaminari/kaminari - v1.2.1
Security Fixes:
- Added
original_script_nameparameter to the ignore list: #1020 [@viseztrance]
See CVE-2020-11082 for full details.
Bug Fixes:
- Fixed a couple of grouped
total_countregressions by reverting #979
- Ruby
Published by amatsuda about 4 years ago
https://github.com/kaminari/kaminari - v1.2.0
Deprecations:
- Deprecated
current_per_pagein favor oflimit_value
Enhancements:
- Added
#url_to_next_pageand#url_to_prev_pagehelper methods: 38e95a2 - Extracted url helper methods and packed them in
Kaminari::Helpers::UrlHelper: ff38bee - Improved performance of
total_countfor grouped queries by explicitly giving SQLselectclause #979 [@MmKolodziej] - Added
LIMITtototal_countquery whenmax_pagespresents #981 [@rymai]
Bug Fixes:
- Fixed a bug where the
kaminari-mongoidgem was not loaded properly: kaminari/kaminari-mongoid#9 [@DenniJensen] - Fixed a bug where the
#total_countmethod incorrectly calculates the total count: #932 [@tumayun] - Fixed a bug where
empty?breaks subsequentlast_page?in without_count mode #1009 [@montdidier] - Fixed kwargs warnings on Ruby 2.7 #1010 [@connorshea]
- Ruby
Published by yuki24 almost 6 years ago
https://github.com/kaminari/kaminari - v1.1.1
Bug Fixes:
- Fixed a bug where
paginate ..., params: { controller: ..., action: ... }didn't override theparams[:controller]andparams[:action]#919 [@chao-mu]
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - v1.1.0
Enhancements:
- Now the
page_entries_infomethod respects theI18n.localevalue when pluralizing theentry_nameoption #899 [@hundred] require 'kaminari/core'is no longer necessary when usingrequire 'kaminari/activerecord'#896 [@yhara]- Added the
#current_per_pagemethod to inspect current value ofper_page#875 [@bfad] - Better accesibility support by adding accessibility roles to pagination nav #848 [@frrrances]
Bug Fixes:
- Fixed an issue where the command
rails g kaminari:views ...stopped working due to a missing require #912 [@jvsoares] - Fixed a bug where passing in
paramsto thelink_to_next_pageorlink_to_previous_pagemethod raises an exception #874 [@5t111111]
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - v1.0.1
Bug Fixes:
-
Added
required_ruby_versionto the gemspec #847 [@timoschilling] -
Fixed a regression where
per(nil)usesmax_per_pageinstead ofdefault_per_page#813 [@merqlove] -
Fixed a regression where passing a String to
per()aborts with ArgumentError #849 [@rafaelgonzalez] -
Fixed a bug where calling deprecated
max_pages_percaused an Error on Rails 4 #852 [@tsuwatch]
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - v1.0.0
For breaking changes and enhancements, please refer to the release notes for the version 1.0.0.beta1.
Bug Fixes:
-
Fixed
padding()not to accept negative value #839 [@yo-gen] -
Fixed a bug where
total_countused to return a wrong value with larger page value than total pages inwithout_countmode #845 [@denislins] -
Coerce
padding()argument to Integer #840 [@pablocrivella]
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - v1.0.0.rc1
No changes
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - v1.0.0.beta2
Bug fixes
- fixed an issue where kaminari couldn't be installed due to version constraints
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - v1.0.0.beta1
Breaking Changes:
-
Dropped Ruby 1.9 support
-
Dropped Rails 3.2 support
-
Dropped Rails 4.0 support
-
Removed Sinatra support that has been extracted to kaminari-sinatra gem
-
Removed Mongoid support that has been extracted to kaminari-mongoid gem
-
Removed MongoMapper support that has been extracted to kaminari-mongo_mapper gem
-
Removed DataMapper support that has been extracted to kaminari-data_mapper gem
-
Extracted Grape support to kaminari-grape gem and removed it from the core
-
Splitted the gem into 3 internal gems:
- The core pagination logic (kaminari-core)
- Active Record adapter (kaminari-activerecord)
- Action View adapter (kaminari-actionview)
-
Removed deprecated
num_pagesAPI in favor oftotal_pages -
Deprecated
-e hamland-e slimoptions for the views generator -
Renamed the model class method for configuring
max_pagesfrommax_pages_pertomax_pages
Enhancements:
-
Exposed
path_to_prev_page,path_to_next_pagehelpers as public API #683 [@neilang] -
Added
--views_prefixoption for the views generator #668 [@antstorm] -
Added
max_paginates_perscope method to overwrite modelmax_paginates_perconfig #754 [@rubyonme] -
Added
:paginator_classoption to specify a custom Paginator forpaginate#740 [@watsonbox] -
Use I18n to pluralize entries in
page_entries_info#694 [@Linuus] -
Added
without_count#681 [@bryanrite] -
Omit select count query for
total_countif it's calculable in Ruby level from loaded records
Bug Fixes:
-
Fixed a bug that a single page gap was displayed as "…"
before: ‹ 1 2 … 4 5 [6] 7 8 … 15 16 › after: ‹ 1 2 3 4 5 [6] 7 8 … 15 16 › -
Fixed a bug where
paginatechanges request.format #540 [@jasonkim] -
Fixed a bug where
per(nil)didn't respectmax_per_pageconfiguration #800 [@jonathanhefner] -
Fixed a bug that model class'
max_paginates_perwas ignored when it's smaller than the defaultper_page -
Preserve source location of the pagination method #812 [@ka8725]
-
Preserve source location of the tag helpers
-
Hide Next & Last buttons if page is out of range #712 [@igorkasyanchuk]
-
Always buffer with
ActionView::OutputBufferif Action View is loaded #804 [@onemanstartup]
- Ruby
Published by yuki24 over 8 years ago
https://github.com/kaminari/kaminari - 0.16.3
- Fixed a "stack level too deep" bug in mongoid [#642, @bartes]
- Fixed a bug that Kaminari possibly crashes when combined with other gems that define
inheritedmethod on model classes, such as aasm. [#651, @zeitnot]
- Ruby
Published by yuki24 over 9 years ago
https://github.com/kaminari/kaminari - 0.17.0
- Rails 5 ready!
- Mongoid 5.0 support
- Deprecated
Kaminari::PageScopeMethods#num_pagesin favor of#total_pages - Deprecated
:num_pagesoption forpaginatein favor of:total_pages - Fixed mangled params in pagination links on Rails 5 [#766, @audionerd]
- Fixed a bug where the range of the records displayed on the last page doesn't match [#718, @danzanzini]
- Ruby
Published by yuki24 over 9 years ago
https://github.com/kaminari/kaminari - 0.16.2
- Fixed a bug where cloned Relations remember previous relations'
@total_countvalue [#565, @inkstak] - Fixed a bug where
paginate_array()with total_count option returns whole array for every page [#516, @abhichvn] - Fixed a bug where
:num_pagesoption was backwards-incompatible [#605, @klebershimabuku] - Fixed a bug where themed views generator attempts to overwrite
README.md[#623, @swrobel] - Fixed a bug where ruby raises a
NameErrorwhen theme was not found [#622, @maxprokopiev] - Fixed a bug where
paginates_perdoes not work with subclasses on mongoid [#634, @kouyaf77] - Show an error message if a proper template was not found for the generator theme [#600, meltedice]
- Ruby
Published by yuki24 about 11 years ago
https://github.com/kaminari/kaminari - 0.16.1
- Fix a bug where
:themeoption for#paginatemethod doesn't work properly
#566 [@commstratdev]
- Ruby
Published by yuki24 over 11 years ago
https://github.com/kaminari/kaminari - 0.16.0
- Add support for mongoid max_scan option #500 [@aptx4869]
- Add
link_to_previous_pagehelper for Sinatra #504 [@ikeay] - Add :views_prefix option to #paginate for alternative views directory #552
[@apotonick] - Simplify
page_entries_infoby addingentry_nameinterface to each ORM - Refer ActiveRecord::Base from top level namespace for more safety when
inherited class's namespace has 'ActiveRecord' constant #522 [@yuroyoro] - Fix a bug where runtime persistence not taken into account with
mongoid/kaminari #326 [@nubeod] - Fix a bug where helper methods were not available from inside
paginator.render do ... endblock #239 [@damien-roche] - Fix a bug where theme generator didn't work on Rails 4.1 #526 [@jimryan]
- Fix a bug that paginatable arrays with
total_countoption always returns
whole array #516 [@abhichvn]
- Ruby
Published by yuki24 over 11 years ago
https://github.com/kaminari/kaminari - 0.15.1
page_method_nameoption was not working in 0.15.0 #481 [mauriciopasquier]- Use the mongoid criteria
#lengthmethod to cache the count of the collection per criteria #484 [camallen] - Don't inherit host, port, and protocol from the given params
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.1.0
- First release
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.2.0
- default PER_PAGE to 25 [hsbt]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.3.0
- suppress logging when rendering each partial
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.4.0
- partialize the outer div
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.5.0
- reset content_for
:kaminari_paginator_tagsbefore rendering #1 [hsbt]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.6.0
- Hamlized paginator templates
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.7.0
- Ajaxified paginator templates
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.8.0
- using HTML5
<nav>tag rather than<div>for the container tag
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.0
- added
per_pageto the template local variables #3 [hsbt] - show no contents when the current page is the only page (in other words,
num_pages == 1) #2 [hsbt]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.1
- googlish template theme [maztomo]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.2
- stop adding extra LF between templates when joining
- githubish template theme [maztomo]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.3
- improved template detection logic
When a template for a tag could not be found in theapp/views/kaminari/directory, it searches the tag's ancestor template files before falling back to engine's default template. This may help keeping your custom templates DRY. - simplified bundled template themes
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.4
-
introduced module based tags
As a side effect of this internal change, I have to confess that this version brings you a slight backward incompatibility on template API.
If you're using custom templates, be sure to update your existing templates. To catch up the new API, you need to update%w[next_url prev_url page_url]local variables to simple 'url' like this: https://github.com/amatsuda/kaminari/commit/da88729
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.5
- works on AR 3.0.0 and 3.0.1 now #4 [danillos]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.6
-
added paginates_per method for setting default per_page value for each model in a declarative way.
Example:
class Article < ActiveRecord::Base paginates_per 10 end
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.7
- moved template themes to another repo: amatsuda/kaminari_themes
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.8
-
I18n for the partials
[:previous, :next, :truncate]are externalized to the I18n resource.
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.9
-
:paramsoption for the helper [yomukaku_memo]
You can override each link's url_for option by this option
Example:= paginate @users, :params => {:controller => 'users', :action => 'index2'} -
refactor tags
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.10
-
the
per()method accepts String, zero and minus value now #7 [koic]
This enables you to do something like this:Model.page(params[:page]).per(params[:per]) -
Added support for Gem Testers (http://gem-testers.org/) #8 [joealba]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.12
-
Moved the whole pagination logic to the paginator partial so that users can touch it
Note: You need to update your
_paginator.html.*if you've already customized it. If you haven't overridden_paginator.html.*files, then probably there're nothing you have to do. See this commit for the example: https://github.com/amatsuda/kaminari_themes/commit/2dfb41c
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.9.13
-
Added Mongoid support #5 [juno, hibariya]
This means, Kaminari is now ORM agnostic ❤️ ❤️ ❤️
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.10.0
- Railtie initializer name is "kaminari" from now
- Changed bundler settings to work both on 1.9.2 and 1.8.7 #12 [l15n]
- Fixed bugs encountered when running specs on Ruby 1.9.2 #12 [l15n]
- Clean up documentation (formatting and editing) #12 [l15n]
- Use
Proc.newinstead of lambda forscoped_options#13 [l15n] - Use AS hooks for loading AR #14 [hasimo]
- Refactor scope definition with Concerns #15 [l15n]
- Ensure output_buffer is always initialized #11 [kichiro]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.10.1
- Fixed a bug that the whole
<nav>section was not rendered in some cases
[GarthSnyder]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.10.2
-
Added
:param_nameoption to the pagination helper #10 [ivanvr]Example:
= paginate @users, :param_name => :pagina
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.10.3
- Fixed a bug that
total_count()didn't work when chained withgroup()scope #21 [jgeiger] - Fixed a bug that the paginate helper didn't work properly with an Ajax call #23 [hjuskewycz]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.10.4
- Do not break
ActiveRecord::Base.descendants, by making sure to call super fromActiveRecord::Base.inherited#34 [rolftimmermans] - Fixed vanishing mongoid criteria after calling
page()#26 [tyok]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.11.0
This release contains several backward incompatibilities on template API.
You probably need to update your existing templates if you're already using your own custom theme.
- Merge
_current_page,_first_page_link,_last_page_linkand_page_linkinto one_pagepartial #28 [GarthSnyder] - Add real first/last page links, and use them by default instead of outer window #30 [GarthSnyder]
- The disabled items should simply not be emitted, even as an empty span #30 [GarthSnyder]
- Skip
:orderin#count_allso complex groups with generated columns don't blow up in SQL-land #61 [keeran, Empact] - Ignore
:includein#count_allto make it work better with polymorphic eager loading #80 [njakobsen] - Quick fix on
#countto return the actual number of records on AR 3.0 #45 #50 - Removed "TERRIBLE HORRIBLE NO GOOD VERY BAD HACK" #82 [janx, flop, pda]
- Allow for Multiple Themes #64 [tmilewski]
- Themes can contain the whole application directory structure now
- Use gemspec method in Gemfile [p_elliott]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.12.0
-
General configuration options #41 #62 [javierv, iain]
You can now globally override some default values such as default_per_page,
window, etc. via configuration file.
Also, here comes a generator command that generates the default
configuration file into your app'sconfig/initilizersdirectory. -
Generic pagination support for Array object #47 #68 #74 [lda, ened, jianlin]
You can now paginate through any kind of Arrayish object in this way:Kaminari.paginate_array(my_array_object).page(params[:page]).per(10) -
Fixed a serious performance regression in 0.11.0 [ankane]
There was a critical performance issue on#countmethod in 0.11.0 gem. -
Bugfix: Pass the real
@paramsto url_for #90 [utkarshkukreti] -
Fixed a gem packaging problem (circular dependency)
There was a packaging problem with Kaminari 0.11.0 that the gem depends on
Kaminari gem. Maybe Jeweler + "gemspec" method didn't work well...
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.12.1
- Slim template support #93 [detrain]
- Use
Kaminari.configto specify default value forparam_name#94 [avsej] - Fixed "super called outside of method" error happened in particular versions of Ruby 1.8.7 #91 [Skulli]
_paginate.html.erbisn't rendered with custom theme #97 [danlunde]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.12.2
- Added MongoMapper Support #101 [hamin]
- Add
first_page?andlast_page?topage_scope_methods#51 [holinnn] - Make sure that the paginate helper always returns a String #99 [Draiken]
- Don't remove includes scopes from count if they are needed #100 [flop]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.12.3
- Haml 3.1 Support #96 [FlyboyArt, sonic921]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.12.4
- Support for config.param_name as lambda #102 [ajrkerr]
- Stop duplicating order_values #65 [zettabyte]
- Preserve select value (e.g. "distinct") when counting #77, #104 [tbeauvais, beatlevic]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.13.0
-
Rails 3.2 ready! #180 [slbug]
-
DataMapper support! #149 [NoICE, Ragmaanir]
-
Sinatra & Padrino support! #179 [udzura, mlightner, aereal]
-
Added mongoid embedded documents support! #155 [yuki24]
-
Added
each_relevant_pagethat only visits pages in the inner or outer windows #154 [cbeer]
Performance improved, particularly with very large number of pages. -
Memoize count for AR when calling
total_count#138 [sarmiena]
Increases performance for large datasets. -
Added
page_entries_infoview helper #140 [jeffreyiacono]
Example:<%= page_entries_info @posts %> #=> Displaying posts 6 - 10 of 26 in total -
Added
link_to_next_pagehelper method that simply links to the next page
Example:<%= link_to_next_page @posts, 'More' %> #=> <a href="/posts?page=7" rel="next">More</a> -
Let one override the
relattribute for 'link_to_next_page` helper #177 [webmat] -
Added
total_countparam for PaginatableArray. Useful for when working with RSolr #141 [samdalton] -
Changed
Kaminari.paginate_arrayAPI to take a Hashoptions
And specifying :limit & :offset immediately builds a pagination ready object
Example:# the following two are equivalent. Use whichever you like Kaminari.paginate_array((1..100).to_a, limit: 10, offset: 10) Kaminari.paginate_array((1..100).to_a).page(2).per(10) -
Added
paddingmethod to skip an arbitrary record count #60 [aaronjensen]
Example:User.page(2).per(10).padding(3) # this will return users 14..23 -
Made the pagination method name (defaulted to
page) configurable #57, #162
Example:# you can use the config file and its generator for this Kaminari.config.page_method_name = :paging Article.paging(3).per(30) -
Only add extensions to direct descendents of ActiveRecord::Base #108 [seejohnrun]
-
AR models that were subclassed before Kaminari::ActiveRecordExtension is included pick up the extensions #119 [pivotal-casebook]
-
Avoid overwriting AR::Base inherited method #165 [briandmcnabb]
-
Stopped depending on Rails gem #159 [alsemyonov]
-
introduced Travis CI #181 [hsbt]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.14.0
- Grape framework support! #218 [mrplum]
- Mongoid 3 ready! #238 [shingara]
- Added link_to_previous_page helper #191 [timgremore]
- Added helper to generate
rel="next"andrel="prev"link tags for SEO #200 [joe1chen] - Added
max_per_pageconfiguration option #274 [keiko0713]
This would be useful for the case when you are using user inputper_page
value but want to impose the upper bound. - Added I18n to page_entries_info #207 [plribeiro3000]
- Changed method name
num_pagestototal_pages
num_pagesis still available as an alias oftotal_pages, but will be deprecated or removed in some future version. - Changed the way page_entries_info behave so it can show appropriate names for models with namespace #207 [plribeiro3000]
- Added html_safe to page_entries_info helper #190 [lucapette]
- Fixed displayed number of items on each page w/ Mongoid 2.4.x and MongoMapper #194 [dblock]
- Removed a unused local variable from templates from default tamplate #245 [juno]
- Fixed page_entry_info to use the value of
entry_nameoption when given collection is empty or a PaginatableArray #265, #277 [eitoball] - Added require 'dm-aggregates' in DataMapper hook #259 [shingara]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.14.1
- Changed the default "truncation" String from "..." to … #264 [pjaspers]
- The theme generator is Github API v3 compatible now! #279 [eitoball]
- Made Kaminari.config.default_per_page changeable again #280 [yuki24]
- Ruby
Published by yuki24 about 12 years ago
https://github.com/kaminari/kaminari - 0.15.0
- Allow count, total count to pass parameters to super #193 [bsimpson]
- Add
max_pagesandmax_pages_permethods to limit displayed pages per model or globally #301 [zpieslak] - Add support for Sinatra views overrides (add app views paths) #332 [j15e]
- Fix wrong pagination when used with
padding#359 [vladimir-vg, negipo] - check for Hash in addition to OrderedHash, which seems to break in Rails 4, for total_count #369 [aew]
- Make
to_sin paginator threadsafe #374 [bf4] - Fix Missing partial Error when 'paginate' called from different format template #381 [joker1007]
- Add
PageScopeMethods#next_page,prev_page, andout_of_range?[yuki24] - Use html_safe in view partials instead of raw fixed #73 [zzak]
- Fix a bug that
PaginatableArray#total_pagesreturns the wrong value #416 [yuki24] - Make
num_pagesto return the same value astotal_pagesfor backward compat [yuki24, eitoball] - Change #page_entries_info to use model name #340, #348 [znz, eitoball]
- Change scope to class method #433 [kolodovskyy]
- Fix arity problem with Rails 4.1.0 #449 [bricker]
- Ruby
Published by yuki24 about 12 years ago