Skip to content

Releases: mharris717/ember-cli-pagination

Can I have the remote please?

07 Jun 14:07
5748b6b
Compare
Choose a tag to compare
Pre-release
  • Updated to make it work with ember 4.x
  • Remote functionality not working yet.

Send back smiles

30 Aug 14:02
Compare
Choose a tag to compare
  • Fix deprecations #275

You’re my infinity Pi

07 Jan 13:41
Compare
Choose a tag to compare
  • Reload method for PagedRemoteArray #261
  • Fix promise chaining and create shallow copy of ops before passing to store.query #262
  • Fix problem with various methods from ArrayProxy #263

Awareness doesn't extend the past

29 Aug 13:59
Compare
Choose a tag to compare
  • Fix trunctated pages when no pages present #255
  • Copy computed without deprecations #256

Not to be treated as property

17 Aug 13:48
Compare
Choose a tag to compare
  • Fixing unclosed code highlighting block in README #231
  • Fixing README #232
  • Adds better documentation for the param mapping #233
  • Data refresh documentation #237
  • Add warning about generating page-numbers.hbs #235
  • change Ember.logger... to console... #246
  • Fix Use defineProperty to define computed properties deprecations #248
  • Add 'no-console': 'off' to eslint #249
  • remove call to defineProperty when value is a number #253

You have to be up to tomorrow.

17 Oct 17:14
Compare
Choose a tag to compare
  • Bump Ember CLI
  • Bump Ember CLI Babel to 6.8.2, which will allow consumers to drop the shims file. This is a breaking change that drops support for Node < 4.
  • Update general files per ember init, should make future upgrade simpler.
  • Clean up some testing items, including re-locating the acceptance tests to the acceptance folder and out of the integration folder. Also fixing linting issues to get the suite passing with eslint 👍
  • Add versions of Ember to ember-try
  • Use headless chrome for CI
  • Upgrade Ember and Ember Data.
  • Use yarn!

How does one love zero.

21 Sep 11:29
Compare
Choose a tag to compare
  • Force 0-based index on backend #227

Take care of the minutes

26 May 12:22
Compare
Choose a tag to compare
  • Add an inside observer and a property as an updates indicator #221

Comparison is the death of joy.

17 Feb 16:42
Compare
Choose a tag to compare
  • Type indifferent comparison to make sure requests are only fired once #215

Only the heart truly binds.

10 Feb 13:12
Compare
Choose a tag to compare
  • Fix deprecations #113

Version 3.0.0 is breaking and removes the need for Ember.Binding.

Local Store

Change:

pagedContent: pagedArray('content', {pageBinding: "page", perPageBinding: "perPage"}),

To:

pagedContent: pagedArray('content', {
   page: Ember.computed.alias("parent.page"),
   perPage: Ember.computed.alias("parent.perPage")
}),

and

totalPagesBinding: "pagedContent.totalPages"

To:

totalPages: Ember.computed.oneWay("pagedContent.totalPages")

Remote Paginated API

Change:

pageBinding: "pagedContent.page",
perPageBinding: "pagedContent.perPage",
totalPagesBinding: "pagedContent.totalPages"

To:

page: Ember.computed.alias("pagedContent.page"),
perPage: Ember.computed.alias("pagedContent.perPage"),
totalPages: Ember.computed.oneWay("pagedContent.totalPages")