Skip to content

Commit afe3af5

Browse files
chore(release): 7.0.0
# [7.0.0](v6.10.2...v7.0.0) (2021-03-16) ### Bug Fixes * **date:** use UTC for dates to avoid timezone problems ([4d943dd](4d943dd)) * **form:** display archived options if selected ([8b8e5c7](8b8e5c7)) * **helper:** allow calling has-question-type with a nullish parameter ([67886fc](67886fc)) ### Features * **cfb:** implement search and pagination of forms ([b4400c5](b4400c5)) * **jexl:** improve mapby and add stringify transform ([9510e77](9510e77)) * chore(options)!: remove getNamespace and setNamespace methods ([613bf36](613bf36)) * chore(deps)!: drop support for older ember LTS version 2.20 ([018a689](018a689)) * chore(deps)!: update ember-apollo-client and migrate to apollo client v3 ([b914262](b914262)) ### BREAKING CHANGES * This removes the `getNamespace` and `setNamespace` methods on the options service and replaces them with real getters and setters: ```js // 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 guaranteed support for the newly active LTS 2.24 * This updates `ember-apollo-client` and therefore `apollo-client` to v3. This introduces various breaking changes. Read the [migration guide](tests/dummy/app/templates/docs/migration.md) for further instructions.
1 parent b956f79 commit afe3af5

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
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+
146
## [6.10.2](https://github.com/projectcaluma/ember-caluma/compare/v6.10.1...v6.10.2) (2021-02-15)
247

348

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-caluma",
3-
"version": "6.10.2",
3+
"version": "7.0.0",
44
"description": "The Ember.js addon for Caluma",
55
"keywords": [
66
"ember-addon",

0 commit comments

Comments
 (0)