|
| 1 | +# [7.0.0](https://github.com/projectcaluma/ember-caluma/compare/v6.10.2...v7.0.0) (2021-03-16) |
| 2 | + |
| 3 | + |
| 4 | +### Bug Fixes |
| 5 | + |
| 6 | +* **date:** use UTC for dates to avoid timezone problems ([4d943dd](https://github.com/projectcaluma/ember-caluma/commit/4d943dd7672f007fa17bc55ea358ef61f2db7dd6)) |
| 7 | +* **form:** display archived options if selected ([8b8e5c7](https://github.com/projectcaluma/ember-caluma/commit/8b8e5c76df840a0b8ca835434ba25f0ff03f4390)) |
| 8 | +* **helper:** allow calling has-question-type with a nullish parameter ([67886fc](https://github.com/projectcaluma/ember-caluma/commit/67886fcc186aae4605c4bc9440ebee73c91947a0)) |
| 9 | + |
| 10 | + |
| 11 | +### Features |
| 12 | + |
| 13 | +* **cfb:** implement search and pagination of forms ([b4400c5](https://github.com/projectcaluma/ember-caluma/commit/b4400c53986d719880259bd53a9fce45d0c89050)) |
| 14 | +* **jexl:** improve mapby and add stringify transform ([9510e77](https://github.com/projectcaluma/ember-caluma/commit/9510e774057685e9d85564e6ed7595ef2324bca1)) |
| 15 | + |
| 16 | + |
| 17 | +* chore(options)!: remove getNamespace and setNamespace methods ([613bf36](https://github.com/projectcaluma/ember-caluma/commit/613bf3657b7bff29f4e3329d0d87d27957507cb0)) |
| 18 | +* chore(deps)!: drop support for older ember LTS version 2.20 ([018a689](https://github.com/projectcaluma/ember-caluma/commit/018a6899b9f835b59dbe1a115aaf4d432682d719)) |
| 19 | +* chore(deps)!: update ember-apollo-client and migrate to apollo client v3 ([b914262](https://github.com/projectcaluma/ember-caluma/commit/b914262b5ced3a027d4fd8390c72aa0ade94e4a8)) |
| 20 | + |
| 21 | + |
| 22 | +### BREAKING CHANGES |
| 23 | + |
| 24 | +* This removes the `getNamespace` and `setNamespace` |
| 25 | +methods on the options service and replaces them with real getters and |
| 26 | +setters: |
| 27 | + |
| 28 | +```js |
| 29 | +// before |
| 30 | + |
| 31 | +calumaOptions.setNamespace("Test Test"); |
| 32 | +calumaOptions.getNamespace(); // "test-test" |
| 33 | + |
| 34 | +// after |
| 35 | + |
| 36 | +calumaOptions.namespace = "Test Test"; |
| 37 | +calumaOptions.namespace; // "test-test" |
| 38 | +``` |
| 39 | +* This removes guaranteed support for ember LTS 2.20 and |
| 40 | +adds guaranteed support for the newly active LTS 2.24 |
| 41 | +* This updates `ember-apollo-client` and therefore |
| 42 | +`apollo-client` to v3. This introduces various breaking changes. Read |
| 43 | +the [migration guide](tests/dummy/app/templates/docs/migration.md) for |
| 44 | +further instructions. |
| 45 | + |
1 | 46 | ## [6.10.2](https://github.com/projectcaluma/ember-caluma/compare/v6.10.1...v6.10.2) (2021-02-15)
|
2 | 47 |
|
3 | 48 |
|
|
0 commit comments