Releases: mharris717/ember-cli-pagination
Releases · mharris717/ember-cli-pagination
Can I have the remote please?
- Updated to make it work with ember 4.x
- Remote functionality not working yet.
Send back smiles
You’re my infinity Pi
Awareness doesn't extend the past
Not to be treated as property
- 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.
- 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 theintegration
folder. Also fixing linting issues to get the suite passing witheslint
👍 - Add versions of Ember to ember-try
- Use headless chrome for CI
- Upgrade Ember and Ember Data.
- Use
yarn
!
How does one love zero.
- Force 0-based index on backend #227
Take care of the minutes
- Add an inside observer and a property as an updates indicator #221
Comparison is the death of joy.
- Type indifferent comparison to make sure requests are only fired once #215
Only the heart truly binds.
- 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")