@lighthouse/common 6.10.0 → 6.10.1-canary.0
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/.mise.toml +6 -6
- package/CHANGELOG.md +758 -758
- package/README.md +1 -1
- package/dist/errors/FetchImageError.js +3 -3
- package/dist/helpers/fetch-image-for-pdf-generator-service/index.js +7 -7
- package/dist/helpers/floatify/index.js +6 -6
- package/dist/helpers/get-audit-items-data/index.js +47 -36
- package/dist/helpers/validate-url/index.js +4 -4
- package/dist/pdf/activity-report/index.js +32 -32
- package/dist/pdf/audit/index.js +23 -23
- package/dist/pdf/helpers/fields/index.js +47 -27
- package/dist/pdf/issue/index.js +23 -23
- package/dist/pdf/job/index.js +22 -22
- package/dist/pdf/shift-report/index.js +28 -28
- package/dist/pdf/task/index.js +23 -23
- package/dist/scheduling/generators/occurrenceIntervalsGenerator.js +2 -2
- package/dist/scheduling/generators/scheduleIntervalsGenerator.js +2 -2
- package/dist/scheduling/generators/serviceIntervalsGenerator.js +2 -2
- package/dist/scheduling/helpers/convertToTimezone.js +6 -6
- package/dist/scheduling/helpers/generateNonRepeatingSchedule.js +2 -2
- package/dist/scheduling/helpers/generateRepeatingSchedule.js +2 -2
- package/dist/scheduling/helpers/generateScheduleEnd.js +2 -2
- package/dist/scheduling/helpers/hasValidStartAndEnd.js +5 -5
- package/dist/scheduling/helpers/intervalCovers.js +6 -6
- package/dist/scheduling/helpers/intervalIntersectsEnd.js +6 -6
- package/dist/scheduling/helpers/intervalIntersectsStart.js +6 -6
- package/dist/scheduling/helpers/intervalOnlyIntersectsEnd.js +6 -6
- package/dist/scheduling/helpers/intervalOnlyIntersectsStart.js +6 -6
- package/dist/scheduling/helpers/intervalOutside.js +6 -6
- package/dist/scheduling/helpers/intervalWithin.js +6 -6
- package/dist/scheduling/helpers/mergeIntervals.js +6 -6
- package/dist/scheduling/helpers/splitIntervals.js +6 -6
- package/dist/scheduling/strategies/getNext.js +2 -2
- package/dist/scheduling/strategies/getNextExactDateOfMonth.js +2 -2
- package/dist/scheduling/strategies/getNextLastDayOfMonth.js +2 -2
- package/dist/scheduling/strategies/getNextLastWeekdayOfMonth.js +2 -2
- package/dist/scheduling/strategies/getNextNoRepeat.js +2 -2
- package/dist/scheduling/strategies/getNextWeekday.js +2 -2
- package/dist/scheduling/strategies/getNextXDayOfXWeekOfMonth.js +2 -2
- package/dist/service-hours/__helpers__/calculate-hours.js +4 -4
- package/dist/service-hours/__helpers__/isOpen.js +2 -2
- package/dist/service-hours/schema.js +4 -4
- package/lib/constants.js +12 -6
- package/lib/constants.js.map +1 -1
- package/lib/errors/DomainError.js +14 -21
- package/lib/errors/DomainError.js.map +1 -1
- package/lib/errors/FetchImageError.js +17 -24
- package/lib/errors/FetchImageError.js.map +1 -1
- package/lib/errors/ValidationError.js +30 -36
- package/lib/errors/ValidationError.js.map +1 -1
- package/lib/errors/index.js +23 -5
- package/lib/errors/index.js.map +1 -1
- package/lib/helpers/build-fetch-url/index.js +43 -47
- package/lib/helpers/build-fetch-url/index.js.map +1 -1
- package/lib/helpers/fetch-image/index.js +83 -82
- package/lib/helpers/fetch-image/index.js.map +1 -1
- package/lib/helpers/fetch-image-for-pdf-generator-service/index.js +168 -243
- package/lib/helpers/fetch-image-for-pdf-generator-service/index.js.map +1 -1
- package/lib/helpers/fetch-image-for-web/index.js +71 -94
- package/lib/helpers/fetch-image-for-web/index.js.map +1 -1
- package/lib/helpers/fetch-lighthouse-logo/index.js +36 -61
- package/lib/helpers/fetch-lighthouse-logo/index.js.map +1 -1
- package/lib/helpers/floatify/index.js +13 -7
- package/lib/helpers/floatify/index.js.map +1 -1
- package/lib/helpers/get-assignees-full-names/index.js +11 -7
- package/lib/helpers/get-assignees-full-names/index.js.map +1 -1
- package/lib/helpers/get-audit-entry-details/index.js +42 -32
- package/lib/helpers/get-audit-entry-details/index.js.map +1 -1
- package/lib/helpers/get-audit-items-data/index.js +104 -83
- package/lib/helpers/get-audit-items-data/index.js.map +1 -1
- package/lib/helpers/get-geometry-geocoded-string/index.js +10 -5
- package/lib/helpers/get-geometry-geocoded-string/index.js.map +1 -1
- package/lib/helpers/get-issue-details/index.js +53 -43
- package/lib/helpers/get-issue-details/index.js.map +1 -1
- package/lib/helpers/get-job-details/index.js +49 -41
- package/lib/helpers/get-job-details/index.js.map +1 -1
- package/lib/helpers/get-location-reference/index.js +32 -34
- package/lib/helpers/get-location-reference/index.js.map +1 -1
- package/lib/helpers/get-pretty-duration/index.js +16 -10
- package/lib/helpers/get-pretty-duration/index.js.map +1 -1
- package/lib/helpers/get-reference-details/index.js +20 -10
- package/lib/helpers/get-reference-details/index.js.map +1 -1
- package/lib/helpers/get-status-details/index.js +8 -2
- package/lib/helpers/get-status-details/index.js.map +1 -1
- package/lib/helpers/get-task-entry-details/index.js +32 -23
- package/lib/helpers/get-task-entry-details/index.js.map +1 -1
- package/lib/helpers/get-timezone-abbr/index.js +11 -4
- package/lib/helpers/get-timezone-abbr/index.js.map +1 -1
- package/lib/helpers/get-timezone-datetime/index.js +20 -13
- package/lib/helpers/get-timezone-datetime/index.js.map +1 -1
- package/lib/helpers/get-user-full-name/index.js +9 -3
- package/lib/helpers/get-user-full-name/index.js.map +1 -1
- package/lib/helpers/get-value-as-percentage/index.js +9 -4
- package/lib/helpers/get-value-as-percentage/index.js.map +1 -1
- package/lib/helpers/image-validators/index.js +18 -12
- package/lib/helpers/image-validators/index.js.map +1 -1
- package/lib/helpers/index.js +130 -18
- package/lib/helpers/index.js.map +1 -1
- package/lib/helpers/validate-url/index.js +11 -5
- package/lib/helpers/validate-url/index.js.map +1 -1
- package/lib/images/index.js +10 -4
- package/lib/images/index.js.map +1 -1
- package/lib/index.js +66 -10
- package/lib/index.js.map +1 -1
- package/lib/pdf/activity-report/index.js +407 -537
- package/lib/pdf/activity-report/index.js.map +1 -1
- package/lib/pdf/audit/index.js +137 -134
- package/lib/pdf/audit/index.js.map +1 -1
- package/lib/pdf/fonts/index.js +4 -2
- package/lib/pdf/fonts/index.js.map +1 -1
- package/lib/pdf/helpers/build-audit-content/index.js +57 -51
- package/lib/pdf/helpers/build-audit-content/index.js.map +1 -1
- package/lib/pdf/helpers/build-audit-follow-ups/index.js +52 -50
- package/lib/pdf/helpers/build-audit-follow-ups/index.js.map +1 -1
- package/lib/pdf/helpers/build-location-scans-content/index.js +22 -16
- package/lib/pdf/helpers/build-location-scans-content/index.js.map +1 -1
- package/lib/pdf/helpers/build-template-content/index.js +52 -51
- package/lib/pdf/helpers/build-template-content/index.js.map +1 -1
- package/lib/pdf/helpers/default-footer/index.js +38 -35
- package/lib/pdf/helpers/default-footer/index.js.map +1 -1
- package/lib/pdf/helpers/default-header/index.js +40 -35
- package/lib/pdf/helpers/default-header/index.js.map +1 -1
- package/lib/pdf/helpers/default-styles/index.js +7 -1
- package/lib/pdf/helpers/default-styles/index.js.map +1 -1
- package/lib/pdf/helpers/fields/index.js +225 -214
- package/lib/pdf/helpers/fields/index.js.map +1 -1
- package/lib/pdf/helpers/format-location-address/index.js +14 -8
- package/lib/pdf/helpers/format-location-address/index.js.map +1 -1
- package/lib/pdf/helpers/generate-definition/index.js +60 -65
- package/lib/pdf/helpers/generate-definition/index.js.map +1 -1
- package/lib/pdf/helpers/horizontal-line/index.js +14 -14
- package/lib/pdf/helpers/horizontal-line/index.js.map +1 -1
- package/lib/pdf/helpers/html-transformer/index.js +45 -35
- package/lib/pdf/helpers/html-transformer/index.js.map +1 -1
- package/lib/pdf/helpers/index.js +194 -15
- package/lib/pdf/helpers/index.js.map +1 -1
- package/lib/pdf/helpers/parse-value/index.js +10 -4
- package/lib/pdf/helpers/parse-value/index.js.map +1 -1
- package/lib/pdf/helpers/table/index.js +136 -205
- package/lib/pdf/helpers/table/index.js.map +1 -1
- package/lib/pdf/helpers/text/index.js +11 -8
- package/lib/pdf/helpers/text/index.js.map +1 -1
- package/lib/pdf/icons/index.js +8 -2
- package/lib/pdf/icons/index.js.map +1 -1
- package/lib/pdf/index.js +47 -6
- package/lib/pdf/index.js.map +1 -1
- package/lib/pdf/issue/index.js +141 -135
- package/lib/pdf/issue/index.js.map +1 -1
- package/lib/pdf/job/index.js +95 -81
- package/lib/pdf/job/index.js.map +1 -1
- package/lib/pdf/shift-report/emptyFixtures.js +8 -2
- package/lib/pdf/shift-report/emptyFixtures.js.map +1 -1
- package/lib/pdf/shift-report/index.js +399 -521
- package/lib/pdf/shift-report/index.js.map +1 -1
- package/lib/pdf/task/index.js +89 -83
- package/lib/pdf/task/index.js.map +1 -1
- package/lib/scheduling/generators/index.js +38 -3
- package/lib/scheduling/generators/index.js.map +1 -1
- package/lib/scheduling/generators/occurrenceIntervalsGenerator.js +44 -37
- package/lib/scheduling/generators/occurrenceIntervalsGenerator.js.map +1 -1
- package/lib/scheduling/generators/scheduleIntervalsGenerator.js +20 -28
- package/lib/scheduling/generators/scheduleIntervalsGenerator.js.map +1 -1
- package/lib/scheduling/generators/serviceIntervalsGenerator.js +120 -150
- package/lib/scheduling/generators/serviceIntervalsGenerator.js.map +1 -1
- package/lib/scheduling/helpers/convertToTimezone.js +18 -11
- package/lib/scheduling/helpers/convertToTimezone.js.map +1 -1
- package/lib/scheduling/helpers/generateNonRepeatingSchedule.js +57 -95
- package/lib/scheduling/helpers/generateNonRepeatingSchedule.js.map +1 -1
- package/lib/scheduling/helpers/generateRepeatingSchedule.js +80 -119
- package/lib/scheduling/helpers/generateRepeatingSchedule.js.map +1 -1
- package/lib/scheduling/helpers/generateScheduleEnd.js +24 -14
- package/lib/scheduling/helpers/generateScheduleEnd.js.map +1 -1
- package/lib/scheduling/helpers/hasValidStartAndEnd.js +19 -11
- package/lib/scheduling/helpers/hasValidStartAndEnd.js.map +1 -1
- package/lib/scheduling/helpers/index.js +159 -14
- package/lib/scheduling/helpers/index.js.map +1 -1
- package/lib/scheduling/helpers/intervalCovers.js +13 -7
- package/lib/scheduling/helpers/intervalCovers.js.map +1 -1
- package/lib/scheduling/helpers/intervalIntersectsEnd.js +13 -7
- package/lib/scheduling/helpers/intervalIntersectsEnd.js.map +1 -1
- package/lib/scheduling/helpers/intervalIntersectsStart.js +13 -7
- package/lib/scheduling/helpers/intervalIntersectsStart.js.map +1 -1
- package/lib/scheduling/helpers/intervalOnlyIntersectsEnd.js +15 -10
- package/lib/scheduling/helpers/intervalOnlyIntersectsEnd.js.map +1 -1
- package/lib/scheduling/helpers/intervalOnlyIntersectsStart.js +15 -10
- package/lib/scheduling/helpers/intervalOnlyIntersectsStart.js.map +1 -1
- package/lib/scheduling/helpers/intervalOutside.js +15 -9
- package/lib/scheduling/helpers/intervalOutside.js.map +1 -1
- package/lib/scheduling/helpers/intervalWithin.js +13 -7
- package/lib/scheduling/helpers/intervalWithin.js.map +1 -1
- package/lib/scheduling/helpers/mergeIntervals.js +21 -17
- package/lib/scheduling/helpers/mergeIntervals.js.map +1 -1
- package/lib/scheduling/helpers/splitIntervals.js +24 -23
- package/lib/scheduling/helpers/splitIntervals.js.map +1 -1
- package/lib/scheduling/index.js +38 -3
- package/lib/scheduling/index.js.map +1 -1
- package/lib/scheduling/scheduling.types.js +9 -3
- package/lib/scheduling/scheduling.types.js.map +1 -1
- package/lib/scheduling/strategies/getNext.js +57 -63
- package/lib/scheduling/strategies/getNext.js.map +1 -1
- package/lib/scheduling/strategies/getNextExactDateOfMonth.js +47 -56
- package/lib/scheduling/strategies/getNextExactDateOfMonth.js.map +1 -1
- package/lib/scheduling/strategies/getNextLastDayOfMonth.js +43 -51
- package/lib/scheduling/strategies/getNextLastDayOfMonth.js.map +1 -1
- package/lib/scheduling/strategies/getNextLastWeekdayOfMonth.js +49 -56
- package/lib/scheduling/strategies/getNextLastWeekdayOfMonth.js.map +1 -1
- package/lib/scheduling/strategies/getNextNoRepeat.js +25 -36
- package/lib/scheduling/strategies/getNextNoRepeat.js.map +1 -1
- package/lib/scheduling/strategies/getNextWeekday.js +47 -79
- package/lib/scheduling/strategies/getNextWeekday.js.map +1 -1
- package/lib/scheduling/strategies/getNextXDayOfXWeekOfMonth.js +52 -58
- package/lib/scheduling/strategies/getNextXDayOfXWeekOfMonth.js.map +1 -1
- package/lib/scheduling/strategies/index.js +82 -7
- package/lib/scheduling/strategies/index.js.map +1 -1
- package/lib/schema/index.js +16 -1
- package/lib/schema/index.js.map +1 -1
- package/lib/schema/schema.js +28 -34
- package/lib/schema/schema.js.map +1 -1
- package/lib/service-hours/__helpers__/calculate-hours.js +24 -22
- package/lib/service-hours/__helpers__/calculate-hours.js.map +1 -1
- package/lib/service-hours/__helpers__/isOpen.js +25 -24
- package/lib/service-hours/__helpers__/isOpen.js.map +1 -1
- package/lib/service-hours/index.js +27 -2
- package/lib/service-hours/index.js.map +1 -1
- package/lib/service-hours/schema.js +68 -55
- package/lib/service-hours/schema.js.map +1 -1
- package/package.json +86 -86
- package/vitest.config.ts +23 -23
- package/vitest.setup.js +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,758 +1,758 @@
|
|
|
1
|
-
# 6.9.3 (Wed Feb 26 2026)
|
|
2
|
-
|
|
3
|
-
#### 🐛 Bug Fix
|
|
4
|
-
|
|
5
|
-
- 🐛 Fix - Cross-region S3/Lambda access for image transformer cache ([@AndrewFinlay](https://github.com/AndrewFinlay))
|
|
6
|
-
- Hardcode IMAGE_CACHE_REGION to us-east-1 for Lambda and S3 clients
|
|
7
|
-
- Fixes NoSuchBucket errors when generating PDFs with images in non-us-east-1 regions
|
|
8
|
-
- Image transformer Lambda and cache bucket only exist in us-east-1
|
|
9
|
-
|
|
10
|
-
#### Authors: 1
|
|
11
|
-
|
|
12
|
-
- Andrew Finlay ([@AndrewFinlay](https://github.com/AndrewFinlay))
|
|
13
|
-
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
# 4.27.5 (Fri May 12 2023)
|
|
17
|
-
|
|
18
|
-
#### 🐛 Bug Fix
|
|
19
|
-
|
|
20
|
-
- Unused import lint fixes [#119](https://github.com/Lighthouse-io/common/pull/119) (chris.hurt@workwave)
|
|
21
|
-
- ❗ Hotfix - Default image fallback path added with retries [#118](https://github.com/Lighthouse-io/common/pull/118) (chris.hurt@workwave)
|
|
22
|
-
|
|
23
|
-
#### Authors: 1
|
|
24
|
-
|
|
25
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
|
-
# 4.27.4 (Wed Mar 29 2023)
|
|
30
|
-
|
|
31
|
-
#### 🐛 Bug Fix
|
|
32
|
-
|
|
33
|
-
- 🚧 Fix - PdfGeneration: Reference field edge-case handling [#117](https://github.com/Lighthouse-io/common/pull/117) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
34
|
-
|
|
35
|
-
#### Authors: 1
|
|
36
|
-
|
|
37
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
38
|
-
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
# 4.27.1 (Fri Mar 24 2023)
|
|
42
|
-
|
|
43
|
-
#### 🐛 Bug Fix
|
|
44
|
-
|
|
45
|
-
- ❗️ Hotfix - Encode image URLs so users can put spaces in the filenames [#116](https://github.com/Lighthouse-io/common/pull/116) (andrew.finlay@teamsoftware.com [@AndrewFinlay](https://github.com/AndrewFinlay))
|
|
46
|
-
|
|
47
|
-
#### Authors: 2
|
|
48
|
-
|
|
49
|
-
- [@AndrewFinlay](https://github.com/AndrewFinlay)
|
|
50
|
-
- Andrew Finlay (andrew.finlay@teamsoftware.com)
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
# 4.27.0 (Tue Mar 21 2023)
|
|
55
|
-
|
|
56
|
-
#### 🚀 Enhancement
|
|
57
|
-
|
|
58
|
-
- summary field logic added for user field [#115](https://github.com/Lighthouse-io/common/pull/115) ([@taherashorna1](https://github.com/taherashorna1))
|
|
59
|
-
|
|
60
|
-
#### Authors: 1
|
|
61
|
-
|
|
62
|
-
- [@taherashorna1](https://github.com/taherashorna1)
|
|
63
|
-
|
|
64
|
-
---
|
|
65
|
-
|
|
66
|
-
# 4.26.0 (Wed Mar 01 2023)
|
|
67
|
-
|
|
68
|
-
#### 🚀 Enhancement
|
|
69
|
-
|
|
70
|
-
- 🌳 Feature - Show reference(users) field in templates [#114](https://github.com/Lighthouse-io/common/pull/114) ([@taherashorna1](https://github.com/taherashorna1))
|
|
71
|
-
|
|
72
|
-
#### Authors: 1
|
|
73
|
-
|
|
74
|
-
- [@taherashorna1](https://github.com/taherashorna1)
|
|
75
|
-
|
|
76
|
-
---
|
|
77
|
-
|
|
78
|
-
# 4.25.0 (Sun Feb 26 2023)
|
|
79
|
-
|
|
80
|
-
#### 🚀 Enhancement
|
|
81
|
-
|
|
82
|
-
- 🌳 Feature - Logo update on pdf [#109](https://github.com/Lighthouse-io/common/pull/109) ([@taherashorna1](https://github.com/taherashorna1))
|
|
83
|
-
|
|
84
|
-
#### Authors: 1
|
|
85
|
-
|
|
86
|
-
- [@taherashorna1](https://github.com/taherashorna1)
|
|
87
|
-
|
|
88
|
-
---
|
|
89
|
-
|
|
90
|
-
# 4.24.3 (Sun Jan 29 2023)
|
|
91
|
-
|
|
92
|
-
#### 🐛 Bug Fix
|
|
93
|
-
|
|
94
|
-
- ❗️ Hotfix - Absolute URL error fix [#113](https://github.com/Lighthouse-io/common/pull/113) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
95
|
-
|
|
96
|
-
#### Authors: 1
|
|
97
|
-
|
|
98
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
99
|
-
|
|
100
|
-
---
|
|
101
|
-
|
|
102
|
-
# 4.24.2 (Mon Jan 23 2023)
|
|
103
|
-
|
|
104
|
-
#### 🐛 Bug Fix
|
|
105
|
-
|
|
106
|
-
- Phrasing fix [#112](https://github.com/Lighthouse-io/common/pull/112) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
107
|
-
|
|
108
|
-
#### Authors: 1
|
|
109
|
-
|
|
110
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
111
|
-
|
|
112
|
-
---
|
|
113
|
-
|
|
114
|
-
# 4.23.1 (Mon Jan 23 2023)
|
|
115
|
-
|
|
116
|
-
#### 🐛 Bug Fix
|
|
117
|
-
|
|
118
|
-
- ❗ Hotfix - Restrict pdf aggregation to document limit of 100 [#111](https://github.com/Lighthouse-io/common/pull/111) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
119
|
-
|
|
120
|
-
#### Authors: 1
|
|
121
|
-
|
|
122
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
123
|
-
|
|
124
|
-
---
|
|
125
|
-
|
|
126
|
-
# 4.23.0 (Wed Jan 18 2023)
|
|
127
|
-
|
|
128
|
-
#### 🚀 Enhancement
|
|
129
|
-
|
|
130
|
-
- 🌳 Feature - PDF HTML Links [#110](https://github.com/Lighthouse-io/common/pull/110) ([@willmcclellan](https://github.com/willmcclellan))
|
|
131
|
-
|
|
132
|
-
#### Authors: 1
|
|
133
|
-
|
|
134
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
135
|
-
|
|
136
|
-
---
|
|
137
|
-
|
|
138
|
-
# 4.22.0 (Wed Jul 13 2022)
|
|
139
|
-
|
|
140
|
-
#### 🚀 Enhancement
|
|
141
|
-
|
|
142
|
-
- 🚧 Fix - Spotless | Various Email Issues [#108](https://github.com/Lighthouse-io/common/pull/108) ([@taherashorna1](https://github.com/taherashorna1))
|
|
143
|
-
|
|
144
|
-
#### Authors: 1
|
|
145
|
-
|
|
146
|
-
- [@taherashorna1](https://github.com/taherashorna1)
|
|
147
|
-
|
|
148
|
-
---
|
|
149
|
-
|
|
150
|
-
# 4.21.7 (Tue Jun 07 2022)
|
|
151
|
-
|
|
152
|
-
#### 🐛 Bug Fix
|
|
153
|
-
|
|
154
|
-
- ❗Hotfix - Audit pdf misconfiguration fix [#107](https://github.com/Lighthouse-io/common/pull/107) (churt@192-168-1-103.tpgi.com.au [@ChrisHurt](https://github.com/ChrisHurt))
|
|
155
|
-
|
|
156
|
-
#### Authors: 2
|
|
157
|
-
|
|
158
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
159
|
-
- Christopher Hurt (churt@192-168-1-103.tpgi.com.au)
|
|
160
|
-
|
|
161
|
-
---
|
|
162
|
-
|
|
163
|
-
# 4.21.6 (Tue Jun 07 2022)
|
|
164
|
-
|
|
165
|
-
#### 🐛 Bug Fix
|
|
166
|
-
|
|
167
|
-
- ❗Hotfix - Audit pdf misconfiguration fix [#106](https://github.com/Lighthouse-io/common/pull/106) (churt@192-168-1-103.tpgi.com.au [@ChrisHurt](https://github.com/ChrisHurt))
|
|
168
|
-
|
|
169
|
-
#### Authors: 3
|
|
170
|
-
|
|
171
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
172
|
-
- Christopher Hurt (churt@192-168-1-103.tpgi.com.au)
|
|
173
|
-
- Christopher Hurt (churt@Christophers-MacBook-Pro.local)
|
|
174
|
-
|
|
175
|
-
---
|
|
176
|
-
|
|
177
|
-
# 4.21.4 (Fri May 13 2022)
|
|
178
|
-
|
|
179
|
-
#### 🐛 Bug Fix
|
|
180
|
-
|
|
181
|
-
- 🌳 Feature - New Notifications service [#105](https://github.com/Lighthouse-io/common/pull/105) (churt@192-168-1-103.tpgi.com.au [@ChrisHurt](https://github.com/ChrisHurt))
|
|
182
|
-
|
|
183
|
-
#### Authors: 4
|
|
184
|
-
|
|
185
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
186
|
-
- Christopher Hurt (churt@192-168-1-103.tpgi.com.au)
|
|
187
|
-
- Christopher Hurt (churt@192-168-1-105.tpgi.com.au)
|
|
188
|
-
- Christopher Hurt (churt@192-168-1-111.tpgi.com.au)
|
|
189
|
-
|
|
190
|
-
---
|
|
191
|
-
|
|
192
|
-
# 4.21.1 (Tue Jan 18 2022)
|
|
193
|
-
|
|
194
|
-
#### 🐛 Bug Fix
|
|
195
|
-
|
|
196
|
-
- 🌳 Feature - Audit Target PDF Flag [#104](https://github.com/Lighthouse-io/common/pull/104) ([@bigescalade](https://github.com/bigescalade))
|
|
197
|
-
|
|
198
|
-
#### Authors: 1
|
|
199
|
-
|
|
200
|
-
- Rob ([@bigescalade](https://github.com/bigescalade))
|
|
201
|
-
|
|
202
|
-
---
|
|
203
|
-
|
|
204
|
-
# 4.21.0 (Fri Nov 12 2021)
|
|
205
|
-
|
|
206
|
-
#### 🚀 Enhancement
|
|
207
|
-
|
|
208
|
-
- 🌳 Feature - pdf score target [#103](https://github.com/Lighthouse-io/common/pull/103) (churt@Christophers-MacBook-Pro.local [@ChrisHurt](https://github.com/ChrisHurt))
|
|
209
|
-
|
|
210
|
-
#### Authors: 4
|
|
211
|
-
|
|
212
|
-
- Christopher Hurt (churt@Christophers-MacBook-Pro.local)
|
|
213
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
214
|
-
- Christopher Hurt (churt@192-168-1-108.tpgi.com.au)
|
|
215
|
-
- Christopher Hurt (churt@192-168-1-106.tpgi.com.au)
|
|
216
|
-
|
|
217
|
-
---
|
|
218
|
-
|
|
219
|
-
# 4.20.3 (Mon Jun 07 2021)
|
|
220
|
-
|
|
221
|
-
#### 🐛 Bug Fix
|
|
222
|
-
|
|
223
|
-
- ❗ Hotfix - Fallbacks for missing values #102 [#102](https://github.com/Lighthouse-io/common/pull/102) (mcclellan.will@gmail.com)
|
|
224
|
-
|
|
225
|
-
#### Authors: 1
|
|
226
|
-
|
|
227
|
-
- Will McClellan (mcclellan.will@gmail.com)
|
|
228
|
-
|
|
229
|
-
---
|
|
230
|
-
|
|
231
|
-
# 4.20.2 (Thu May 20 2021)
|
|
232
|
-
|
|
233
|
-
#### 🐛 Bug Fix
|
|
234
|
-
|
|
235
|
-
- ❗️ Hotfix - Occurrences not generated [#101](https://github.com/Lighthouse-io/common/pull/101) ([@jwarykowski](https://github.com/jwarykowski))
|
|
236
|
-
|
|
237
|
-
#### Authors: 1
|
|
238
|
-
|
|
239
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
240
|
-
|
|
241
|
-
---
|
|
242
|
-
|
|
243
|
-
# 4.20.1 (Wed May 19 2021)
|
|
244
|
-
|
|
245
|
-
#### 🐛 Bug Fix
|
|
246
|
-
|
|
247
|
-
- 🚧 Fix - Get location reference [#100](https://github.com/Lighthouse-io/common/pull/100) ([@DaleneyRuben](https://github.com/DaleneyRuben) [@willmcclellan](https://github.com/willmcclellan))
|
|
248
|
-
|
|
249
|
-
#### Authors: 2
|
|
250
|
-
|
|
251
|
-
- Ruben Fernando Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
252
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
253
|
-
|
|
254
|
-
---
|
|
255
|
-
|
|
256
|
-
# 4.20.0 (Thu Apr 29 2021)
|
|
257
|
-
|
|
258
|
-
#### 🚀 Enhancement
|
|
259
|
-
|
|
260
|
-
- 🌳 Feature - Area Label Preference [#99](https://github.com/Lighthouse-io/common/pull/99) ([@willmcclellan](https://github.com/willmcclellan))
|
|
261
|
-
|
|
262
|
-
#### Authors: 1
|
|
263
|
-
|
|
264
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
265
|
-
|
|
266
|
-
---
|
|
267
|
-
|
|
268
|
-
# 4.19.5 (Mon Jan 18 2021)
|
|
269
|
-
|
|
270
|
-
#### 🐛 Bug Fix
|
|
271
|
-
|
|
272
|
-
- ❗Hotfix - Filter override intervals [#97](https://github.com/Lighthouse-io/common/pull/97) ([@jwarykowski](https://github.com/jwarykowski))
|
|
273
|
-
|
|
274
|
-
#### Authors: 1
|
|
275
|
-
|
|
276
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
277
|
-
|
|
278
|
-
---
|
|
279
|
-
|
|
280
|
-
# 4.19.4 (Tue Nov 24 2020)
|
|
281
|
-
|
|
282
|
-
#### 🐛 Bug Fix
|
|
283
|
-
|
|
284
|
-
- 🚧 Fix - Weekday Occurrence Yield Order [#96](https://github.com/Lighthouse-io/common/pull/96) ([@jwarykowski](https://github.com/jwarykowski))
|
|
285
|
-
|
|
286
|
-
#### Authors: 1
|
|
287
|
-
|
|
288
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
289
|
-
|
|
290
|
-
---
|
|
291
|
-
|
|
292
|
-
# 4.19.3 (Fri Nov 06 2020)
|
|
293
|
-
|
|
294
|
-
#### 🐛 Bug Fix
|
|
295
|
-
|
|
296
|
-
- 🚧 Fix - Build error with missing module [#95](https://github.com/Lighthouse-io/common/pull/95) ([@jwarykowski](https://github.com/jwarykowski))
|
|
297
|
-
|
|
298
|
-
#### Authors: 1
|
|
299
|
-
|
|
300
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
301
|
-
|
|
302
|
-
---
|
|
303
|
-
|
|
304
|
-
# 4.19.1 (Thu Oct 15 2020)
|
|
305
|
-
|
|
306
|
-
#### 🐛 Bug Fix
|
|
307
|
-
|
|
308
|
-
- 🌳 Feature - Added day prefix to report headers [#94](https://github.com/Lighthouse-io/common/pull/94) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
309
|
-
|
|
310
|
-
#### Authors: 1
|
|
311
|
-
|
|
312
|
-
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
313
|
-
|
|
314
|
-
---
|
|
315
|
-
|
|
316
|
-
# 4.19.0 (Mon Oct 05 2020)
|
|
317
|
-
|
|
318
|
-
#### 🚀 Enhancement
|
|
319
|
-
|
|
320
|
-
- 🌳 Feature - Media component [#93](https://github.com/Lighthouse-io/common/pull/93) ([@HenryBautista](https://github.com/HenryBautista))
|
|
321
|
-
|
|
322
|
-
#### Authors: 1
|
|
323
|
-
|
|
324
|
-
- HenryBautista ([@HenryBautista](https://github.com/HenryBautista))
|
|
325
|
-
|
|
326
|
-
---
|
|
327
|
-
|
|
328
|
-
# 4.18.1 (Mon Jul 27 2020)
|
|
329
|
-
|
|
330
|
-
#### 🐛 Bug Fix
|
|
331
|
-
|
|
332
|
-
- 🌳 Feature - Add new cases for non repeating schedules [#91](https://github.com/Lighthouse-io/common/pull/91) ([@DiegoSoliz](https://github.com/DiegoSoliz))
|
|
333
|
-
|
|
334
|
-
#### Authors: 1
|
|
335
|
-
|
|
336
|
-
- [@DiegoSoliz](https://github.com/DiegoSoliz)
|
|
337
|
-
|
|
338
|
-
---
|
|
339
|
-
|
|
340
|
-
# 4.18.0 (Thu May 07 2020)
|
|
341
|
-
|
|
342
|
-
#### 🚀 Enhancement
|
|
343
|
-
|
|
344
|
-
- 🌳 Feature - Issues & Tasks Skipped Groups [#85](https://github.com/Lighthouse-io/common/pull/85) ([@DaleneyRuben](https://github.com/DaleneyRuben) [@jwarykowski](https://github.com/jwarykowski))
|
|
345
|
-
|
|
346
|
-
#### Authors: 2
|
|
347
|
-
|
|
348
|
-
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
349
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
350
|
-
|
|
351
|
-
---
|
|
352
|
-
|
|
353
|
-
# 4.17.5 (Thu May 07 2020)
|
|
354
|
-
|
|
355
|
-
#### 🐛 Bug Fix
|
|
356
|
-
|
|
357
|
-
- 🌳 Feature - PDF Skip Support [#88](https://github.com/Lighthouse-io/common/pull/88) ([@DiegoSoliz](https://github.com/DiegoSoliz))
|
|
358
|
-
|
|
359
|
-
#### Authors: 1
|
|
360
|
-
|
|
361
|
-
- [@DiegoSoliz](https://github.com/DiegoSoliz)
|
|
362
|
-
|
|
363
|
-
---
|
|
364
|
-
|
|
365
|
-
# 4.17.4 (Wed May 06 2020)
|
|
366
|
-
|
|
367
|
-
#### 🐛 Bug Fix
|
|
368
|
-
|
|
369
|
-
- ❗ Hotfix - Export base64 image validation [#90](https://github.com/Lighthouse-io/common/pull/90) ([@ArlethVargas](https://github.com/ArlethVargas) [@jwarykowski](https://github.com/jwarykowski))
|
|
370
|
-
|
|
371
|
-
#### Authors: 2
|
|
372
|
-
|
|
373
|
-
- [@ArlethVargas](https://github.com/ArlethVargas)
|
|
374
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
375
|
-
|
|
376
|
-
---
|
|
377
|
-
|
|
378
|
-
# 4.17.3 (Tue Apr 21 2020)
|
|
379
|
-
|
|
380
|
-
#### 🐛 Bug Fix
|
|
381
|
-
|
|
382
|
-
- ❗ Hotfix - Shift Duration [#87](https://github.com/Lighthouse-io/common/pull/87) ([@willmcclellan](https://github.com/willmcclellan))
|
|
383
|
-
|
|
384
|
-
#### Authors: 1
|
|
385
|
-
|
|
386
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
387
|
-
|
|
388
|
-
---
|
|
389
|
-
|
|
390
|
-
# 4.17.2 (Tue Apr 14 2020)
|
|
391
|
-
|
|
392
|
-
#### 🐛 Bug Fix
|
|
393
|
-
|
|
394
|
-
- 🌳 Feature - Issue PDF - Duration and Timeline updates [#86](https://github.com/Lighthouse-io/common/pull/86) ([@jwarykowski](https://github.com/jwarykowski))
|
|
395
|
-
|
|
396
|
-
#### Authors: 1
|
|
397
|
-
|
|
398
|
-
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
399
|
-
|
|
400
|
-
---
|
|
401
|
-
|
|
402
|
-
# 4.17.1 (Fri Apr 03 2020)
|
|
403
|
-
|
|
404
|
-
#### 🐛 Bug Fix
|
|
405
|
-
|
|
406
|
-
- 🚧 Fix - Delete dashes on pdf [#83](https://github.com/Lighthouse-io/common/pull/83) ([@lordandares](https://github.com/lordandares))
|
|
407
|
-
|
|
408
|
-
#### Authors: 1
|
|
409
|
-
|
|
410
|
-
- Andres Eduardo Rivero Salguedo ([@lordandares](https://github.com/lordandares))
|
|
411
|
-
|
|
412
|
-
---
|
|
413
|
-
|
|
414
|
-
# 4.17.0 (Thu Apr 02 2020)
|
|
415
|
-
|
|
416
|
-
#### 🚀 Enhancement
|
|
417
|
-
|
|
418
|
-
- 🌳 Feature - Add group score on audits [#74](https://github.com/Lighthouse-io/common/pull/74) ([@alemmr](https://github.com/alemmr))
|
|
419
|
-
|
|
420
|
-
#### Authors: 1
|
|
421
|
-
|
|
422
|
-
- Alejandro Marcio Monasterios Rios ([@alemmr](https://github.com/alemmr))
|
|
423
|
-
|
|
424
|
-
---
|
|
425
|
-
|
|
426
|
-
# 4.16.0 (Wed Apr 01 2020)
|
|
427
|
-
|
|
428
|
-
#### 🚀 Enhancement
|
|
429
|
-
|
|
430
|
-
- 🌳 Feature - Expose Form ID [#70](https://github.com/Lighthouse-io/common/pull/70) ([@ArlethVargas](https://github.com/ArlethVargas))
|
|
431
|
-
|
|
432
|
-
#### Authors: 1
|
|
433
|
-
|
|
434
|
-
- [@ArlethVargas](https://github.com/ArlethVargas)
|
|
435
|
-
|
|
436
|
-
---
|
|
437
|
-
|
|
438
|
-
# 4.15.14 (Tue Mar 10 2020)
|
|
439
|
-
|
|
440
|
-
#### 🐛 Bug Fix
|
|
441
|
-
|
|
442
|
-
- ❗ Hotfix - Remove storybook from dependencies [#82](https://github.com/Lighthouse-io/common/pull/82) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
443
|
-
|
|
444
|
-
#### Authors: 1
|
|
445
|
-
|
|
446
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
447
|
-
|
|
448
|
-
---
|
|
449
|
-
|
|
450
|
-
# 4.15.13 (Fri Mar 06 2020)
|
|
451
|
-
|
|
452
|
-
#### 🐛 Bug Fix
|
|
453
|
-
|
|
454
|
-
- ❗ Hotfix - Scheduling - Generating Occurrences fix [#81](https://github.com/Lighthouse-io/common/pull/81) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
455
|
-
|
|
456
|
-
#### Authors: 1
|
|
457
|
-
|
|
458
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
459
|
-
|
|
460
|
-
---
|
|
461
|
-
|
|
462
|
-
# 4.15.12 (Wed Feb 26 2020)
|
|
463
|
-
|
|
464
|
-
#### 🐛 Bug Fix
|
|
465
|
-
|
|
466
|
-
- ❗ Hotfix - Render html special chars [#76](https://github.com/Lighthouse-io/common/pull/76) (Diego@teamsoftware.com [@DiegoSoliz](https://github.com/DiegoSoliz))
|
|
467
|
-
|
|
468
|
-
#### Authors: 2
|
|
469
|
-
|
|
470
|
-
- [@DiegoSoliz](https://github.com/DiegoSoliz)
|
|
471
|
-
- Diego Soliz (Diego@teamsoftware.com)
|
|
472
|
-
|
|
473
|
-
---
|
|
474
|
-
|
|
475
|
-
# 4.15.11 (Mon Feb 24 2020)
|
|
476
|
-
|
|
477
|
-
#### 🐛 Bug Fix
|
|
478
|
-
|
|
479
|
-
- 🚧 Fix - Display images in PDFs [#78](https://github.com/Lighthouse-io/common/pull/78) ([@bigescalade](https://github.com/bigescalade))
|
|
480
|
-
|
|
481
|
-
#### Authors: 1
|
|
482
|
-
|
|
483
|
-
- Rob ([@bigescalade](https://github.com/bigescalade))
|
|
484
|
-
|
|
485
|
-
---
|
|
486
|
-
|
|
487
|
-
# 4.15.10 (Mon Feb 24 2020)
|
|
488
|
-
|
|
489
|
-
#### 🐛 Bug Fix
|
|
490
|
-
|
|
491
|
-
- ❗ Hotfix - Node Environment self check [#79](https://github.com/Lighthouse-io/common/pull/79) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
492
|
-
|
|
493
|
-
#### Authors: 1
|
|
494
|
-
|
|
495
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
496
|
-
|
|
497
|
-
---
|
|
498
|
-
|
|
499
|
-
# 4.15.9 (Wed Feb 19 2020)
|
|
500
|
-
|
|
501
|
-
#### 🐛 Bug Fix
|
|
502
|
-
|
|
503
|
-
- ❗Hotfix - Validate PNG/JPEG Base64 strings [#77](https://github.com/Lighthouse-io/common/pull/77) ([@willmcclellan](https://github.com/willmcclellan) [@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
504
|
-
|
|
505
|
-
#### Authors: 2
|
|
506
|
-
|
|
507
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
508
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
509
|
-
|
|
510
|
-
---
|
|
511
|
-
|
|
512
|
-
# 4.15.8 (Tue Feb 11 2020)
|
|
513
|
-
|
|
514
|
-
#### 🐛 Bug Fix
|
|
515
|
-
|
|
516
|
-
- ❗ Hotfix - fetchImage no-cache option [#75](https://github.com/Lighthouse-io/common/pull/75) ([@willmcclellan](https://github.com/willmcclellan))
|
|
517
|
-
|
|
518
|
-
#### Authors: 1
|
|
519
|
-
|
|
520
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
521
|
-
|
|
522
|
-
---
|
|
523
|
-
|
|
524
|
-
# 4.15.7 (Wed Feb 05 2020)
|
|
525
|
-
|
|
526
|
-
#### 🐛 Bug Fix
|
|
527
|
-
|
|
528
|
-
- 🚧 Fix - Display image according to form template settings [#72](https://github.com/Lighthouse-io/common/pull/72) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
529
|
-
|
|
530
|
-
#### Authors: 1
|
|
531
|
-
|
|
532
|
-
- [@ChrisHurt](https://github.com/ChrisHurt)
|
|
533
|
-
|
|
534
|
-
---
|
|
535
|
-
|
|
536
|
-
# 4.15.6 (Wed Jan 29 2020)
|
|
537
|
-
|
|
538
|
-
#### 🐛 Bug Fix
|
|
539
|
-
|
|
540
|
-
- ❗️Hotfix - patch fixed invalid data error for display text field [#73](https://github.com/Lighthouse-io/common/pull/73) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
541
|
-
|
|
542
|
-
#### Authors: 1
|
|
543
|
-
|
|
544
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
545
|
-
|
|
546
|
-
---
|
|
547
|
-
|
|
548
|
-
# 4.15.5 (Thu Jan 23 2020)
|
|
549
|
-
|
|
550
|
-
#### 🐛 Bug Fix
|
|
551
|
-
|
|
552
|
-
- ❗️Hotfix - fixed reverseGeocoded is undefined error [#71](https://github.com/Lighthouse-io/common/pull/71) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
553
|
-
|
|
554
|
-
#### Authors: 1
|
|
555
|
-
|
|
556
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
557
|
-
|
|
558
|
-
---
|
|
559
|
-
|
|
560
|
-
# 4.15.4 (Fri Jan 17 2020)
|
|
561
|
-
|
|
562
|
-
#### 🐛 Bug Fix
|
|
563
|
-
|
|
564
|
-
- 🚧 Fix - Added story to account for an empty Daily Shift Report [#67](https://github.com/Lighthouse-io/common/pull/67) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
565
|
-
|
|
566
|
-
#### Authors: 1
|
|
567
|
-
|
|
568
|
-
- [@ChrisHurt](https://github.com/ChrisHurt)
|
|
569
|
-
|
|
570
|
-
---
|
|
571
|
-
|
|
572
|
-
# 4.15.3 (Mon Jan 13 2020)
|
|
573
|
-
|
|
574
|
-
#### 🐛 Bug Fix
|
|
575
|
-
|
|
576
|
-
- patch fixed issue when no content length on images [#69](https://github.com/Lighthouse-io/common/pull/69) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
577
|
-
|
|
578
|
-
#### Authors: 1
|
|
579
|
-
|
|
580
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
581
|
-
|
|
582
|
-
---
|
|
583
|
-
|
|
584
|
-
# 4.15.2 (Fri Jan 10 2020)
|
|
585
|
-
|
|
586
|
-
#### 🐛 Bug Fix
|
|
587
|
-
|
|
588
|
-
- ❗️Hotfix - Service hours validation error when intersecting week [#66](https://github.com/Lighthouse-io/common/pull/66) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
589
|
-
|
|
590
|
-
#### Authors: 1
|
|
591
|
-
|
|
592
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
593
|
-
|
|
594
|
-
---
|
|
595
|
-
|
|
596
|
-
# 4.15.1 (Wed Jan 08 2020)
|
|
597
|
-
|
|
598
|
-
#### 🐛 Bug Fix
|
|
599
|
-
|
|
600
|
-
- add support for handling base64 or url signatures [#68](https://github.com/Lighthouse-io/common/pull/68) ([@willmcclellan](https://github.com/willmcclellan))
|
|
601
|
-
|
|
602
|
-
#### Authors: 1
|
|
603
|
-
|
|
604
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
605
|
-
|
|
606
|
-
---
|
|
607
|
-
|
|
608
|
-
# 4.15.0 (Tue Jan 07 2020)
|
|
609
|
-
|
|
610
|
-
#### 🚀 Enhancement
|
|
611
|
-
|
|
612
|
-
- 🌳 Feature - Signature validation changes [#62](https://github.com/Lighthouse-io/common/pull/62) ([@ArlethVargas](https://github.com/ArlethVargas))
|
|
613
|
-
|
|
614
|
-
#### Authors: 1
|
|
615
|
-
|
|
616
|
-
- [@ArlethVargas](https://github.com/ArlethVargas)
|
|
617
|
-
|
|
618
|
-
---
|
|
619
|
-
|
|
620
|
-
# 4.14.0 (Mon Jan 06 2020)
|
|
621
|
-
|
|
622
|
-
#### 🚀 Enhancement
|
|
623
|
-
|
|
624
|
-
- 🌳 Feature - Location address in reports [#63](https://github.com/Lighthouse-io/common/pull/63) ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
625
|
-
|
|
626
|
-
#### Authors: 1
|
|
627
|
-
|
|
628
|
-
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
629
|
-
|
|
630
|
-
---
|
|
631
|
-
|
|
632
|
-
# 4.13.0 (Thu Dec 12 2019)
|
|
633
|
-
|
|
634
|
-
#### 🚀 Enhancement
|
|
635
|
-
|
|
636
|
-
- 🌳 Feature - Alternative DLR Scans Over 24hrs [#64](https://github.com/Lighthouse-io/common/pull/64) (dane@teamsoftware.com [@danebert18](https://github.com/danebert18))
|
|
637
|
-
|
|
638
|
-
#### Authors: 2
|
|
639
|
-
|
|
640
|
-
- Dan Ebert ([@danebert18](https://github.com/danebert18))
|
|
641
|
-
- dane (dane@teamsoftware.com)
|
|
642
|
-
|
|
643
|
-
---
|
|
644
|
-
|
|
645
|
-
# 4.12.5 (Wed Dec 11 2019)
|
|
646
|
-
|
|
647
|
-
#### 🐛 Bug Fix
|
|
648
|
-
|
|
649
|
-
- 🚧 Fix - Date Fallback [#61](https://github.com/Lighthouse-io/common/pull/61) ([@lordandares](https://github.com/lordandares))
|
|
650
|
-
|
|
651
|
-
#### Authors: 1
|
|
652
|
-
|
|
653
|
-
- Andres Eduardo Rivero Salguedo ([@lordandares](https://github.com/lordandares))
|
|
654
|
-
|
|
655
|
-
---
|
|
656
|
-
|
|
657
|
-
# 4.12.4 (Tue Dec 10 2019)
|
|
658
|
-
|
|
659
|
-
#### 🐛 Bug Fix
|
|
660
|
-
|
|
661
|
-
- ❗ Hotfix - Iterate empty formGroups [#65](https://github.com/Lighthouse-io/common/pull/65) ([@willmcclellan](https://github.com/willmcclellan))
|
|
662
|
-
|
|
663
|
-
#### Authors: 1
|
|
664
|
-
|
|
665
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
666
|
-
|
|
667
|
-
---
|
|
668
|
-
|
|
669
|
-
# 4.12.3 (Fri Dec 06 2019)
|
|
670
|
-
|
|
671
|
-
#### 🐛 Bug Fix
|
|
672
|
-
|
|
673
|
-
- Remove scan limit from DSR [#60](https://github.com/Lighthouse-io/common/pull/60) ([@bigescalade](https://github.com/bigescalade))
|
|
674
|
-
|
|
675
|
-
#### Authors: 1
|
|
676
|
-
|
|
677
|
-
- Rob ([@bigescalade](https://github.com/bigescalade))
|
|
678
|
-
|
|
679
|
-
---
|
|
680
|
-
|
|
681
|
-
# 4.12.2 (Fri Nov 29 2019)
|
|
682
|
-
|
|
683
|
-
#### 🐛 Bug Fix
|
|
684
|
-
|
|
685
|
-
- 🚧 Fix - Unknown location in the shift report [#59](https://github.com/Lighthouse-io/common/pull/59) ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
686
|
-
|
|
687
|
-
#### Authors: 1
|
|
688
|
-
|
|
689
|
-
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
690
|
-
|
|
691
|
-
---
|
|
692
|
-
|
|
693
|
-
# 4.12.1 (Wed Nov 06 2019)
|
|
694
|
-
|
|
695
|
-
#### 🐛 Bug Fix
|
|
696
|
-
|
|
697
|
-
- 🚧 Fix - Remove webpack build [#58](https://github.com/Lighthouse-io/common/pull/58) ([@willmcclellan](https://github.com/willmcclellan) [@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
698
|
-
|
|
699
|
-
#### Authors: 2
|
|
700
|
-
|
|
701
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
702
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
703
|
-
|
|
704
|
-
---
|
|
705
|
-
|
|
706
|
-
# 4.12.0 (Mon Nov 04 2019)
|
|
707
|
-
|
|
708
|
-
#### 🚀 Enhancement
|
|
709
|
-
|
|
710
|
-
- 🌳 Feature - Daily Shift Report [#53](https://github.com/Lighthouse-io/common/pull/53) ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
711
|
-
|
|
712
|
-
#### Authors: 1
|
|
713
|
-
|
|
714
|
-
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
715
|
-
|
|
716
|
-
---
|
|
717
|
-
|
|
718
|
-
# 4.11.2 (Thu Oct 31 2019)
|
|
719
|
-
|
|
720
|
-
#### 🐛 Bug Fix
|
|
721
|
-
|
|
722
|
-
- add peerDependencies to dependencies [#56](https://github.com/Lighthouse-io/common/pull/56) ([@willmcclellan](https://github.com/willmcclellan))
|
|
723
|
-
|
|
724
|
-
#### Authors: 1
|
|
725
|
-
|
|
726
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
727
|
-
|
|
728
|
-
---
|
|
729
|
-
|
|
730
|
-
# 4.11.1 (Tue Oct 15 2019)
|
|
731
|
-
|
|
732
|
-
#### 🐛 Bug Fix
|
|
733
|
-
|
|
734
|
-
- patch added yup as an external dependancy in webpack config [#55](https://github.com/Lighthouse-io/common/pull/55) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
735
|
-
|
|
736
|
-
#### Authors: 1
|
|
737
|
-
|
|
738
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
739
|
-
|
|
740
|
-
---
|
|
741
|
-
|
|
742
|
-
# 4.11.0 (Sun Oct 13 2019)
|
|
743
|
-
|
|
744
|
-
#### 🚀 Enhancement
|
|
745
|
-
|
|
746
|
-
- 🌳 Feature - Service hours and Scheduling [#54](https://github.com/Lighthouse-io/common/pull/54) ([@willmcclellan](https://github.com/willmcclellan) [@jonathanchrisp](https://github.com/jonathanchrisp) jon@jon-macbook.local [@omarcespedes](https://github.com/omarcespedes))
|
|
747
|
-
|
|
748
|
-
#### Authors: 4
|
|
749
|
-
|
|
750
|
-
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
751
|
-
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
752
|
-
- Omar Cespedes ([@omarcespedes](https://github.com/omarcespedes))
|
|
753
|
-
- Jon Kurtzweil (jon@jon-macbook.local)
|
|
754
|
-
|
|
755
|
-
---
|
|
756
|
-
|
|
757
|
-
# 4.10.1 (Fri Sep 06 2019)
|
|
758
|
-
|
|
1
|
+
# 6.9.3 (Wed Feb 26 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- 🐛 Fix - Cross-region S3/Lambda access for image transformer cache ([@AndrewFinlay](https://github.com/AndrewFinlay))
|
|
6
|
+
- Hardcode IMAGE_CACHE_REGION to us-east-1 for Lambda and S3 clients
|
|
7
|
+
- Fixes NoSuchBucket errors when generating PDFs with images in non-us-east-1 regions
|
|
8
|
+
- Image transformer Lambda and cache bucket only exist in us-east-1
|
|
9
|
+
|
|
10
|
+
#### Authors: 1
|
|
11
|
+
|
|
12
|
+
- Andrew Finlay ([@AndrewFinlay](https://github.com/AndrewFinlay))
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# 4.27.5 (Fri May 12 2023)
|
|
17
|
+
|
|
18
|
+
#### 🐛 Bug Fix
|
|
19
|
+
|
|
20
|
+
- Unused import lint fixes [#119](https://github.com/Lighthouse-io/common/pull/119) (chris.hurt@workwave)
|
|
21
|
+
- ❗ Hotfix - Default image fallback path added with retries [#118](https://github.com/Lighthouse-io/common/pull/118) (chris.hurt@workwave)
|
|
22
|
+
|
|
23
|
+
#### Authors: 1
|
|
24
|
+
|
|
25
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# 4.27.4 (Wed Mar 29 2023)
|
|
30
|
+
|
|
31
|
+
#### 🐛 Bug Fix
|
|
32
|
+
|
|
33
|
+
- 🚧 Fix - PdfGeneration: Reference field edge-case handling [#117](https://github.com/Lighthouse-io/common/pull/117) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
34
|
+
|
|
35
|
+
#### Authors: 1
|
|
36
|
+
|
|
37
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
# 4.27.1 (Fri Mar 24 2023)
|
|
42
|
+
|
|
43
|
+
#### 🐛 Bug Fix
|
|
44
|
+
|
|
45
|
+
- ❗️ Hotfix - Encode image URLs so users can put spaces in the filenames [#116](https://github.com/Lighthouse-io/common/pull/116) (andrew.finlay@teamsoftware.com [@AndrewFinlay](https://github.com/AndrewFinlay))
|
|
46
|
+
|
|
47
|
+
#### Authors: 2
|
|
48
|
+
|
|
49
|
+
- [@AndrewFinlay](https://github.com/AndrewFinlay)
|
|
50
|
+
- Andrew Finlay (andrew.finlay@teamsoftware.com)
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
# 4.27.0 (Tue Mar 21 2023)
|
|
55
|
+
|
|
56
|
+
#### 🚀 Enhancement
|
|
57
|
+
|
|
58
|
+
- summary field logic added for user field [#115](https://github.com/Lighthouse-io/common/pull/115) ([@taherashorna1](https://github.com/taherashorna1))
|
|
59
|
+
|
|
60
|
+
#### Authors: 1
|
|
61
|
+
|
|
62
|
+
- [@taherashorna1](https://github.com/taherashorna1)
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
# 4.26.0 (Wed Mar 01 2023)
|
|
67
|
+
|
|
68
|
+
#### 🚀 Enhancement
|
|
69
|
+
|
|
70
|
+
- 🌳 Feature - Show reference(users) field in templates [#114](https://github.com/Lighthouse-io/common/pull/114) ([@taherashorna1](https://github.com/taherashorna1))
|
|
71
|
+
|
|
72
|
+
#### Authors: 1
|
|
73
|
+
|
|
74
|
+
- [@taherashorna1](https://github.com/taherashorna1)
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
# 4.25.0 (Sun Feb 26 2023)
|
|
79
|
+
|
|
80
|
+
#### 🚀 Enhancement
|
|
81
|
+
|
|
82
|
+
- 🌳 Feature - Logo update on pdf [#109](https://github.com/Lighthouse-io/common/pull/109) ([@taherashorna1](https://github.com/taherashorna1))
|
|
83
|
+
|
|
84
|
+
#### Authors: 1
|
|
85
|
+
|
|
86
|
+
- [@taherashorna1](https://github.com/taherashorna1)
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
# 4.24.3 (Sun Jan 29 2023)
|
|
91
|
+
|
|
92
|
+
#### 🐛 Bug Fix
|
|
93
|
+
|
|
94
|
+
- ❗️ Hotfix - Absolute URL error fix [#113](https://github.com/Lighthouse-io/common/pull/113) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
95
|
+
|
|
96
|
+
#### Authors: 1
|
|
97
|
+
|
|
98
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
# 4.24.2 (Mon Jan 23 2023)
|
|
103
|
+
|
|
104
|
+
#### 🐛 Bug Fix
|
|
105
|
+
|
|
106
|
+
- Phrasing fix [#112](https://github.com/Lighthouse-io/common/pull/112) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
107
|
+
|
|
108
|
+
#### Authors: 1
|
|
109
|
+
|
|
110
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
# 4.23.1 (Mon Jan 23 2023)
|
|
115
|
+
|
|
116
|
+
#### 🐛 Bug Fix
|
|
117
|
+
|
|
118
|
+
- ❗ Hotfix - Restrict pdf aggregation to document limit of 100 [#111](https://github.com/Lighthouse-io/common/pull/111) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
119
|
+
|
|
120
|
+
#### Authors: 1
|
|
121
|
+
|
|
122
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
# 4.23.0 (Wed Jan 18 2023)
|
|
127
|
+
|
|
128
|
+
#### 🚀 Enhancement
|
|
129
|
+
|
|
130
|
+
- 🌳 Feature - PDF HTML Links [#110](https://github.com/Lighthouse-io/common/pull/110) ([@willmcclellan](https://github.com/willmcclellan))
|
|
131
|
+
|
|
132
|
+
#### Authors: 1
|
|
133
|
+
|
|
134
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
# 4.22.0 (Wed Jul 13 2022)
|
|
139
|
+
|
|
140
|
+
#### 🚀 Enhancement
|
|
141
|
+
|
|
142
|
+
- 🚧 Fix - Spotless | Various Email Issues [#108](https://github.com/Lighthouse-io/common/pull/108) ([@taherashorna1](https://github.com/taherashorna1))
|
|
143
|
+
|
|
144
|
+
#### Authors: 1
|
|
145
|
+
|
|
146
|
+
- [@taherashorna1](https://github.com/taherashorna1)
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
# 4.21.7 (Tue Jun 07 2022)
|
|
151
|
+
|
|
152
|
+
#### 🐛 Bug Fix
|
|
153
|
+
|
|
154
|
+
- ❗Hotfix - Audit pdf misconfiguration fix [#107](https://github.com/Lighthouse-io/common/pull/107) (churt@192-168-1-103.tpgi.com.au [@ChrisHurt](https://github.com/ChrisHurt))
|
|
155
|
+
|
|
156
|
+
#### Authors: 2
|
|
157
|
+
|
|
158
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
159
|
+
- Christopher Hurt (churt@192-168-1-103.tpgi.com.au)
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
# 4.21.6 (Tue Jun 07 2022)
|
|
164
|
+
|
|
165
|
+
#### 🐛 Bug Fix
|
|
166
|
+
|
|
167
|
+
- ❗Hotfix - Audit pdf misconfiguration fix [#106](https://github.com/Lighthouse-io/common/pull/106) (churt@192-168-1-103.tpgi.com.au [@ChrisHurt](https://github.com/ChrisHurt))
|
|
168
|
+
|
|
169
|
+
#### Authors: 3
|
|
170
|
+
|
|
171
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
172
|
+
- Christopher Hurt (churt@192-168-1-103.tpgi.com.au)
|
|
173
|
+
- Christopher Hurt (churt@Christophers-MacBook-Pro.local)
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
# 4.21.4 (Fri May 13 2022)
|
|
178
|
+
|
|
179
|
+
#### 🐛 Bug Fix
|
|
180
|
+
|
|
181
|
+
- 🌳 Feature - New Notifications service [#105](https://github.com/Lighthouse-io/common/pull/105) (churt@192-168-1-103.tpgi.com.au [@ChrisHurt](https://github.com/ChrisHurt))
|
|
182
|
+
|
|
183
|
+
#### Authors: 4
|
|
184
|
+
|
|
185
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
186
|
+
- Christopher Hurt (churt@192-168-1-103.tpgi.com.au)
|
|
187
|
+
- Christopher Hurt (churt@192-168-1-105.tpgi.com.au)
|
|
188
|
+
- Christopher Hurt (churt@192-168-1-111.tpgi.com.au)
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
# 4.21.1 (Tue Jan 18 2022)
|
|
193
|
+
|
|
194
|
+
#### 🐛 Bug Fix
|
|
195
|
+
|
|
196
|
+
- 🌳 Feature - Audit Target PDF Flag [#104](https://github.com/Lighthouse-io/common/pull/104) ([@bigescalade](https://github.com/bigescalade))
|
|
197
|
+
|
|
198
|
+
#### Authors: 1
|
|
199
|
+
|
|
200
|
+
- Rob ([@bigescalade](https://github.com/bigescalade))
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
# 4.21.0 (Fri Nov 12 2021)
|
|
205
|
+
|
|
206
|
+
#### 🚀 Enhancement
|
|
207
|
+
|
|
208
|
+
- 🌳 Feature - pdf score target [#103](https://github.com/Lighthouse-io/common/pull/103) (churt@Christophers-MacBook-Pro.local [@ChrisHurt](https://github.com/ChrisHurt))
|
|
209
|
+
|
|
210
|
+
#### Authors: 4
|
|
211
|
+
|
|
212
|
+
- Christopher Hurt (churt@Christophers-MacBook-Pro.local)
|
|
213
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
214
|
+
- Christopher Hurt (churt@192-168-1-108.tpgi.com.au)
|
|
215
|
+
- Christopher Hurt (churt@192-168-1-106.tpgi.com.au)
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
# 4.20.3 (Mon Jun 07 2021)
|
|
220
|
+
|
|
221
|
+
#### 🐛 Bug Fix
|
|
222
|
+
|
|
223
|
+
- ❗ Hotfix - Fallbacks for missing values #102 [#102](https://github.com/Lighthouse-io/common/pull/102) (mcclellan.will@gmail.com)
|
|
224
|
+
|
|
225
|
+
#### Authors: 1
|
|
226
|
+
|
|
227
|
+
- Will McClellan (mcclellan.will@gmail.com)
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
# 4.20.2 (Thu May 20 2021)
|
|
232
|
+
|
|
233
|
+
#### 🐛 Bug Fix
|
|
234
|
+
|
|
235
|
+
- ❗️ Hotfix - Occurrences not generated [#101](https://github.com/Lighthouse-io/common/pull/101) ([@jwarykowski](https://github.com/jwarykowski))
|
|
236
|
+
|
|
237
|
+
#### Authors: 1
|
|
238
|
+
|
|
239
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
# 4.20.1 (Wed May 19 2021)
|
|
244
|
+
|
|
245
|
+
#### 🐛 Bug Fix
|
|
246
|
+
|
|
247
|
+
- 🚧 Fix - Get location reference [#100](https://github.com/Lighthouse-io/common/pull/100) ([@DaleneyRuben](https://github.com/DaleneyRuben) [@willmcclellan](https://github.com/willmcclellan))
|
|
248
|
+
|
|
249
|
+
#### Authors: 2
|
|
250
|
+
|
|
251
|
+
- Ruben Fernando Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
252
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
# 4.20.0 (Thu Apr 29 2021)
|
|
257
|
+
|
|
258
|
+
#### 🚀 Enhancement
|
|
259
|
+
|
|
260
|
+
- 🌳 Feature - Area Label Preference [#99](https://github.com/Lighthouse-io/common/pull/99) ([@willmcclellan](https://github.com/willmcclellan))
|
|
261
|
+
|
|
262
|
+
#### Authors: 1
|
|
263
|
+
|
|
264
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
# 4.19.5 (Mon Jan 18 2021)
|
|
269
|
+
|
|
270
|
+
#### 🐛 Bug Fix
|
|
271
|
+
|
|
272
|
+
- ❗Hotfix - Filter override intervals [#97](https://github.com/Lighthouse-io/common/pull/97) ([@jwarykowski](https://github.com/jwarykowski))
|
|
273
|
+
|
|
274
|
+
#### Authors: 1
|
|
275
|
+
|
|
276
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
# 4.19.4 (Tue Nov 24 2020)
|
|
281
|
+
|
|
282
|
+
#### 🐛 Bug Fix
|
|
283
|
+
|
|
284
|
+
- 🚧 Fix - Weekday Occurrence Yield Order [#96](https://github.com/Lighthouse-io/common/pull/96) ([@jwarykowski](https://github.com/jwarykowski))
|
|
285
|
+
|
|
286
|
+
#### Authors: 1
|
|
287
|
+
|
|
288
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
# 4.19.3 (Fri Nov 06 2020)
|
|
293
|
+
|
|
294
|
+
#### 🐛 Bug Fix
|
|
295
|
+
|
|
296
|
+
- 🚧 Fix - Build error with missing module [#95](https://github.com/Lighthouse-io/common/pull/95) ([@jwarykowski](https://github.com/jwarykowski))
|
|
297
|
+
|
|
298
|
+
#### Authors: 1
|
|
299
|
+
|
|
300
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
301
|
+
|
|
302
|
+
---
|
|
303
|
+
|
|
304
|
+
# 4.19.1 (Thu Oct 15 2020)
|
|
305
|
+
|
|
306
|
+
#### 🐛 Bug Fix
|
|
307
|
+
|
|
308
|
+
- 🌳 Feature - Added day prefix to report headers [#94](https://github.com/Lighthouse-io/common/pull/94) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
309
|
+
|
|
310
|
+
#### Authors: 1
|
|
311
|
+
|
|
312
|
+
- Chris Hurt ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
# 4.19.0 (Mon Oct 05 2020)
|
|
317
|
+
|
|
318
|
+
#### 🚀 Enhancement
|
|
319
|
+
|
|
320
|
+
- 🌳 Feature - Media component [#93](https://github.com/Lighthouse-io/common/pull/93) ([@HenryBautista](https://github.com/HenryBautista))
|
|
321
|
+
|
|
322
|
+
#### Authors: 1
|
|
323
|
+
|
|
324
|
+
- HenryBautista ([@HenryBautista](https://github.com/HenryBautista))
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
|
|
328
|
+
# 4.18.1 (Mon Jul 27 2020)
|
|
329
|
+
|
|
330
|
+
#### 🐛 Bug Fix
|
|
331
|
+
|
|
332
|
+
- 🌳 Feature - Add new cases for non repeating schedules [#91](https://github.com/Lighthouse-io/common/pull/91) ([@DiegoSoliz](https://github.com/DiegoSoliz))
|
|
333
|
+
|
|
334
|
+
#### Authors: 1
|
|
335
|
+
|
|
336
|
+
- [@DiegoSoliz](https://github.com/DiegoSoliz)
|
|
337
|
+
|
|
338
|
+
---
|
|
339
|
+
|
|
340
|
+
# 4.18.0 (Thu May 07 2020)
|
|
341
|
+
|
|
342
|
+
#### 🚀 Enhancement
|
|
343
|
+
|
|
344
|
+
- 🌳 Feature - Issues & Tasks Skipped Groups [#85](https://github.com/Lighthouse-io/common/pull/85) ([@DaleneyRuben](https://github.com/DaleneyRuben) [@jwarykowski](https://github.com/jwarykowski))
|
|
345
|
+
|
|
346
|
+
#### Authors: 2
|
|
347
|
+
|
|
348
|
+
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
349
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
353
|
+
# 4.17.5 (Thu May 07 2020)
|
|
354
|
+
|
|
355
|
+
#### 🐛 Bug Fix
|
|
356
|
+
|
|
357
|
+
- 🌳 Feature - PDF Skip Support [#88](https://github.com/Lighthouse-io/common/pull/88) ([@DiegoSoliz](https://github.com/DiegoSoliz))
|
|
358
|
+
|
|
359
|
+
#### Authors: 1
|
|
360
|
+
|
|
361
|
+
- [@DiegoSoliz](https://github.com/DiegoSoliz)
|
|
362
|
+
|
|
363
|
+
---
|
|
364
|
+
|
|
365
|
+
# 4.17.4 (Wed May 06 2020)
|
|
366
|
+
|
|
367
|
+
#### 🐛 Bug Fix
|
|
368
|
+
|
|
369
|
+
- ❗ Hotfix - Export base64 image validation [#90](https://github.com/Lighthouse-io/common/pull/90) ([@ArlethVargas](https://github.com/ArlethVargas) [@jwarykowski](https://github.com/jwarykowski))
|
|
370
|
+
|
|
371
|
+
#### Authors: 2
|
|
372
|
+
|
|
373
|
+
- [@ArlethVargas](https://github.com/ArlethVargas)
|
|
374
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
375
|
+
|
|
376
|
+
---
|
|
377
|
+
|
|
378
|
+
# 4.17.3 (Tue Apr 21 2020)
|
|
379
|
+
|
|
380
|
+
#### 🐛 Bug Fix
|
|
381
|
+
|
|
382
|
+
- ❗ Hotfix - Shift Duration [#87](https://github.com/Lighthouse-io/common/pull/87) ([@willmcclellan](https://github.com/willmcclellan))
|
|
383
|
+
|
|
384
|
+
#### Authors: 1
|
|
385
|
+
|
|
386
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
387
|
+
|
|
388
|
+
---
|
|
389
|
+
|
|
390
|
+
# 4.17.2 (Tue Apr 14 2020)
|
|
391
|
+
|
|
392
|
+
#### 🐛 Bug Fix
|
|
393
|
+
|
|
394
|
+
- 🌳 Feature - Issue PDF - Duration and Timeline updates [#86](https://github.com/Lighthouse-io/common/pull/86) ([@jwarykowski](https://github.com/jwarykowski))
|
|
395
|
+
|
|
396
|
+
#### Authors: 1
|
|
397
|
+
|
|
398
|
+
- Jonathan Warykowski ([@jwarykowski](https://github.com/jwarykowski))
|
|
399
|
+
|
|
400
|
+
---
|
|
401
|
+
|
|
402
|
+
# 4.17.1 (Fri Apr 03 2020)
|
|
403
|
+
|
|
404
|
+
#### 🐛 Bug Fix
|
|
405
|
+
|
|
406
|
+
- 🚧 Fix - Delete dashes on pdf [#83](https://github.com/Lighthouse-io/common/pull/83) ([@lordandares](https://github.com/lordandares))
|
|
407
|
+
|
|
408
|
+
#### Authors: 1
|
|
409
|
+
|
|
410
|
+
- Andres Eduardo Rivero Salguedo ([@lordandares](https://github.com/lordandares))
|
|
411
|
+
|
|
412
|
+
---
|
|
413
|
+
|
|
414
|
+
# 4.17.0 (Thu Apr 02 2020)
|
|
415
|
+
|
|
416
|
+
#### 🚀 Enhancement
|
|
417
|
+
|
|
418
|
+
- 🌳 Feature - Add group score on audits [#74](https://github.com/Lighthouse-io/common/pull/74) ([@alemmr](https://github.com/alemmr))
|
|
419
|
+
|
|
420
|
+
#### Authors: 1
|
|
421
|
+
|
|
422
|
+
- Alejandro Marcio Monasterios Rios ([@alemmr](https://github.com/alemmr))
|
|
423
|
+
|
|
424
|
+
---
|
|
425
|
+
|
|
426
|
+
# 4.16.0 (Wed Apr 01 2020)
|
|
427
|
+
|
|
428
|
+
#### 🚀 Enhancement
|
|
429
|
+
|
|
430
|
+
- 🌳 Feature - Expose Form ID [#70](https://github.com/Lighthouse-io/common/pull/70) ([@ArlethVargas](https://github.com/ArlethVargas))
|
|
431
|
+
|
|
432
|
+
#### Authors: 1
|
|
433
|
+
|
|
434
|
+
- [@ArlethVargas](https://github.com/ArlethVargas)
|
|
435
|
+
|
|
436
|
+
---
|
|
437
|
+
|
|
438
|
+
# 4.15.14 (Tue Mar 10 2020)
|
|
439
|
+
|
|
440
|
+
#### 🐛 Bug Fix
|
|
441
|
+
|
|
442
|
+
- ❗ Hotfix - Remove storybook from dependencies [#82](https://github.com/Lighthouse-io/common/pull/82) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
443
|
+
|
|
444
|
+
#### Authors: 1
|
|
445
|
+
|
|
446
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
447
|
+
|
|
448
|
+
---
|
|
449
|
+
|
|
450
|
+
# 4.15.13 (Fri Mar 06 2020)
|
|
451
|
+
|
|
452
|
+
#### 🐛 Bug Fix
|
|
453
|
+
|
|
454
|
+
- ❗ Hotfix - Scheduling - Generating Occurrences fix [#81](https://github.com/Lighthouse-io/common/pull/81) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
455
|
+
|
|
456
|
+
#### Authors: 1
|
|
457
|
+
|
|
458
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
459
|
+
|
|
460
|
+
---
|
|
461
|
+
|
|
462
|
+
# 4.15.12 (Wed Feb 26 2020)
|
|
463
|
+
|
|
464
|
+
#### 🐛 Bug Fix
|
|
465
|
+
|
|
466
|
+
- ❗ Hotfix - Render html special chars [#76](https://github.com/Lighthouse-io/common/pull/76) (Diego@teamsoftware.com [@DiegoSoliz](https://github.com/DiegoSoliz))
|
|
467
|
+
|
|
468
|
+
#### Authors: 2
|
|
469
|
+
|
|
470
|
+
- [@DiegoSoliz](https://github.com/DiegoSoliz)
|
|
471
|
+
- Diego Soliz (Diego@teamsoftware.com)
|
|
472
|
+
|
|
473
|
+
---
|
|
474
|
+
|
|
475
|
+
# 4.15.11 (Mon Feb 24 2020)
|
|
476
|
+
|
|
477
|
+
#### 🐛 Bug Fix
|
|
478
|
+
|
|
479
|
+
- 🚧 Fix - Display images in PDFs [#78](https://github.com/Lighthouse-io/common/pull/78) ([@bigescalade](https://github.com/bigescalade))
|
|
480
|
+
|
|
481
|
+
#### Authors: 1
|
|
482
|
+
|
|
483
|
+
- Rob ([@bigescalade](https://github.com/bigescalade))
|
|
484
|
+
|
|
485
|
+
---
|
|
486
|
+
|
|
487
|
+
# 4.15.10 (Mon Feb 24 2020)
|
|
488
|
+
|
|
489
|
+
#### 🐛 Bug Fix
|
|
490
|
+
|
|
491
|
+
- ❗ Hotfix - Node Environment self check [#79](https://github.com/Lighthouse-io/common/pull/79) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
492
|
+
|
|
493
|
+
#### Authors: 1
|
|
494
|
+
|
|
495
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
496
|
+
|
|
497
|
+
---
|
|
498
|
+
|
|
499
|
+
# 4.15.9 (Wed Feb 19 2020)
|
|
500
|
+
|
|
501
|
+
#### 🐛 Bug Fix
|
|
502
|
+
|
|
503
|
+
- ❗Hotfix - Validate PNG/JPEG Base64 strings [#77](https://github.com/Lighthouse-io/common/pull/77) ([@willmcclellan](https://github.com/willmcclellan) [@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
504
|
+
|
|
505
|
+
#### Authors: 2
|
|
506
|
+
|
|
507
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
508
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
509
|
+
|
|
510
|
+
---
|
|
511
|
+
|
|
512
|
+
# 4.15.8 (Tue Feb 11 2020)
|
|
513
|
+
|
|
514
|
+
#### 🐛 Bug Fix
|
|
515
|
+
|
|
516
|
+
- ❗ Hotfix - fetchImage no-cache option [#75](https://github.com/Lighthouse-io/common/pull/75) ([@willmcclellan](https://github.com/willmcclellan))
|
|
517
|
+
|
|
518
|
+
#### Authors: 1
|
|
519
|
+
|
|
520
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
521
|
+
|
|
522
|
+
---
|
|
523
|
+
|
|
524
|
+
# 4.15.7 (Wed Feb 05 2020)
|
|
525
|
+
|
|
526
|
+
#### 🐛 Bug Fix
|
|
527
|
+
|
|
528
|
+
- 🚧 Fix - Display image according to form template settings [#72](https://github.com/Lighthouse-io/common/pull/72) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
529
|
+
|
|
530
|
+
#### Authors: 1
|
|
531
|
+
|
|
532
|
+
- [@ChrisHurt](https://github.com/ChrisHurt)
|
|
533
|
+
|
|
534
|
+
---
|
|
535
|
+
|
|
536
|
+
# 4.15.6 (Wed Jan 29 2020)
|
|
537
|
+
|
|
538
|
+
#### 🐛 Bug Fix
|
|
539
|
+
|
|
540
|
+
- ❗️Hotfix - patch fixed invalid data error for display text field [#73](https://github.com/Lighthouse-io/common/pull/73) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
541
|
+
|
|
542
|
+
#### Authors: 1
|
|
543
|
+
|
|
544
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
545
|
+
|
|
546
|
+
---
|
|
547
|
+
|
|
548
|
+
# 4.15.5 (Thu Jan 23 2020)
|
|
549
|
+
|
|
550
|
+
#### 🐛 Bug Fix
|
|
551
|
+
|
|
552
|
+
- ❗️Hotfix - fixed reverseGeocoded is undefined error [#71](https://github.com/Lighthouse-io/common/pull/71) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
553
|
+
|
|
554
|
+
#### Authors: 1
|
|
555
|
+
|
|
556
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
557
|
+
|
|
558
|
+
---
|
|
559
|
+
|
|
560
|
+
# 4.15.4 (Fri Jan 17 2020)
|
|
561
|
+
|
|
562
|
+
#### 🐛 Bug Fix
|
|
563
|
+
|
|
564
|
+
- 🚧 Fix - Added story to account for an empty Daily Shift Report [#67](https://github.com/Lighthouse-io/common/pull/67) ([@ChrisHurt](https://github.com/ChrisHurt))
|
|
565
|
+
|
|
566
|
+
#### Authors: 1
|
|
567
|
+
|
|
568
|
+
- [@ChrisHurt](https://github.com/ChrisHurt)
|
|
569
|
+
|
|
570
|
+
---
|
|
571
|
+
|
|
572
|
+
# 4.15.3 (Mon Jan 13 2020)
|
|
573
|
+
|
|
574
|
+
#### 🐛 Bug Fix
|
|
575
|
+
|
|
576
|
+
- patch fixed issue when no content length on images [#69](https://github.com/Lighthouse-io/common/pull/69) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
577
|
+
|
|
578
|
+
#### Authors: 1
|
|
579
|
+
|
|
580
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
581
|
+
|
|
582
|
+
---
|
|
583
|
+
|
|
584
|
+
# 4.15.2 (Fri Jan 10 2020)
|
|
585
|
+
|
|
586
|
+
#### 🐛 Bug Fix
|
|
587
|
+
|
|
588
|
+
- ❗️Hotfix - Service hours validation error when intersecting week [#66](https://github.com/Lighthouse-io/common/pull/66) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
589
|
+
|
|
590
|
+
#### Authors: 1
|
|
591
|
+
|
|
592
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
593
|
+
|
|
594
|
+
---
|
|
595
|
+
|
|
596
|
+
# 4.15.1 (Wed Jan 08 2020)
|
|
597
|
+
|
|
598
|
+
#### 🐛 Bug Fix
|
|
599
|
+
|
|
600
|
+
- add support for handling base64 or url signatures [#68](https://github.com/Lighthouse-io/common/pull/68) ([@willmcclellan](https://github.com/willmcclellan))
|
|
601
|
+
|
|
602
|
+
#### Authors: 1
|
|
603
|
+
|
|
604
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
605
|
+
|
|
606
|
+
---
|
|
607
|
+
|
|
608
|
+
# 4.15.0 (Tue Jan 07 2020)
|
|
609
|
+
|
|
610
|
+
#### 🚀 Enhancement
|
|
611
|
+
|
|
612
|
+
- 🌳 Feature - Signature validation changes [#62](https://github.com/Lighthouse-io/common/pull/62) ([@ArlethVargas](https://github.com/ArlethVargas))
|
|
613
|
+
|
|
614
|
+
#### Authors: 1
|
|
615
|
+
|
|
616
|
+
- [@ArlethVargas](https://github.com/ArlethVargas)
|
|
617
|
+
|
|
618
|
+
---
|
|
619
|
+
|
|
620
|
+
# 4.14.0 (Mon Jan 06 2020)
|
|
621
|
+
|
|
622
|
+
#### 🚀 Enhancement
|
|
623
|
+
|
|
624
|
+
- 🌳 Feature - Location address in reports [#63](https://github.com/Lighthouse-io/common/pull/63) ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
625
|
+
|
|
626
|
+
#### Authors: 1
|
|
627
|
+
|
|
628
|
+
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
629
|
+
|
|
630
|
+
---
|
|
631
|
+
|
|
632
|
+
# 4.13.0 (Thu Dec 12 2019)
|
|
633
|
+
|
|
634
|
+
#### 🚀 Enhancement
|
|
635
|
+
|
|
636
|
+
- 🌳 Feature - Alternative DLR Scans Over 24hrs [#64](https://github.com/Lighthouse-io/common/pull/64) (dane@teamsoftware.com [@danebert18](https://github.com/danebert18))
|
|
637
|
+
|
|
638
|
+
#### Authors: 2
|
|
639
|
+
|
|
640
|
+
- Dan Ebert ([@danebert18](https://github.com/danebert18))
|
|
641
|
+
- dane (dane@teamsoftware.com)
|
|
642
|
+
|
|
643
|
+
---
|
|
644
|
+
|
|
645
|
+
# 4.12.5 (Wed Dec 11 2019)
|
|
646
|
+
|
|
647
|
+
#### 🐛 Bug Fix
|
|
648
|
+
|
|
649
|
+
- 🚧 Fix - Date Fallback [#61](https://github.com/Lighthouse-io/common/pull/61) ([@lordandares](https://github.com/lordandares))
|
|
650
|
+
|
|
651
|
+
#### Authors: 1
|
|
652
|
+
|
|
653
|
+
- Andres Eduardo Rivero Salguedo ([@lordandares](https://github.com/lordandares))
|
|
654
|
+
|
|
655
|
+
---
|
|
656
|
+
|
|
657
|
+
# 4.12.4 (Tue Dec 10 2019)
|
|
658
|
+
|
|
659
|
+
#### 🐛 Bug Fix
|
|
660
|
+
|
|
661
|
+
- ❗ Hotfix - Iterate empty formGroups [#65](https://github.com/Lighthouse-io/common/pull/65) ([@willmcclellan](https://github.com/willmcclellan))
|
|
662
|
+
|
|
663
|
+
#### Authors: 1
|
|
664
|
+
|
|
665
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
666
|
+
|
|
667
|
+
---
|
|
668
|
+
|
|
669
|
+
# 4.12.3 (Fri Dec 06 2019)
|
|
670
|
+
|
|
671
|
+
#### 🐛 Bug Fix
|
|
672
|
+
|
|
673
|
+
- Remove scan limit from DSR [#60](https://github.com/Lighthouse-io/common/pull/60) ([@bigescalade](https://github.com/bigescalade))
|
|
674
|
+
|
|
675
|
+
#### Authors: 1
|
|
676
|
+
|
|
677
|
+
- Rob ([@bigescalade](https://github.com/bigescalade))
|
|
678
|
+
|
|
679
|
+
---
|
|
680
|
+
|
|
681
|
+
# 4.12.2 (Fri Nov 29 2019)
|
|
682
|
+
|
|
683
|
+
#### 🐛 Bug Fix
|
|
684
|
+
|
|
685
|
+
- 🚧 Fix - Unknown location in the shift report [#59](https://github.com/Lighthouse-io/common/pull/59) ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
686
|
+
|
|
687
|
+
#### Authors: 1
|
|
688
|
+
|
|
689
|
+
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
690
|
+
|
|
691
|
+
---
|
|
692
|
+
|
|
693
|
+
# 4.12.1 (Wed Nov 06 2019)
|
|
694
|
+
|
|
695
|
+
#### 🐛 Bug Fix
|
|
696
|
+
|
|
697
|
+
- 🚧 Fix - Remove webpack build [#58](https://github.com/Lighthouse-io/common/pull/58) ([@willmcclellan](https://github.com/willmcclellan) [@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
698
|
+
|
|
699
|
+
#### Authors: 2
|
|
700
|
+
|
|
701
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
702
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
703
|
+
|
|
704
|
+
---
|
|
705
|
+
|
|
706
|
+
# 4.12.0 (Mon Nov 04 2019)
|
|
707
|
+
|
|
708
|
+
#### 🚀 Enhancement
|
|
709
|
+
|
|
710
|
+
- 🌳 Feature - Daily Shift Report [#53](https://github.com/Lighthouse-io/common/pull/53) ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
711
|
+
|
|
712
|
+
#### Authors: 1
|
|
713
|
+
|
|
714
|
+
- Ruben Daleney ([@DaleneyRuben](https://github.com/DaleneyRuben))
|
|
715
|
+
|
|
716
|
+
---
|
|
717
|
+
|
|
718
|
+
# 4.11.2 (Thu Oct 31 2019)
|
|
719
|
+
|
|
720
|
+
#### 🐛 Bug Fix
|
|
721
|
+
|
|
722
|
+
- add peerDependencies to dependencies [#56](https://github.com/Lighthouse-io/common/pull/56) ([@willmcclellan](https://github.com/willmcclellan))
|
|
723
|
+
|
|
724
|
+
#### Authors: 1
|
|
725
|
+
|
|
726
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
727
|
+
|
|
728
|
+
---
|
|
729
|
+
|
|
730
|
+
# 4.11.1 (Tue Oct 15 2019)
|
|
731
|
+
|
|
732
|
+
#### 🐛 Bug Fix
|
|
733
|
+
|
|
734
|
+
- patch added yup as an external dependancy in webpack config [#55](https://github.com/Lighthouse-io/common/pull/55) ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
735
|
+
|
|
736
|
+
#### Authors: 1
|
|
737
|
+
|
|
738
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
739
|
+
|
|
740
|
+
---
|
|
741
|
+
|
|
742
|
+
# 4.11.0 (Sun Oct 13 2019)
|
|
743
|
+
|
|
744
|
+
#### 🚀 Enhancement
|
|
745
|
+
|
|
746
|
+
- 🌳 Feature - Service hours and Scheduling [#54](https://github.com/Lighthouse-io/common/pull/54) ([@willmcclellan](https://github.com/willmcclellan) [@jonathanchrisp](https://github.com/jonathanchrisp) jon@jon-macbook.local [@omarcespedes](https://github.com/omarcespedes))
|
|
747
|
+
|
|
748
|
+
#### Authors: 4
|
|
749
|
+
|
|
750
|
+
- Jonathan Chrisp ([@jonathanchrisp](https://github.com/jonathanchrisp))
|
|
751
|
+
- Will McClellan ([@willmcclellan](https://github.com/willmcclellan))
|
|
752
|
+
- Omar Cespedes ([@omarcespedes](https://github.com/omarcespedes))
|
|
753
|
+
- Jon Kurtzweil (jon@jon-macbook.local)
|
|
754
|
+
|
|
755
|
+
---
|
|
756
|
+
|
|
757
|
+
# 4.10.1 (Fri Sep 06 2019)
|
|
758
|
+
|