Releases: projectcaluma/caluma
Releases · projectcaluma/caluma
v8.0.0-beta.10
Fix
- document: Fix label of copied dynamic options (
00383fc
)
v8.0.0-beta.8
Fix
- default answer: Don't set document when copying default answers (
7b5ce74
)
v8.0.0-beta.7
v8.0.0-beta.6
Feature
- ordering: Remove unused ordering attributes and add missing (
9cbdd7d
) - events: Cleanup deprecated events (
1bf5792
) - filters: Clean up all the old filter syntax (
ad008cd
)
Breaking
Remove unused ordering attributes and add missing (9cbdd7d
)
This removes various orderings that do not make sense and were not used:
- On all connections:
created_by_user
created_by_group
modified_by_user
modified_by_group
Answer
document
file
Document
source
The following ordering attributes were added because they make sense:
Case
created_at
modified_at
Flow
created_at
modified_at
Task
created_at
modified_at
Workflow
created_at
modified_at
AnalyticsField
created_at
modified_at
alias
DynamicOption
created_at
modified_at
slug
label
question
Flow
created_at
modified_at
task
Cleanup deprecated events (1bf5792
)
The following deprecated events were removed:
created_work_item
completed_work_item
skipped_work_item
suspended_work_item
resumed_work_item
completed_case
created_case
suspended_case
resumed_case
canceled_work_item
cancelled_work_item
canceled_case
cancelled_case
Clean up all the old filter syntax (ad008cd
)
We have for a long time had two syntaxes for filtering, one of which was deprecated for over a year now and only kept for backwards compatibility. Finally, the old form has to go.
Old:
query foo {
allWorkItems(status: $status) {...}
}
New:
query foo {
allWorkItems(filter: [{status: $status}]) {...}
}
The new syntax also allows reusing the same filter type twice to narrow down the result set even more. It also supports inverting the filters to implement explicit exclusion. It is now time to get rid of the old syntax.
The following changes are breaking:
- Removed deprecated
slug
filters in favor orslugs
filters - Removed top level filters
- Removed
orderByQuestionAnswerValue
filter in favor ofdocumentAnswer
in the top level orderset - Removed
orderBy
in filtersets in favor of top levelorder
orderset - Removed ordering by static meta attributes (configured with
META_FIELDS
in favor ofmeta
in the top level orderset
v8.0.0-beta.5
Fix
- deps: Lock graphql-core to 3.1.x to avoid import error (
04f35c8
)
v8.0.0-beta.4
v8.0.0-beta.3
Feature
- analytics: Support for additional starting objects (
4f24b5b
) - test: Fixture for running a block of code at a given faked time (
8e3ab7a
) - Reopen case and ready work items (
ed7ff26
) - analytics: Summary row (
4e7bd5c
) - analytics: Pivot table implementation (
ccc6bab
) - test: Add at_date fixture (
649f657
)
Fix
v8.0.0-beta.2
Fix
- relay: Make extraction of global ids more defensive (
392b4f7
)