Releases: html-next/vertical-collection
Releases · html-next/vertical-collection
Release 2.1.0
Changelog:
- Upgrade ember-cli and dev deps (#348) (e8924e9)
- Drop Ember global use in favor of native API (#347) (d101d8a)
- Proper runloop imports (#346) (a765241)
- Remove property fallback lookup (no implicit this) (#345) (506d798)
- Modernize
htmlSafe
module imports / More cleanup (#344) (32e9460) - Update CI for vertical-collection v2 (#342) (5613faa)
Release 2.0.1
🐛 Bug Fix
- #322 Remove comma in selector list in css (@CubeSquared)
🏠 Internal
- #336 Add rwjblue release-it setup (@rwwagner90)
Committers: 2
- Matthew Jacobs (@CubeSquared)
- Robert Wagner (@rwwagner90)
v2.0.0
- Kick off 2.0-beta (#321) 612093d
- Use closure actions for tests (#291) 4c787b2
- Ember 3.12 7440418
- Remove compatibility helpers (#289) 011d9a4
- bump version c8869a1
- Update the README, add a support matrix (#286) 2b21451
- upgrading to babel 7 (#258) 88fa104
- Ember 3.11 (#281) 726fb85
- Bump some deps, cleanup some unused stuff (#280) 09d879b
v2.0.0-0
- Restore support for Ember 2.x (#331) 293076c
- Update ci.yml 04fdaad
- Update ci.yml 0aec8e2
- Enable jQuery 5adde4b
- Set ember-compatibility-helpers to 1.2.1 53edcfc
- pin ember-data fea1138
- Uncomment Ember test targets 11b2ccd
- Remove .travis.yml (#329) ef9e742
- Bump
ember-raf-scheduler
(#328) 0e35cf9 - Drop 2.4 (#326) 8cd20e1
- Move to GH Actions, drop Ember 2.4 (#325) a6db653
- Kick off 2.0-beta e824d7e
- Use closure actions for tests (#291) 4c787b2
- Ember 3.12 7440418
- Remove compatibility helpers (#289) 011d9a4
- bump version c8869a1
- Update the README, add a support matrix (#286) 2b21451
- upgrading to babel 7 (#258) 88fa104
- Ember 3.11 (#281) 726fb85
- Bump some deps, cleanup some unused stuff (#280) 09d879b
v1.0.0-beta.9
This release contains a few breaking changes in vertical-collections
behavior:
- The
vertical-collection
component is now tagless by default. This means it can be used directly in your templates just about anywhere, and it won't affect your existing styles at all. If you were previously usingtagName
to change the element of the collection this will still work and add a tag, but that element will by default become the scroll container for the collection. You must usecontainerSelector
to change it to a different parent if you want to. - The collection now creates and removes elements from the pool of rendered components dynamically based on actual component size and container size. This means that it will automatically check after each render to see if more components need to be rendered (incremental rerender), and remove components if too many were rendered. Users shouldn't notice a difference in day-to-day usage, but it could affect tests they expected certain items to exist at a given time.
This is expected to be the final beta before we release v1.0.0 🎉