@outliant/sunrise-utils 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/helpers/projectFilter/index.js +12 -0
- package/helpers/taskFilter/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,23 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [1.0.10](https://github.com/outliant/sunrise-utils/compare/1.0.9...1.0.10)
|
|
8
|
+
|
|
9
|
+
- chore: added created and updated on project list columns #860qbm263 [`8f664f1`](https://github.com/outliant/sunrise-utils/commit/8f664f117644d97e5338f11c0f4e1a4396375b07)
|
|
10
|
+
|
|
11
|
+
#### [1.0.9](https://github.com/outliant/sunrise-utils/compare/1.0.8...1.0.9)
|
|
12
|
+
|
|
13
|
+
> 30 March 2023
|
|
14
|
+
|
|
15
|
+
- chore(release): 1.0.9 [`b866dd4`](https://github.com/outliant/sunrise-utils/commit/b866dd4b473c10534c8fe10d6a388a905fb8f0c1)
|
|
16
|
+
- chore: support taskfield group #860pn480e [`9bded12`](https://github.com/outliant/sunrise-utils/commit/9bded1255c994ea01823b1b689aa38d80da76c8a)
|
|
17
|
+
|
|
7
18
|
#### [1.0.8](https://github.com/outliant/sunrise-utils/compare/1.0.7...1.0.8)
|
|
8
19
|
|
|
20
|
+
> 24 March 2023
|
|
21
|
+
|
|
9
22
|
- chore: use match_phrase_prefix [`#3`](https://github.com/outliant/sunrise-utils/pull/3)
|
|
23
|
+
- chore(release): 1.0.8 [`d901d17`](https://github.com/outliant/sunrise-utils/commit/d901d17b78491dfe89c3068dac03579c902590b1)
|
|
10
24
|
- chore(#860q1ku0m): use match_phrase_prefix for fuzzy searching [`f607110`](https://github.com/outliant/sunrise-utils/commit/f607110d9071d02b0aeeb1a41dd0e8ee4b13d6f5)
|
|
11
25
|
|
|
12
26
|
#### [1.0.7](https://github.com/outliant/sunrise-utils/compare/1.0.6...1.0.7)
|
|
@@ -59,6 +59,18 @@ module.exports.defaultCustomColumns = [
|
|
|
59
59
|
value: 'lastPulseCommentDate',
|
|
60
60
|
type: 'lastPulseCommentDate',
|
|
61
61
|
field_type: 'date'
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Created',
|
|
65
|
+
value: 'created_at',
|
|
66
|
+
type: 'created_at',
|
|
67
|
+
field_type: 'date'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Updated',
|
|
71
|
+
value: 'updated_at',
|
|
72
|
+
type: 'updated_at',
|
|
73
|
+
field_type: 'date'
|
|
62
74
|
}
|
|
63
75
|
];
|
|
64
76
|
|