Skip to content

Releases: projectcaluma/ember-caluma

v7.1.1

31 May 08:58
Compare
Choose a tag to compare

7.1.1 (2021-05-31)

Bug Fixes

  • tests: update graphql schema to fix testing (c928c07)

v7.1.0

17 May 15:13
Compare
Choose a tag to compare

7.1.0 (2021-05-17)

Bug Fixes

  • form-builder: fix refreshing of page when submitting search form (5df89ec)
  • jexl: fix edge case where field is not found (769d6a8)
  • feedback from code review (fdd979e)

Features

  • form builder: add syntax highlighting for markdown and jexl (155c2ce)

v7.0.6

09 Apr 08:53
Compare
Choose a tag to compare

7.0.6 (2021-04-09)

Bug Fixes

  • docs: fix broken link to snippet (9faea24)

v7.0.5

31 Mar 07:29
Compare
Choose a tag to compare

7.0.5 (2021-03-31)

Bug Fixes

  • label: fix optional chaining (2db71fa)

v7.0.4

24 Mar 16:33
Compare
Choose a tag to compare

7.0.4 (2021-03-24)

Bug Fixes

  • field: add all table columns as dependency if followed by stringify (44bbf29)
  • field: fix field dependencies for optional property (26e564e)

v7.0.3

17 Mar 09:45
Compare
Choose a tag to compare

7.0.3 (2021-03-17)

Bug Fixes

  • jexl: remove hidden columns from table value in JEXL (3e93019)

v7.0.2

16 Mar 17:19
Compare
Choose a tag to compare

7.0.2 (2021-03-16)

Bug Fixes

  • cfb: fix jexl requiredness evaluation and refactor component (745773c)

v7.0.1

16 Mar 13:35
Compare
Choose a tag to compare

7.0.1 (2021-03-16)

Bug Fixes

  • use concurrency decorators for compatibility (083136a)

v7.0.0

16 Mar 11:58
Compare
Choose a tag to compare

7.0.0 (2021-03-16)

Bug Fixes

  • date: use UTC for dates to avoid timezone problems (4d943dd)
  • form: display archived options if selected (8b8e5c7)
  • helper: allow calling has-question-type with a nullish parameter (67886fc)

Features

  • cfb: implement search and pagination of forms (b4400c5)

  • jexl: improve mapby and add stringify transform (9510e77)

  • chore(options)!: remove getNamespace and setNamespace methods (613bf36)

  • chore(deps)!: drop support for older ember LTS version 2.20 (018a689)

  • chore(deps)!: update ember-apollo-client and migrate to apollo client v3 (b914262)

BREAKING CHANGES

  • This removes the getNamespace and setNamespace methods on the options service and replaces them with real getters and setters:
// before

calumaOptions.setNamespace("Test Test");
calumaOptions.getNamespace(); // "test-test"

// after

calumaOptions.namespace = "Test Test";
calumaOptions.namespace; // "test-test"
  • This removes guaranteed support for ember LTS 2.20 and adds support for the newly active LTS 2.24
  • This updates ember-apollo-client and therefore apollo-client to v3 which introduces various breaking changes. Read the migration guide for further instructions.

v6.10.2

15 Feb 15:48
Compare
Choose a tag to compare

6.10.2 (2021-02-15)

Bug Fixes

  • field: some questions do not have an answer, handle this correctly (#1240) (f163748)