Releases: projectcaluma/ember-caluma
Releases · projectcaluma/ember-caluma
v1.2.4
v1.2.3
1.2.3 (2019-07-01)
Bug Fixes
- deps: update dependency ember-fetch to v6.6.0 (cfc9e85)
- deps: update dependency ember-math-helpers to v2.11.3 (bd205da)
- deps: update dependency graphql to v14.4.0 (ed9fdb4)
- deps: update dependency graphql to v14.4.1 (c0bf301)
- deps: update dependency sass to v1.22.1 (9a86dc0)
- form: fix resetting of values on slow input (e07388a)
v1.2.2
1.2.2 (2019-06-25)
Bug Fixes
- deps: update dependency ember-cli-string-helpers to v3 (fc4d0c3)
- deps: update dependency ember-math-helpers to v2.11.2 (13241bc)
- deps: update dependency graphql-tools to v4.0.5 (094f60c)
- deps: update dependency sass to v1.22.0 (4d94453)
- form: add missing validation function for form questions (c9a4a0f)
- form: fix answer handling of powerselect widget (cb37130)
- form: fix loading of subforms and improve error handling (b47cd4d)
- form: fix wrong answer when clicking checkboxes too fast (8b8bc30)
- table: allow tables to have documents as value (017515f)
v1.2.1
v1.2.0
v1.1.0
1.1.0 (2019-06-17)
Bug Fixes
- babel: remove obsolete babel config (53846bf)
- deps: remove tough-cookie resolution (9dd9506)
- deps: update dependency apollo-link-context to v1.0.18 (5449909)
- deps: update dependency ember-auto-import to v1.4.1 (144e81c)
- deps: update dependency ember-intl to v4 (3536974)
- form builder: fix float inputs (6c111e5)
- intl: update the ember-intl config to the latest version (41522fa)
Features
- form: prevent displaying of empty forms (5cbf7d3)
v1.0.2
1.0.2 (2019-06-13)
Bug Fixes
- deps: remove dependency to liquid-fire (d0d7d60)
- deps: update dependency ember-auto-import to v1.4.0 (5a86384)
- deps: update dependency ember-changeset to v2.1.2 (b2c2e95)
- deps: update dependency ember-concurrency to v1 (e29c588)
- deps: update dependency ember-uikit to v0.8.2 (4990142)
- deps: update dependency sass to v1.21.0 (ea032d5)
- form: improve initial loading performance (fa4046b)
- linting: fix linting error happening since the prettier update (9d61840)
- table-date: correctly render date questions in table rows (b07aa82)
v1.0.1
v1.0.0
1.0.0 (2019-05-31)
Bug Fixes
- deps: update dependency ember-changeset to v2.1.1 (e0be925)
- deps: update dependency ember-cli-string-helpers to v2.1.0 (e2d77c5)
- deps: update dependency ember-concurrency to v0.10.1 (c8259be)
- deps: update dependency graphql to v14.3.1 (782a11e)
- deps: update ember-cli-mirage to v1.0.0 (0ff0e23)
Features
- mirage: add option to disable mirage support (93531d1)
- navigation: add previous / next pagination (6aea609)
- navigation: allow customization of the navigation (fe61ca8)
BREAKING CHANGES
- navigation: this changes the way a form is used in the host
application. Before, thecf-navigation
component rendered the whole
navigation and the form in it. Now there is a wrapper component
cf-content
which yields or renders the form and the navigation. This
way the host app is able to customize where to render the navigation and
the form. Also the host app does not need to pass thesection
and
subSection
query parameters since they are taken directly from the
router.
Before:
After:
- deps: This change requires the users of ember-caluma to
manually add faker and ember-auto-import to their devDependencies:
yarn add -D faker ember-auto-import
This is necessary because ember-cli-mirage stopped including faker in
their build. Since we expose factories using faker to the host app, they
need to install this.