Skip to content

Latest commit

 

History

History
227 lines (152 loc) · 11.9 KB

CHANGELOG.md

File metadata and controls

227 lines (152 loc) · 11.9 KB

Changelog

Release (2024-02-06)

ember-pikaday 5.0.0 (major)

💥 Breaking Change

  • ember-pikaday
    • #593 fix: Prevent ember-pikaday from automatically updating values to within a min/max date bounds (@Duder-onomy)

Committers: 1

Release (2024-01-29)

ember-pikaday 4.1.0 (minor)

🚀 Enhancement

  • ember-pikaday
    • #535 feat: add new register attr to access pikaday instance, moment instance replaceable (@betocantu93)

🐛 Bug Fix

  • ember-pikaday

📝 Documentation

  • ember-pikaday
    • #534 fix(docs): simpler localization of datepicker (@czosel)

🏠 Internal

Committers: 5

v4.0.0 (2022-02-02)

🚀 Enhancement

  • New {{pikaday}} modifier gives you direct access to Pikaday's API in a Ember template.
  • Fully supports Ember 4.0
  • Ships as a V2-formatted addon for better static analysis, build-system simplicity, and smaller node_modules

💥 Breaking Change

  • The minimum supported Ember version is now 3.25.

  • The minimum supported Node version is now 12.

  • This is now a V2-formatted addon, so apps need ember-auto-import 2.0 or Embroider in order to use it. See "Installation" section of README.

  • You now need to opt in to getting Pikaday's default CSS. See "Styles" section of the README.

  • #532 Update for Ember 4 and Embroider (@ef4)

🏠 Internal

Committers: 2

v3.0.0 (2020-04-15)

💥 Breaking Change

This major version release drops support for Node.js 6 and 8 and for all Ember.js releases that happened before v3.12. Other than that there should be no other breaking changes included in this release.

🚀 Enhancement

🐛 Bug Fix

📝 Documentation

🏠 Internal

Committers: 4

v2.4.1 (2019-09-10)

🐛 Bug Fix

🏠 Internal

Committers: 2

v2.4.0 (2019-07-05)

🚀 Enhancement

  • #220 Remove jQuery from interactor and components (@FabHof)

📝 Documentation

🏠 Internal

  • #226 run rwjblue's release it script (@efx)
  • #225 introduce lerna-changelog (@efx)
  • #224 remove bower configuration (@efx)
  • #223 update to new repository URL (@efx)

Committers: 3

View 1.X CHANGELOG

2.3.0

  • Cleanup scheduled task when component is torn down (Contribution by @bdollard)
  • chore: configure Prettier (Contribution by @alexlafroscia)
  • Allow minDate & maxDate to be reset (Contribution by @asjongers)
  • Update Tests (Contribution by @alexlafroscia)
  • fix: remove use of deprecated sync queue (Contribution by @alexlafroscia

2.2.6

  • Upgrade to ES6 modules (Contribution by @esbanarango)
  • add test on interactor day selection edge case (Contribution by @hakilebara)
  • set autocomplete to off as default (Contribution by @luxferresum)
  • Move ember-cli-moment-shim to dependencies (Contribution by @esbanarango)

2.2.5

  • Prevent error in run later when component was destroyed (Contribution by @Schnellesadlerauge))
  • Upgrade to ember/ember-cli 2.18.2 (Contribution by @mnutt))

2.2.4

  • Fix syntax error (Contribution by @quadstar))
  • Add ability to set a default date (Contribution by @jscn)
  • Remove arguments in component lifecycle hooks (Contribution by @jbaily4)
  • Fixes moment deprecation by using a date format (Contribution by @cah-danmonroe)

2.2.3

  • Allow binding of autocomplete attribute (Contribution by @npafundi)
  • Upgrade to Ember CLI 2.12.1 (Contribution by @leizhao4)
  • Set minDate and maxDate using a copy to avoid modifying original date (Contribution by @sandydoo)
  • Fix ember-cli-node-asset deprecation of complex imports inline (Contribution by @leizhao4)
  • Remove deprecation warning in using didUpdateAttrs (Contribution by @tsteuwer)
  • Make setDate asychronous (Contribution by @bdollard)
  • run super on willDestroy (Contribution by @devotox)
  • Prepare for FastBoot 1.0 (Contribution by @josemarluedke)

2.2.2

  • Fix infinite rendering invalidation detected (Contribution by @jedrula)
  • Fix 2.12 deprecation of arguments in component life cycle hooks (Contribution by @leizhao4)
  • Fix enforcing minDate to allow null value (Contribution by @ilucin)

2.2.1

  • Enforce current date to be between specified min & max date, also on changes of those (Contribution by @showy)
  • Replace deprecated Ember.K syntax with JavaScript alternative (Contribution by @locks)

2.2.0

  • Fix test helper. (Contribution by @duizendnegen)
  • Use Pikaday through npm instead of bower. (Contribution by @josemarluedke)
  • Fix setting date to wait after min / max date to be updated. (Contribution by @sl249)
  • Fix firing min/max date changes. (Contribution by @patrickberkeley)
  • Basic Fastboot compatibility, by merely rendering an input and excluding Pikaday.js in Fastboot mode. (Contribution by @josemarluedke)
  • Support for modern ember-i18n. (Contribution by @lcpriest)

2.1.0

  • Remove Moment.js deprecation warning due to passed non-parsable arguments. (Contribution by @mdentremont)
  • Allow binding of tabindex attribute. (Contribution by @FUT)
  • Add inputless component. (Contribution by @lan0)

2.0.0

  • Add support for onOpen, onClose and onDraw actions. (Contribution by @leizhao4)

2.0.0-beta.2

  • Passed in values respect useUTC setting. (Contribution by @DanLatimer)
  • Correctly call onSelection action when datepicker is cleared. (Contribution by @DanLatimer)
  • Allow binding of hidden and title attributes. (Contribution by @ykaragol)

2.0.0-beta.1

  • Use the DDAU paradigm prefered by Ember. (Contribution by @Fed03)
  • Support all Pikaday options via an hash. (Contribution by @Fed03)