meteocat 4.0.0 → 4.0.2

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.
Files changed (49) hide show
  1. package/.github/ISSUE_TEMPLATE/bug_report.md +45 -45
  2. package/.github/ISSUE_TEMPLATE/config.yml +8 -8
  3. package/.github/ISSUE_TEMPLATE/improvement.md +39 -39
  4. package/.github/ISSUE_TEMPLATE/new_function.md +41 -41
  5. package/.github/labels.yml +63 -63
  6. package/.github/workflows/autocloser.yaml +27 -27
  7. package/.github/workflows/close-on-label.yml +48 -48
  8. package/.github/workflows/force-sync-labels.yml +18 -18
  9. package/.github/workflows/hassfest.yaml +13 -13
  10. package/.github/workflows/publish-zip.yml +67 -67
  11. package/.github/workflows/release.yml +41 -41
  12. package/.github/workflows/stale.yml +63 -63
  13. package/.github/workflows/sync-gitlab.yml +107 -107
  14. package/.github/workflows/sync-labels.yml +21 -21
  15. package/.github/workflows/validate.yaml +16 -16
  16. package/.pre-commit-config.yaml +37 -37
  17. package/.releaserc +37 -37
  18. package/AUTHORS.md +13 -13
  19. package/CHANGELOG.md +971 -954
  20. package/README.md +207 -207
  21. package/conftest.py +11 -11
  22. package/custom_components/meteocat/__init__.py +298 -298
  23. package/custom_components/meteocat/condition.py +63 -63
  24. package/custom_components/meteocat/config_flow.py +613 -613
  25. package/custom_components/meteocat/const.py +132 -132
  26. package/custom_components/meteocat/coordinator.py +248 -68
  27. package/custom_components/meteocat/helpers.py +58 -58
  28. package/custom_components/meteocat/manifest.json +25 -25
  29. package/custom_components/meteocat/options_flow.py +287 -287
  30. package/custom_components/meteocat/sensor.py +4 -2
  31. package/custom_components/meteocat/strings.json +1060 -1058
  32. package/custom_components/meteocat/translations/ca.json +1060 -1058
  33. package/custom_components/meteocat/translations/en.json +1060 -1058
  34. package/custom_components/meteocat/translations/es.json +1060 -1058
  35. package/custom_components/meteocat/version.py +1 -1
  36. package/custom_components/meteocat/weather.py +218 -218
  37. package/filetree.py +48 -48
  38. package/filetree.txt +80 -79
  39. package/hacs.json +8 -8
  40. package/info.md +11 -11
  41. package/package.json +22 -22
  42. package/poetry.lock +3222 -3222
  43. package/pyproject.toml +68 -68
  44. package/requirements.test.txt +3 -3
  45. package/setup.cfg +64 -64
  46. package/setup.py +10 -10
  47. package/tests/bandit.yaml +17 -17
  48. package/tests/conftest.py +19 -19
  49. package/tests/test_init.py +9 -9
package/CHANGELOG.md CHANGED
@@ -1,954 +1,971 @@
1
- # [4.0.0](https://github.com/figorr/meteocat/compare/v3.2.0...v4.0.0) (2025-11-07)
2
-
3
-
4
- ## 🚀 Release Meteocat integration v4.0.0 — major improvements and new solar/lunar system
5
- My own custom Python package `Solarmoonpy` is introduced in this major release.
6
- `Solarmoonpy` added support for new native sun and moon sensors in the Meteocat integration.
7
-
8
- ### ✨ Highlights:
9
- - Introduced new Python package `Solarmoonpy` to handle all solar and lunar data and event calculations.
10
- → Replaces the `astral` dependency completely.
11
- - Added new solar and lunar sensors to provide richer astronomical data with many extra attributes.
12
- - Added configuration option to manually adjust default coordinates and elevation.
13
- → This allows users to fine-tune their position for more accurate solar and lunar event calculations instead of using the default station coordinates and elevation.
14
-
15
- ### 🛠 Changes:
16
- - Major refactor and optimization of coordinator logic for better performance and stability.
17
- - The default validation hour for forecasts is set to 6.
18
-
19
- ### ⚠️ Note:
20
- - The new v4.0.0 is required for using Meteocat Card v3.0.0 and later.
21
- - Upgrade is recommended if you plan to use the updated card.
22
-
23
- # [3.2.0](https://github.com/figorr/meteocat/compare/v3.1.0...v3.2.0) (2025-11-07)
24
-
25
-
26
- ### Bug Fixes
27
-
28
- * add validation date for moon coordinator ([8644f56](https://github.com/figorr/meteocat/commit/8644f56d8f8b6b607ba8809499afbfb81eb70b28))
29
- * adjust moon update interval ([ea51d90](https://github.com/figorr/meteocat/commit/ea51d905a232ab947607333ea4abaf449cd2e786))
30
- * fix friendly time translation ([9081a34](https://github.com/figorr/meteocat/commit/9081a343fd1562cb001f8a4b69948be3e26cbe00))
31
- * fix reset data moon file coordinator ([f3cf22f](https://github.com/figorr/meteocat/commit/f3cf22f1fb1d1a19d6ee9fefd2be304850be1180))
32
- * more accurate moon calculation ([dcee6e0](https://github.com/figorr/meteocat/commit/dcee6e0040d1cf77860fc7cbd06a5518145d3a72))
33
-
34
-
35
- ### Features
36
-
37
- * add new moon day data ([77edf68](https://github.com/figorr/meteocat/commit/77edf681af037f00748b2b3cf2d281655d225718))
38
- * add new moon day data ([d2be96e](https://github.com/figorr/meteocat/commit/d2be96ec7f4f9d48c1f018ba2c642f29558d05fe))
39
- * add translations for lunation attribute ([10e3409](https://github.com/figorr/meteocat/commit/10e3409f82fa6530f0edf81c5e8406d019aeeaf1))
40
- * bump solarmoonpy to v1.0.0 ([65c2a04](https://github.com/figorr/meteocat/commit/65c2a0495250bac284c060b575256f95f4fb0be0))
41
- * bump solarmoonpy to v1.0.1 ([aa86747](https://github.com/figorr/meteocat/commit/aa86747ed41d69a80ac009b75b596746762548fe))
42
- * bump solarmoonpy to v1.0.3 ([246bd83](https://github.com/figorr/meteocat/commit/246bd835589978940efc11722b79e420f838ecab))
43
- * include latitude, longitude and altitude as new required variables ([5ef864c](https://github.com/figorr/meteocat/commit/5ef864ca38fa17ed05b36a19a96b8c7182f66be7))
44
- * new latitude, longitude and altitude update options setup ([1aeb968](https://github.com/figorr/meteocat/commit/1aeb9682c8e65b3cb0b29a7b7467edcc455304c9))
45
- * new lunation attribute for moon and moon phase name code ([60c7129](https://github.com/figorr/meteocat/commit/60c7129757916908baf26439819458ea3a173ad4))
46
- * new lunation attribute for moon sensor ([9bb32ff](https://github.com/figorr/meteocat/commit/9bb32ff03bd7eba291a1ee1aa578e2838dcf9bd5))
47
- * new lunation data and moon phase name rework ([0616401](https://github.com/figorr/meteocat/commit/0616401243334c21736d0877e5e50e435279e002))
48
- * new moon day attribute ([86ec6e3](https://github.com/figorr/meteocat/commit/86ec6e311fc098174027f17d3502e8be740d7e86))
49
- * new moon sensors ([7c7c1d3](https://github.com/figorr/meteocat/commit/7c7c1d38393a40fd2e69eeba2c24bb185ae349ef))
50
- * new solarmoonpy requirement for sun and moon events calculation ([1d25a62](https://github.com/figorr/meteocat/commit/1d25a6252cf568e1242f654c389aeada2b5d73f6))
51
- * new sun and moon coordinators ([af2290e](https://github.com/figorr/meteocat/commit/af2290e7384a9ad5416afdf4d6767ad69099813c))
52
- * new sun and moon files ([b489d7a](https://github.com/figorr/meteocat/commit/b489d7a9abc5af747fc50a2e0d7b0d661408b824))
53
- * new sun and moon sensors ([91265f3](https://github.com/figorr/meteocat/commit/91265f3c6cbd512b3706c29d466f9bb01df6d45e))
54
- * translation for new moon day attribute ([162859e](https://github.com/figorr/meteocat/commit/162859e2822374b81835cb1af07325dceaf5a55e))
55
- * translations for the new moon and sun sensors ([91a33b6](https://github.com/figorr/meteocat/commit/91a33b6b52e34ed69eed4eb5fbfaf9dffd20df57))
56
-
57
- # [3.1.0](https://github.com/figorr/meteocat/compare/v3.0.0...v3.1.0) (2025-09-27)
58
-
59
-
60
- ### Bug Fixes
61
-
62
- * fix unknown threshold translation ([6fa7964](https://github.com/figorr/meteocat/commit/6fa79644e3ebbdf9a44826f6071af6009cd2d02d))
63
- * include Meteocat Card ([513d9ed](https://github.com/figorr/meteocat/commit/513d9ed50fcd9127ac64f0388ed1017db938f378))
64
-
65
-
66
- ### Features
67
-
68
- * Add native sunrise and sunset sensors to Meteocat integration ([7bb70c6](https://github.com/figorr/meteocat/commit/7bb70c681c90773275e496f938f455c3688fb4c0))
69
-
70
- ## [3.0.0](https://github.com/figorr/meteocat/compare/v2.3.0...v3.0.0) (2025-09-14)
71
-
72
-
73
- ### ⚠️ BREAKING CHANGES
74
-
75
- * Version **3.0.0 and later** introduces a **breaking change** in how entities are identified.
76
-
77
- ## ⚠️ What this affects
78
- - This affects any update **from a version prior to 3.0.0** to **any version 3.x or later**.
79
- - Entities now use **`town_id`** instead of `region_id` in their `unique_id`.
80
- - This change allows multiple integration entries that share the same `region_id` but different towns.
81
-
82
- ### ✅ Recommended upgrade procedure
83
- To avoid issues with duplicated or unavailable entities:
84
-
85
- 1. **Uninstall** the existing integration (v2.x).
86
- 2. **Restart** Home Assistant.
87
- 3. **Install v3.0.0 or later** and configure the integration again.
88
-
89
- ### 🚨 If you update directly
90
- If you update without uninstalling first:
91
-
92
- - Old entities will remain as **Unavailable**.
93
- - New entities will be created (sometimes with a suffix like `2`).
94
- - You may need to manually **remove old entities** and update your automations, dashboards, or scripts to point to the new entities.
95
-
96
- ### 📑 Additional notes
97
-
98
- - This change affects all entity types, including **sensors, diagnostic sensors, and alerts**.
99
- - Always backup your **Home Assistant configuration** before performing major upgrades.
100
-
101
- ℹ️ More details:
102
- - [README Breaking changes](https://github.com/figorr/meteocat#-breaking-changes---upgrade-to-3x)
103
- - [Wiki Breaking changes](https://github.com/figorr/meteocat/wiki/Breaking-Changes)
104
-
105
- ### Features
106
-
107
- * change unique_id to use town_id ([3a048ce](https://github.com/figorr/meteocat/commit/3a048ce48a0e1f3ee7642c28bbe7ac6e6e3fc298))
108
-
109
- ### Contributors:
110
- - [mcasellas](https://github.com/mcasellas) contributed [c505f27](https://github.com/figorr/meteocat/commit/c505f27) - Improve Catalan translations
111
-
112
-
113
- ## [2.3.0](https://github.com/figorr/meteocat/compare/v2.2.7...v2.3.0) (2025-09-10)
114
-
115
-
116
- ### Features
117
-
118
- * download and save town and station json files during setup ([7b98c22](https://github.com/figorr/meteocat/commit/7b98c22d5ca43d4cbf80895e11c02594208f7470))
119
- * include options documentation ([a85ef74](https://github.com/figorr/meteocat/commit/a85ef7492eb8ed4af99b8d0f50b8e77ff7f7976a))
120
- * include options image ([dbb047a](https://github.com/figorr/meteocat/commit/dbb047a6bdf32af03fec8351c9a608593b369e3b))
121
- * include regenerate assets files option ([f2ce357](https://github.com/figorr/meteocat/commit/f2ce357c8ce6371d97523870f4bf6a9cba6a151c))
122
- * recover assets files ([f493b33](https://github.com/figorr/meteocat/commit/f493b33e54e10994b6b08232f37dd5bb35f4a9b7))
123
- * regenerate assets option translation ([317ce9f](https://github.com/figorr/meteocat/commit/317ce9fecc03f88b8b8072b41b357846fb075dcc))
124
- * safe remove keeping common entry files ([6cefe04](https://github.com/figorr/meteocat/commit/6cefe04289b1b74fe30d615e7056bd643d845b89))
125
- * **storage:** moving the API downloaded files to the new folder meteocat_files ([06c68e3](https://github.com/figorr/meteocat/commit/06c68e36b5669efc8fe3174a71e41624e9728b07))
126
- * update .gitignore ([fac7772](https://github.com/figorr/meteocat/commit/fac7772a1093f2165e1b33098631096138617a6d))
127
- * update README ([9855939](https://github.com/figorr/meteocat/commit/98559398e6bae30e8e9c9ff2b2fe27409a3930bd))
128
- * update repo files structure ([0778679](https://github.com/figorr/meteocat/commit/0778679d218a89e89bb18791f1245c5c9f7b188f))
129
-
130
-
131
- ## [2.2.7](https://github.com/figorr/meteocat/compare/v2.2.6...v2.2.7) (2025-08-29)
132
-
133
-
134
- ### Bug Fixes
135
-
136
- * 2.2.7 ([ece96b9](https://github.com/figorr/meteocat/commit/ece96b983e6ba5df8a2811fdb86452857cadbb18))
137
- * fix HACS info ([ae829fa](https://github.com/figorr/meteocat/commit/ae829fa09047bd57d8f5aa8eae746bf31f3a30db))
138
- * Fix meteor case sensitive for alerts sensors ([d247476](https://github.com/figorr/meteocat/commit/d24747660175d2c305fcffbbae6472ccd490cfb1))
139
- * Fix umbral case insensitive ([73d6b58](https://github.com/figorr/meteocat/commit/73d6b5808acf8c896a7d822cab7640607f430b37))
140
- * Fix warning log when an umbral is not in UMBRAL_MAPPING ([adf3511](https://github.com/figorr/meteocat/commit/adf351111e8cb14cba3fd2f2868496701b445b97))
141
- * Include warning when umbral is not at UMBRAL_MAPPING ([c1b1f75](https://github.com/figorr/meteocat/commit/c1b1f75d7b6a219fbce4580a29e85e168127998e))
142
-
143
- ## [2.2.6](https://github.com/figorr/meteocat/compare/v2.2.5...v2.2.6) (2025-08-27)
144
-
145
-
146
- ### Bug Fixes
147
-
148
- * 2.2.6 ([bb92000](https://github.com/figorr/meteocat/commit/bb9200099ed951168bc891c870c6fd61b758c73d))
149
- * Fix alerts region data update at first setup of the next entrances ([40018dc](https://github.com/figorr/meteocat/commit/40018dc0bb703a8dc606aaedcfa27b5c3e6bbf7a))
150
- * Fix delete an entry but keeping common files for the rest of entries ([211e545](https://github.com/figorr/meteocat/commit/211e54510c458378ca46c465303995d1a9df0dbb))
151
- * Fix region alerts json file for multiple entrances ([2b7072c](https://github.com/figorr/meteocat/commit/2b7072cb6fd7eafa1ab95dcedb2c2dea8f35005d))
152
-
153
- ## [2.2.5](https://github.com/figorr/meteocat/compare/v2.2.4...v2.2.5) (2025-02-16)
154
-
155
-
156
- ### Bug Fixes
157
-
158
- * 2.2.5 ([cd8fb52](https://github.com/figorr/meteocat/commit/cd8fb52c607e3a74308246136b6ac2d47b51e125))
159
- * fix lightning status sensor native value ([dc3badc](https://github.com/figorr/meteocat/commit/dc3badc7b66d9afbcc14e23da3f0909f845cef2f))
160
- * fix validity at lightning coordinator and cached data ([d959bc5](https://github.com/figorr/meteocat/commit/d959bc56dfb19a475b2e34a2649bbabd803ab41e))
161
- * new lighting validity hour ([eab0215](https://github.com/figorr/meteocat/commit/eab0215cc3d68de9f900a4ecf1844ef3c6c22610))
162
-
163
- ## [2.2.4](https://github.com/figorr/meteocat/compare/v2.2.3...v2.2.4) (2025-02-09)
164
-
165
-
166
- ### Bug Fixes
167
-
168
- * 2.2.4 ([59183ea](https://github.com/figorr/meteocat/commit/59183ea082f6d963e46d3f8a51e0867b3f32060d))
169
- * fix valid lightning data for download from API ([4e4a8ae](https://github.com/figorr/meteocat/commit/4e4a8ae110b72b6e6ff560921f88ea7fb4640a29))
170
-
171
- ## [2.2.3](https://github.com/figorr/meteocat/compare/v2.2.2...v2.2.3) (2025-02-08)
172
-
173
-
174
- ### Bug Fixes
175
-
176
- * 2.2.3 ([ce224a0](https://github.com/figorr/meteocat/commit/ce224a097e7c879c46985ff3a16143de1b822006))
177
- * bump meteocatpy to 1.0.1 ([7119065](https://github.com/figorr/meteocat/commit/711906534fca5c61a9a3ab968a3572e70f05929e))
178
- * new lightning sensors ([8528f57](https://github.com/figorr/meteocat/commit/8528f57d688f7fc21f66715ffeac086895afd1aa))
179
- * update README ([10c86e5](https://github.com/figorr/meteocat/commit/10c86e5e373c661cf23524421c756374711d89fe))
180
-
181
- ## [2.2.2](https://github.com/figorr/meteocat/compare/v2.2.1...v2.2.2) (2025-02-04)
182
-
183
-
184
- ### Bug Fixes
185
-
186
- * 2.2.2 ([3667e5d](https://github.com/figorr/meteocat/commit/3667e5d65069ee0079ebbaebeab6c929be8b9630))
187
- * fix version 2.2.1 ([359cc7f](https://github.com/figorr/meteocat/commit/359cc7f7a9f1f025890bedc5177785016e9968d1))
188
-
189
- # [2.1.0](https://github.com/figorr/meteocat/compare/v2.0.3...v2.1.0) (2025-01-27)
190
-
191
-
192
- ### Bug Fixes
193
-
194
- * 2.1.0 ([759c293](https://github.com/figorr/meteocat/commit/759c2932fea8e4f174a753eca5b4c09f9d2549b6))
195
-
196
-
197
- ### Features
198
-
199
- * fix version ([596ee59](https://github.com/figorr/meteocat/commit/596ee59a835ee913238f66d40869ce27a53da4e9))
200
-
201
- ## [2.0.3](https://github.com/figorr/meteocat/compare/v2.0.2...v2.0.3) (2025-01-27)
202
-
203
- * 2.0.3
204
-
205
- ### Bug Fixes
206
-
207
-
208
- ## [2.0.2](https://github.com/figorr/meteocat/compare/v2.0.1...v2.0.2) (2025-01-27)
209
-
210
- * 2.0.2
211
-
212
- ### Bug Fixes
213
-
214
- * 2.0.1 ([7e95865](https://github.com/figorr/meteocat/commit/7e958659305f7f3a3049a8bcee1c713f60ff56ca))
215
-
216
- ## [2.0.0](https://github.com/figorr/meteocat/compare/v1.1.1...v2.0.0) (2025-01-26)
217
-
218
-
219
- ### Bug Fixes
220
-
221
- * 2.0.0 ([8f9ad16](https://github.com/figorr/meteocat/commit/8f9ad169b92da1093c3cdb2ff64ad5ffae9c9b24))
222
- * update installation methods at README ([e588ffa](https://github.com/figorr/meteocat/commit/e588ffa17c10652992a4c26d19d26b7757b051b5))
223
- * new alert sensors feature
224
-
225
- ## [1.1.1](https://github.com/figorr/meteocat/compare/v1.1.0...v1.1.1) (2025-01-08)
226
-
227
-
228
- ### Bug Fixes
229
-
230
- * 1.1.1 ([0dc7429](https://github.com/figorr/meteocat/commit/0dc74293881bfb50b9a6a62cc174254451a320cc))
231
- * bump meteocatpy to 0.0.20 ([91b03c8](https://github.com/figorr/meteocat/commit/91b03c80e448d4cde03aef2dab87041a511de02a))
232
-
233
- # [1.1.0](https://github.com/figorr/meteocat/compare/v1.0.2...v1.1.0) (2025-01-05)
234
-
235
-
236
- ### Bug Fixes
237
-
238
- * 1.1.0 ([b0e0d9a](https://github.com/figorr/meteocat/commit/b0e0d9a3aa3d2f13bb4eff129311c8c6d4e04304))
239
-
240
-
241
- ### Features
242
-
243
- * add wind bearing to weather entity ([0d40460](https://github.com/figorr/meteocat/commit/0d40460947466a644a51da3bf3361e89383ccbfe))
244
- * new wind direction cardinal sensor ([c430c48](https://github.com/figorr/meteocat/commit/c430c48a0621dbd1270a040ef017aff2c6dadc28))
245
-
246
- ## [1.0.2](https://github.com/figorr/meteocat/compare/v1.0.1...v1.0.2) (2025-01-05)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * 1.0.2 ([8ec865b](https://github.com/figorr/meteocat/commit/8ec865b4d09e802bd489bc527dbfa74de5084cb7))
252
- * include CONFIG_SCHEMA ([8911de2](https://github.com/figorr/meteocat/commit/8911de29c1804c63b79780f0bb057fdf3681eaec))
253
-
254
- ## [1.0.1](https://github.com/figorr/meteocat/compare/v1.0.0...v1.0.1) (2025-01-04)
255
-
256
-
257
- ### Bug Fixes
258
-
259
- * 1.0.1 ([c2f56d7](https://github.com/figorr/meteocat/commit/c2f56d7243649cf48ce1a1d84761c05762832e8c))
260
- * fix directions translation key ([3545d7c](https://github.com/figorr/meteocat/commit/3545d7cee8662462de4a3ed3c164d9d4a7e5e854))
261
- * fix hacs.json file removing iot_class ([03d3db0](https://github.com/figorr/meteocat/commit/03d3db08beb94a5d7c92aa0960a6ff627256e88a))
262
- * fix order in manifest.json ([434e3d5](https://github.com/figorr/meteocat/commit/434e3d50a5369a5a7c9deda0130a691d5e71b991))
263
- * fix wind direction translation keys ([3a73291](https://github.com/figorr/meteocat/commit/3a73291d803b72890d627eeb5814be17d22ab6b4))
264
-
265
- ## [1.0.0](https://github.com/figorr/meteocat/compare/v0.1.51...v1.0.0) (2025-01-04)
266
-
267
-
268
- ### Bug Fixes
269
-
270
- * 1.0.0 ([a1ec6cf](https://github.com/figorr/meteocat/commit/a1ec6cf411dcb208eeb153b00b73bf9f766d7f23))
271
-
272
- ## [0.1.51](https://github.com/figorr/meteocat/compare/v0.1.50...v0.1.51) (2025-01-04)
273
-
274
-
275
- ### Bug Fixes
276
-
277
- * 1.0.0 ([a1ec6cf](https://github.com/figorr/meteocat/commit/a1ec6cf411dcb208eeb153b00b73bf9f766d7f23))
278
-
279
- ## [0.1.50](https://github.com/figorr/meteocat/compare/v0.1.49...v0.1.50) (2025-01-04)
280
-
281
-
282
- ### Bug Fixes
283
-
284
- * 0.1.50 ([cbfc022](https://github.com/figorr/meteocat/commit/cbfc0228195762f7af306a85db4c03b287cd3c24))
285
- * fix precipitation unit ([9e6d5aa](https://github.com/figorr/meteocat/commit/9e6d5aa85ce3450341d70e2edff9a13880c69a89))
286
-
287
- ## [0.1.49](https://github.com/figorr/meteocat/compare/v0.1.48...v0.1.49) (2025-01-03)
288
-
289
-
290
- ### Bug Fixes
291
-
292
- * 0.1.49 ([81dea76](https://github.com/figorr/meteocat/commit/81dea7618fc1b3fd6aa4edff923720e424ca7f8d))
293
- * add daily precipitation probability sensor ([4d59c3f](https://github.com/figorr/meteocat/commit/4d59c3f9480c09da678fd6ce7efa775619a17d86))
294
- * add daily precipitation probability sensor ([c786f26](https://github.com/figorr/meteocat/commit/c786f26d36b8f17bb9512d405a5a2ba921a8b881))
295
-
296
- ## [0.1.48](https://github.com/figorr/meteocat/compare/v0.1.47...v0.1.48) (2025-01-03)
297
-
298
-
299
- ### Bug Fixes
300
-
301
- * 0.1.48 ([b8b8830](https://github.com/figorr/meteocat/commit/b8b8830a23b0d63744f30c3dff33fc9f172a3c01))
302
- * fix UTC to local time conversion ([14cf7d2](https://github.com/figorr/meteocat/commit/14cf7d2ca696ede2bedcd6041195df44fdd6d245))
303
-
304
- ## [0.1.47](https://github.com/figorr/meteocat/compare/v0.1.46...v0.1.47) (2025-01-02)
305
-
306
-
307
- ### Bug Fixes
308
-
309
- * 0.1.47 ([03d1d08](https://github.com/figorr/meteocat/commit/03d1d08dd837dc47d8f2062ba561be706e1d8b05))
310
- * convert to local time from UTC ([0dfe9f9](https://github.com/figorr/meteocat/commit/0dfe9f9ef7409bcd23d839963076aff14921f114))
311
- * fix semantic-release-bot ([754f18b](https://github.com/figorr/meteocat/commit/754f18b2c0378c704eb255259192655b76100c43))
312
- * fix timestamp sensor from UTC to local time Europe/Madrid ([e64539a](https://github.com/figorr/meteocat/commit/e64539a091adecfd4e23419c63bc54eda2293da3))
313
-
314
- ## [0.1.46](https://github.com/figorr/meteocat/compare/v0.1.45...v0.1.46) (2025-01-01)
315
-
316
-
317
- ### Bug Fixes
318
-
319
- * 0.1.46 ([e2e736e](https://github.com/figorr/meteocat/commit/e2e736e102f25da704060bc6329696eec8c8fac6))
320
- * add validity days, hours and minutes ([61a6761](https://github.com/figorr/meteocat/commit/61a6761cde31c321dbed4dce126416f65062a90f))
321
-
322
- ## [0.1.45](https://github.com/figorr/meteocat/compare/v0.1.44...v0.1.45) (2024-12-31)
323
-
324
-
325
- ### Bug Fixes
326
-
327
- * 0.1.45 ([ab522cf](https://github.com/figorr/meteocat/commit/ab522cf4d94687c64dc84480f8f5507645a79557))
328
- * change icon for status sensors ([7415646](https://github.com/figorr/meteocat/commit/741564698b09b6e29b774bb388b6c96f718a573a))
329
- * fix async_add_entities for generic dynamic sensors ([2192214](https://github.com/figorr/meteocat/commit/2192214ebb767e74c187df98e7c811225c21ca33))
330
- * fix name and comments for Temp Forecast Coordinator ([e65e476](https://github.com/figorr/meteocat/commit/e65e476f03b0de062ab14a9563eaa71b6d80301f))
331
- * fix name sensor coordinator ([e93d01f](https://github.com/figorr/meteocat/commit/e93d01f359158ee63494e697059550fcea37806f))
332
-
333
- ## [0.1.44](https://github.com/figorr/meteocat/compare/v0.1.43...v0.1.44) (2024-12-30)
334
-
335
-
336
- ### Bug Fixes
337
-
338
- * 0.1.44 ([7a506ea](https://github.com/figorr/meteocat/commit/7a506eab7e1fa1c0975561d71520ec3e146019dd))
339
- * add date attribute for status sensors ([5663be5](https://github.com/figorr/meteocat/commit/5663be50ba007debe349aa730a7e735f8d448a8b))
340
- * add state translations for file status ([32bcd61](https://github.com/figorr/meteocat/commit/32bcd611cddf773046ee07043a8578a6cbc52f94))
341
- * add translations for status sensors date attribute ([9504a58](https://github.com/figorr/meteocat/commit/9504a5809fbc83ed2bba0b507354260d6606b7c5))
342
-
343
- ## [0.1.43](https://github.com/figorr/meteocat/compare/v0.1.42...v0.1.43) (2024-12-30)
344
-
345
-
346
- ### Bug Fixes
347
-
348
- * 0.1.43 ([13185b2](https://github.com/figorr/meteocat/commit/13185b2276a5efb02b4fd18d07d30ab03ca7357d))
349
- * add info station to config_flow ([6c8c652](https://github.com/figorr/meteocat/commit/6c8c652dc54788e2b471984726dc7dd3c0ba30d6))
350
- * add new hourly, daily and uvi file status sensors ([42aa8b2](https://github.com/figorr/meteocat/commit/42aa8b2abbf6b333287c15d92e19b69d9630e62e))
351
- * add new hourly, daily and uvi file status sensors translations ([5639489](https://github.com/figorr/meteocat/commit/563948999feb077a5effe9c07df9dda950469d73))
352
- * add new hourly, daily and uvi sensor constants ([f7a4814](https://github.com/figorr/meteocat/commit/f7a481435abf34926b52312cc5302045c9357e69))
353
- * fix entity and uvi coordinator ([ee3a557](https://github.com/figorr/meteocat/commit/ee3a5571e5e08737b3393a650509732b1cd4996a))
354
- * ignore test read json date ([f5ce2ed](https://github.com/figorr/meteocat/commit/f5ce2edfa77d1ec33c4beff8c5c775499c0564fe))
355
- * include entity and uvi coordinators ([4128d39](https://github.com/figorr/meteocat/commit/4128d3902bd67414eaee6d8d6da4628ecbce3493))
356
- * set region, province and status to str ([31f58e7](https://github.com/figorr/meteocat/commit/31f58e7d701b2499e4f4d9f385238368703c75ff))
357
-
358
- ## [0.1.42](https://github.com/figorr/meteocat/compare/v0.1.41...v0.1.42) (2024-12-28)
359
-
360
-
361
- ### Bug Fixes
362
-
363
- * 0.1.42 ([f180cf1](https://github.com/figorr/meteocat/commit/f180cf1400e614684cfee81849369bb74796ee5e))
364
- * bump meteocatpy to 0.0.16 ([0e14f79](https://github.com/figorr/meteocat/commit/0e14f79445ee4c059d47a315bcbdc20858a0c666))
365
- * set logger to warning when using cache data ([b840d72](https://github.com/figorr/meteocat/commit/b840d7202c439f83b08597b9365c007e92aca1c5))
366
-
367
- ## [0.1.41](https://github.com/figorr/meteocat/compare/v0.1.40...v0.1.41) (2024-12-27)
368
-
369
-
370
- ### Bug Fixes
371
-
372
- * 0.1.41 ([ba2c800](https://github.com/figorr/meteocat/commit/ba2c80048cc2da6efe5f950a5d8fb958a53a7ef6))
373
- * add new Max and Min Today Temperature sensors ([6cc726d](https://github.com/figorr/meteocat/commit/6cc726d127432ddc13a54638157f1f9566967ed4))
374
- * add Today temp max and min translations ([8e1d31e](https://github.com/figorr/meteocat/commit/8e1d31e78c1d5df61c37635a19d95b6339f0b0a5))
375
- * add Today temp max and min translations ([041c3ab](https://github.com/figorr/meteocat/commit/041c3ab877b269f3b3d3359792ecf13b14969466))
376
- * add Today temp max and min translations ([be25fc4](https://github.com/figorr/meteocat/commit/be25fc43bef58e1cecc2afaff8e0b8d3288399fb))
377
- * add Today temp max and min translations ([e236182](https://github.com/figorr/meteocat/commit/e236182dfe29b15c3eb06d6a8fd3e02712837858))
378
- * fix condition when is night ([fb64e0b](https://github.com/figorr/meteocat/commit/fb64e0b754eb5a39afe9135a0be842d5e8bdeae0))
379
- * fix sunset and sunrise events for night flag ([4770e56](https://github.com/figorr/meteocat/commit/4770e5633707933c0bdd2aae0f74ada363da86bb))
380
-
381
- ## [0.1.40](https://github.com/figorr/meteocat/compare/v0.1.39...v0.1.40) (2024-12-26)
382
-
383
-
384
- ### Bug Fixes
385
-
386
- * 0.1.40 ([011f139](https://github.com/figorr/meteocat/commit/011f1391874a78d16c1ad1eebbd8f84e6b053b5b))
387
- * fix hourly forecasts ([bc1aa17](https://github.com/figorr/meteocat/commit/bc1aa178222a7158590b32af442427def4187e38))
388
-
389
- ## [0.1.39](https://github.com/figorr/meteocat/compare/v0.1.38...v0.1.39) (2024-12-25)
390
-
391
-
392
- ### Bug Fixes
393
-
394
- * 0.1.39 ([be7e9f3](https://github.com/figorr/meteocat/commit/be7e9f394a02be59521fce9a20100d3091092358))
395
- * add conditions constants ([95fa3bb](https://github.com/figorr/meteocat/commit/95fa3bba33722d2d976e1545bb58a7f97636ab7b))
396
- * add MeteocatEntityCoordinator and def json to save files ([f5816cc](https://github.com/figorr/meteocat/commit/f5816cc71dd2d7f4900c796d482969742a67ca05))
397
- * add MeteocatyEntityCoordinator and update async_remove_entry ([99a9883](https://github.com/figorr/meteocat/commit/99a98837de9923ba4a8604b5ff5ea6e628a51097))
398
- * add translations to new condition sensor ([92d757c](https://github.com/figorr/meteocat/commit/92d757c82bf9c33bd392d16f74d666f806fc27cb))
399
- * add weather entity ([914c407](https://github.com/figorr/meteocat/commit/914c4076457c8dd2ff1527ef83e5f62b911112a1))
400
- * fix condition code ([04c6ea3](https://github.com/figorr/meteocat/commit/04c6ea3e668b19bad95141154ffa6910d4aa8f3a))
401
- * fix is night code ([d50d587](https://github.com/figorr/meteocat/commit/d50d5871d89eb3ae20217e2070db61dcfc6c2503))
402
- * fix uvi icon ([d16d452](https://github.com/figorr/meteocat/commit/d16d45282f5eae83f5a337a58d34d5c5e62bee6f))
403
- * new condition sensor ([8f352fc](https://github.com/figorr/meteocat/commit/8f352fcff6f97e1bfe9ea49d22f03837b177f680))
404
- * new repo file structure ([ac61261](https://github.com/figorr/meteocat/commit/ac612613e386f926eed526e2796cadd325a3fabc))
405
- * new weather and condition coordinators ([f8307d8](https://github.com/figorr/meteocat/commit/f8307d8d8de915592c3a285e91dc8c79164953b5))
406
- * new weather and condition coordinators ([4c457e8](https://github.com/figorr/meteocat/commit/4c457e87f17564fa50743064dfbdd922e4babc17))
407
- * use await to save json files ([0945320](https://github.com/figorr/meteocat/commit/09453205bf891dcfef811c2628e72bf921aac8bb))
408
-
409
- ## [0.1.38](https://github.com/figorr/meteocat/compare/v0.1.37...v0.1.38) (2024-12-18)
410
-
411
-
412
- ### Bug Fixes
413
-
414
- * 0.1.38 ([58014ef](https://github.com/figorr/meteocat/commit/58014ef56ca54f2b458fe6e142fbcf27cd8d211d))
415
- * add degrees attribute translations ([341cf84](https://github.com/figorr/meteocat/commit/341cf849024f98ff1f31b66ec7ff6a2a39123148))
416
- * add degrees property to wind direction ([9570a79](https://github.com/figorr/meteocat/commit/9570a7911d112624818da224369bacec1ee74902))
417
-
418
- ## [0.1.37](https://github.com/figorr/meteocat/compare/v0.1.36...v0.1.37) (2024-12-17)
419
-
420
-
421
- ### Bug Fixes
422
-
423
- * 0.1.37 ([1e850d8](https://github.com/figorr/meteocat/commit/1e850d8e77d0e572a0bfb8ba01702ab3acf0437f))
424
- * fix hour attribute translation ([31ccc6f](https://github.com/figorr/meteocat/commit/31ccc6fc9a1a51c441935682cbdc1af07cc6af5f))
425
- * fix wind directions ([23bbf44](https://github.com/figorr/meteocat/commit/23bbf4465c79107e5326fc107b23cf4a0c71c70c))
426
-
427
- ## [0.1.36](https://github.com/figorr/meteocat/compare/v0.1.35...v0.1.36) (2024-12-17)
428
-
429
-
430
- ### Bug Fixes
431
-
432
- * 0.1.36 ([73da4ed](https://github.com/figorr/meteocat/commit/73da4ed7c598a150528294e89c93407e33abfd24))
433
- * add hour attribute to UVI sensor ([a365626](https://github.com/figorr/meteocat/commit/a365626aa2bb585ca9a835afcec6cea99e85a4bd))
434
- * add hour attribute translation ([d50f8bb](https://github.com/figorr/meteocat/commit/d50f8bbbcb3c8867dedcbe51f065951f5dfab817))
435
- * fix self. _config.entry from deprecated self. config.entry ([ed4bfeb](https://github.com/figorr/meteocat/commit/ed4bfebf0ea45bc63de000a21f6063a0cb9e499a))
436
- * ignore uvi test ([cf35867](https://github.com/figorr/meteocat/commit/cf358675b1afce3e1ea1650414a22c2372af4b49))
437
- * set coordinators to uvi sensor ([38288cc](https://github.com/figorr/meteocat/commit/38288cc75a30a1ad77a492dcb2b15592379e774f))
438
- * set uvi coordinators ([1ea0432](https://github.com/figorr/meteocat/commit/1ea0432d6749cac96d45e52d3cf18e7a83e59739))
439
- * update devs ([9274984](https://github.com/figorr/meteocat/commit/9274984154facd81bdeaf0e0050c870a08996b10))
440
- * update devs ([44d7699](https://github.com/figorr/meteocat/commit/44d7699c4d3bde13f6145a5380eafc5c77818c45))
441
- * use cached data when API failed ([f31bd10](https://github.com/figorr/meteocat/commit/f31bd10539e77f7d3e12bc27b3bf88cc9ab317d2))
442
- * uvi sensor ([ee0b194](https://github.com/figorr/meteocat/commit/ee0b19461bdfacc26d493f9af0e27729e45ae545))
443
-
444
- ## [0.1.35](https://github.com/figorr/meteocat/compare/v0.1.34...v0.1.35) (2024-12-14)
445
-
446
-
447
- ### Bug Fixes
448
-
449
- * 0.1.35 ([87adbc5](https://github.com/figorr/meteocat/commit/87adbc5c76941af1ff837f63920ca65164df38c2))
450
- * fix station data json name ([2c411bd](https://github.com/figorr/meteocat/commit/2c411bd5d040d8c50bd00dae3c4b7858c049e522))
451
-
452
- ## [0.1.34](https://github.com/figorr/meteocat/compare/v0.1.33...v0.1.34) (2024-12-14)
453
-
454
-
455
- ### Bug Fixes
456
-
457
- * 0.1.34 ([14c1437](https://github.com/figorr/meteocat/commit/14c1437a95fd41a014146fd63ce80892a2d4a284))
458
- * fix data validation ([a2c4282](https://github.com/figorr/meteocat/commit/a2c428207b062a06c5c07377ab3bf8ffbc65d277))
459
- * fix Feels Like round(1) ([6329807](https://github.com/figorr/meteocat/commit/63298077e5aa09cb61413b0578ccd7e4baeb5c51))
460
- * remove data validation ([250e582](https://github.com/figorr/meteocat/commit/250e5825dbda556e3e8e0c2e4a8014993e1de705))
461
- * set timeout and data validation ([b7dba2e](https://github.com/figorr/meteocat/commit/b7dba2e9e742bee04c8e16d3694c7ac647ec83ab))
462
-
463
- ## [0.1.33](https://github.com/figorr/meteocat/compare/v0.1.32...v0.1.33) (2024-12-14)
464
-
465
-
466
- ### Bug Fixes
467
-
468
- * 0.1.33 ([461a423](https://github.com/figorr/meteocat/commit/461a423bd8596234bc182697d9f2725dd5234334))
469
- * fix feels like options ([8e22c9e](https://github.com/figorr/meteocat/commit/8e22c9efd175d84eede50b4ce5c1f7abac14dc00))
470
-
471
- ## [0.1.32](https://github.com/figorr/meteocat/compare/v0.1.31...v0.1.32) (2024-12-14)
472
-
473
-
474
- ### Bug Fixes
475
-
476
- * 0.1.32 ([7c6186f](https://github.com/figorr/meteocat/commit/7c6186fe81061013f6093355b042750fbc28b921))
477
- * add LOGGER debug to FEELS LIKE ([a0cd0c4](https://github.com/figorr/meteocat/commit/a0cd0c495b1f01365a74d6262ed595921962b825))
478
- * add translations names to sensors ([57a5a1c](https://github.com/figorr/meteocat/commit/57a5a1c734db1042b1085c8fb58140c1dc0ad1fb))
479
- * add wind direction translations ([f4ec133](https://github.com/figorr/meteocat/commit/f4ec1339126d4da008e0cbc2a96fff8be3c6e081))
480
-
481
- ## [0.1.31](https://github.com/figorr/meteocat/compare/v0.1.30...v0.1.31) (2024-12-13)
482
-
483
-
484
- ### Bug Fixes
485
-
486
- * 0.1.31 ([6d49197](https://github.com/figorr/meteocat/commit/6d4919717b09d4e38a3225bf9a33d1400a0227d0))
487
- * add feels like sensor ([caca7a0](https://github.com/figorr/meteocat/commit/caca7a0d2bc53969db584eda2e2818321f3930fc))
488
- * add feels like sensor ([ccecfae](https://github.com/figorr/meteocat/commit/ccecfae83f1a2e72a2438cf6a189bf5d5186d6b3))
489
- * bump meteocatpy to 0.0.15 ([8d08b6f](https://github.com/figorr/meteocat/commit/8d08b6f66ac2ce5b029569a1538d524d3d7f50dc))
490
-
491
- ## [0.1.30](https://github.com/figorr/meteocat/compare/v0.1.29...v0.1.30) (2024-12-12)
492
-
493
-
494
- ### Bug Fixes
495
-
496
- * 0.1.30 ([2095760](https://github.com/figorr/meteocat/commit/20957606eae28a97e82607136f97fde1abe38f81))
497
- * add precipitation accumulated sensor ([b05090a](https://github.com/figorr/meteocat/commit/b05090a563656123464d95b17b01ba2d7cada20f))
498
- * add precipitation_accumulated ([261d877](https://github.com/figorr/meteocat/commit/261d877cf9f68a2106687900951731ba6a4539eb))
499
- * delete precipitation test ([845d721](https://github.com/figorr/meteocat/commit/845d721ff4e49a2fe79c5cdcf92698d52a6cff36))
500
- * fix variables json ([df403b1](https://github.com/figorr/meteocat/commit/df403b12ab12cd357f087dc1dceda30c51e4c8f0))
501
-
502
- ## [0.1.29](https://github.com/figorr/meteocat/compare/v0.1.28...v0.1.29) (2024-12-12)
503
-
504
-
505
- ### Bug Fixes
506
-
507
- * 0.1.29 ([f80cb9e](https://github.com/figorr/meteocat/commit/f80cb9eda9bd7d731489b51c161bc16a00ac57f0))
508
- * bump meteocatpy to 0.0.14 ([74cc591](https://github.com/figorr/meteocat/commit/74cc591ac7e9911c77649a20088af15d3af2d350))
509
- * remove cache ([8c4f29b](https://github.com/figorr/meteocat/commit/8c4f29b0b2c2cfa33f2b45f72bed57bf45b9a3dd))
510
- * remove cache tests ([6082096](https://github.com/figorr/meteocat/commit/6082096a92ade5a033e0493a819b20e950aff7a3))
511
-
512
- ## [0.1.28](https://github.com/figorr/meteocat/compare/v0.1.27...v0.1.28) (2024-12-11)
513
-
514
-
515
- ### Bug Fixes
516
-
517
- * 0.1.28 ([2c329cb](https://github.com/figorr/meteocat/commit/2c329cb960aa7bd6ec6bec0c6145db791349758f))
518
- * bump meteocatpy to 0.0.13 ([52c11c6](https://github.com/figorr/meteocat/commit/52c11c66f66b0ebff40fea58a8a5c4d4a74482be))
519
- * fix entity_id ([fa61841](https://github.com/figorr/meteocat/commit/fa61841ba3857a79d6b97d0e0ed12a543525c205))
520
- * fix name sensors to include station_id ([7b868fd](https://github.com/figorr/meteocat/commit/7b868fd0eea66f8ec2655e92137d9ab6dd9d0149))
521
- * ignore test_call_api ([976826a](https://github.com/figorr/meteocat/commit/976826a978889fcec304a8b3620ccf738e1a1946))
522
- * save variables.json in assets folder ([d2c2234](https://github.com/figorr/meteocat/commit/d2c2234621aaabbbdc65367429b56b304855f710))
523
- * setup cache folder and new async_remove_entry ([4dfddc0](https://github.com/figorr/meteocat/commit/4dfddc03a64f82582b39eff47870c561d0775d6d))
524
-
525
- ## [0.1.27](https://github.com/figorr/meteocat/compare/v0.1.26...v0.1.27) (2024-12-10)
526
-
527
-
528
- ### Bug Fixes
529
-
530
- * 0.1.27 ([99feff1](https://github.com/figorr/meteocat/commit/99feff14eb85201028c1e6156a13354b05b446c3))
531
- * bump meteocatpy to 0.0.11 ([03b9485](https://github.com/figorr/meteocat/commit/03b9485b0486a2bef7f0b7f3c0bf9bf1fca3da8c))
532
- * bump meteocatpy to 0.0.9 ([1fb0de9](https://github.com/figorr/meteocat/commit/1fb0de97181b802494cb8371eb472a37c9a51f40))
533
- * delete .meteocat_cache ([7941005](https://github.com/figorr/meteocat/commit/79410050e68667ca8162ff6575c0541a5f8b6207))
534
- * fix python version ([07e3264](https://github.com/figorr/meteocat/commit/07e3264f5dde756c322ca431f4b895a211be998f))
535
- * fix python version ([32f539b](https://github.com/figorr/meteocat/commit/32f539bb33a343881ebd26eb7ad3f12a58ecbed4))
536
- * fix python version ([2ff2dfc](https://github.com/figorr/meteocat/commit/2ff2dfcfa597d9fbba0fc59c330f975c6b00a55b))
537
- * ignore cache tests ([238d148](https://github.com/figorr/meteocat/commit/238d148630a5f84123f8d2d5db66dbd6e6b372f8))
538
- * set variables cache ([ba77035](https://github.com/figorr/meteocat/commit/ba7703511c4e0604bd5d87f7d07ce487be67bafe))
539
- * set variables cache ([ba55568](https://github.com/figorr/meteocat/commit/ba55568526fe74e83feaf4d7a0cd5127334ee139))
540
-
541
- ## [0.1.26](https://github.com/figorr/meteocat/compare/v0.1.25...v0.1.26) (2024-12-09)
542
-
543
-
544
- ### Bug Fixes
545
-
546
- * 0.1.26 ([9d6b083](https://github.com/figorr/meteocat/commit/9d6b083205d12b628d9a62b0c8c558c0ca9d39e2))
547
- * add station timestamp constant ([6bd0569](https://github.com/figorr/meteocat/commit/6bd0569030361b89c532ef49faae4b938c1dcf8a))
548
- * add station timestamp sensor ([ac8b98b](https://github.com/figorr/meteocat/commit/ac8b98bcb225d1348b450b619879b6f636a213da))
549
- * fix async_remove_entry ([ba28daa](https://github.com/figorr/meteocat/commit/ba28daa87271b6286cf22cd2bcc39422f71b668a))
550
- * fix entity_id names ([b670d8d](https://github.com/figorr/meteocat/commit/b670d8d53888dc93f371ba7c0e4ed2cdad7ac64b))
551
- * fix loop when saving JSON ([151dbdd](https://github.com/figorr/meteocat/commit/151dbddd932313831028e1e3e17780dd33d44640))
552
- * sensor names ([5244f7f](https://github.com/figorr/meteocat/commit/5244f7f8e9d332bfd6adf9e65c053e4b12d8a109))
553
-
554
- ## [0.1.25](https://github.com/figorr/meteocat/compare/v0.1.24...v0.1.25) (2024-12-08)
555
-
556
-
557
- ### Bug Fixes
558
-
559
- * 0.1.25 ([5ba0823](https://github.com/figorr/meteocat/commit/5ba0823db1da999d61c5a4d43733dff5db238ea4))
560
- * add town and station sensors ([372383f](https://github.com/figorr/meteocat/commit/372383f1bd17ba8e385fef638cf3c1f58515dbaf))
561
-
562
- ## [0.1.24](https://github.com/figorr/meteocat/compare/v0.1.23...v0.1.24) (2024-12-08)
563
-
564
-
565
- ### Bug Fixes
566
-
567
- * 0.1.24 ([87b8b51](https://github.com/figorr/meteocat/commit/87b8b519f78ba97a3e9fe01ac1ee85c0efd0a879))
568
- * add function to save station_data.json ([e78d872](https://github.com/figorr/meteocat/commit/e78d872938c002fe363c2634b1d8d171ea1e2d6e))
569
- * add solar global irradiance ([dc757b0](https://github.com/figorr/meteocat/commit/dc757b0a8df6ee971c01e290568730cdf3eb54b0))
570
- * add solar global irradiance sensor ([d0e7373](https://github.com/figorr/meteocat/commit/d0e737302f9d7889a698468ba6ffb881d8da17c2))
571
- * bump meteocatpy to 0.0.8 ([c280c06](https://github.com/figorr/meteocat/commit/c280c06c7c3c0703e12e94b19108537bbd03baa0))
572
- * fix constants ([5d4e0b7](https://github.com/figorr/meteocat/commit/5d4e0b77336f1e051a04a45ccaace40ada3ed33a))
573
-
574
- ## [0.1.23](https://github.com/figorr/meteocat/compare/v0.1.22...v0.1.23) (2024-12-07)
575
-
576
-
577
- ### Bug Fixes
578
-
579
- * 0.1.23 ([dda17ae](https://github.com/figorr/meteocat/commit/dda17ae1d73d31879d029d4c7a8f12a1a74f2379))
580
- * fix sensor data recovery ([564ceb7](https://github.com/figorr/meteocat/commit/564ceb7ff372acd7d2d035272e9784ad583ccece))
581
- * fix unis of measurement ([c65bce2](https://github.com/figorr/meteocat/commit/c65bce26add578bc32ebb05b82381aa72dfbf9a6))
582
-
583
- ## [0.1.22](https://github.com/figorr/meteocat/compare/v0.1.21...v0.1.22) (2024-12-07)
584
-
585
-
586
- ### Bug Fixes
587
-
588
- * 0.1.22 ([54b39fa](https://github.com/figorr/meteocat/commit/54b39fad5e645673c2d46ca3209e82d92db03b95))
589
- * add platforms ([fbbad49](https://github.com/figorr/meteocat/commit/fbbad49a6de960719d0c4f6a734c6dd1e0f3dfb5))
590
- * bump meteocatpy to 0.0.7 ([f00b48d](https://github.com/figorr/meteocat/commit/f00b48da53e0f309686fa7214c60647bb0965495))
591
- * fix coordinator to use entry_data ([5ca5050](https://github.com/figorr/meteocat/commit/5ca50501e04e8b3f6cb222f0f183dea1cc726242))
592
- * fix UV icon ([f2c86e3](https://github.com/figorr/meteocat/commit/f2c86e3e03df987e40bdf955113f2235db347229))
593
-
594
- ## [0.1.21](https://github.com/figorr/meteocat/compare/v0.1.20...v0.1.21) (2024-12-06)
595
-
596
-
597
- ### Bug Fixes
598
-
599
- * 0.1.21 ([a4df744](https://github.com/figorr/meteocat/commit/a4df7445f5dc05fe0a74c9d949fa551a77af6cf0))
600
- * delete node_modules ([3b817a5](https://github.com/figorr/meteocat/commit/3b817a53c5fd6dcc44f17865f6fb39bb79c032ab))
601
- * new repo file structure ([7ef2dbe](https://github.com/figorr/meteocat/commit/7ef2dbe67bc41c77e0f931d833578540dafe0ca8))
602
- * semantic-release job ([a78eb5c](https://github.com/figorr/meteocat/commit/a78eb5c6dbbaef556a40053f98257906adeeecaa))
603
-
604
-
605
- ## v0.1.14 (2024-11-22)
606
-
607
- ### Bug Fixes
608
-
609
- - 0.1.14
610
- ([`aca7650`](https://github.com/figorr/meteocat/commit/aca76500f09c65e50f394a23cfe48e1b3491dfbc))
611
-
612
- - Add LICENSE
613
- ([`9369498`](https://github.com/figorr/meteocat/commit/93694982ed4cc4960797c095610e78b24c8dc3be))
614
-
615
- - Ignore scripts
616
- ([`47dc6c4`](https://github.com/figorr/meteocat/commit/47dc6c4d29ca7c7acfdb576ad248e65cda34b9b5))
617
-
618
- - Publish job
619
- ([`7b830c6`](https://github.com/figorr/meteocat/commit/7b830c63f13f60bfbb8ad8d911a10638a74fb967))
620
-
621
- - Poetry update
622
- ([`aaf27ae`](https://github.com/figorr/meteocat/commit/aaf27aed177c6b94be32550a31ae4909c2c43895))
623
-
624
- - Add aiofiles & voluptuous
625
- ([`2786de5`](https://github.com/figorr/meteocat/commit/2786de5ada6567c57a290979064f40fa3464aba2))
626
-
627
- - Fix constants and placeholders
628
- ([`bf89109`](https://github.com/figorr/meteocat/commit/bf89109a6ea0a5cae65f86d39f4c1c24b138174c))
629
-
630
- - Add municipis url
631
- ([`4815daa`](https://github.com/figorr/meteocat/commit/4815daaedec0f47b02e484d1c4dd0cb520c0044b))
632
-
633
- - Fix repo structure
634
- ([`b501cad`](https://github.com/figorr/meteocat/commit/b501cad9e80911d0d75aefed8a267c6da0e519af))
635
-
636
- - Add translations
637
- ([`8e849b8`](https://github.com/figorr/meteocat/commit/8e849b8a6eb13f586c13c3c27aebd98cd486a929))
638
-
639
- - Local scripts
640
- ([`d2a6b72`](https://github.com/figorr/meteocat/commit/d2a6b72cba2ee64c97792c0f05b0c2a1f750d8dd))
641
-
642
-
643
- ## v0.1.13 (2024-11-20)
644
-
645
- ### Bug Fixes
646
-
647
- - Add translations
648
- ([`119d539`](https://github.com/figorr/meteocat/commit/119d539d3334d4dbae8e4d13ae47639e7ccf0064))
649
-
650
- - Fix include
651
- ([`56032ef`](https://github.com/figorr/meteocat/commit/56032ef488d2565e65421a556509f8e34b3fba10))
652
-
653
- - Fix file tree structure
654
- ([`911ab32`](https://github.com/figorr/meteocat/commit/911ab32d625212a33e963464821b4502dfd036fa))
655
-
656
- - Version 0.1.10
657
- ([`688f86d`](https://github.com/figorr/meteocat/commit/688f86da987efe8b8d429a615578d2558efdc985))
658
-
659
- - Remove files folder
660
- ([`6f62ea4`](https://github.com/figorr/meteocat/commit/6f62ea48c679f5e61c93e989af86d12102185e01))
661
-
662
- - Fix .gitignore new repository structure
663
- ([`f603248`](https://github.com/figorr/meteocat/commit/f603248b3d69b023a664a8d578a4771ceb34162b))
664
-
665
- - Fix repository structure
666
- ([`9ef2514`](https://github.com/figorr/meteocat/commit/9ef2514be5396c11c26945024548aeec93fb50f3))
667
-
668
- - Fix async_setup
669
- ([`e0605c7`](https://github.com/figorr/meteocat/commit/e0605c7f3cc3fa7b0875867f6880185684a57778))
670
-
671
- - Jobs
672
- ([`43321f1`](https://github.com/figorr/meteocat/commit/43321f1f40c04d210ece3b6f3a53378d338971e5))
673
-
674
- - Semnatic_job
675
- ([`5444b01`](https://github.com/figorr/meteocat/commit/5444b01bd5d89b5bfe0c85315195fb0be797e44c))
676
-
677
- - Testing semantic_job
678
- ([`bb43877`](https://github.com/figorr/meteocat/commit/bb43877cab2d3e0823883efc4ca9117d0cad3b7e))
679
-
680
- - Folder location
681
- ([`ea225a2`](https://github.com/figorr/meteocat/commit/ea225a24c62df29f56e33e5930d5c7af140b114f))
682
-
683
- - Folder location
684
- ([`478c4f0`](https://github.com/figorr/meteocat/commit/478c4f0d8eed498789d7626851665f7c8a3357b4))
685
-
686
- - .gitignore
687
- ([`0af4025`](https://github.com/figorr/meteocat/commit/0af4025312267ae9e9bb69a23126bf7ea3216fb2))
688
-
689
- - Semantic_job git push
690
- ([`daa4cc0`](https://github.com/figorr/meteocat/commit/daa4cc054caddfad43c54098a807a45a1a045b92))
691
-
692
- - Locations.py message
693
- ([`a05abfb`](https://github.com/figorr/meteocat/commit/a05abfb560636aef5ba3c264e2f2b0e68b637e92))
694
-
695
- - Municipis_list name
696
- ([`84e0dbb`](https://github.com/figorr/meteocat/commit/84e0dbb30eade0beaf11a4b356b7654cbcc32792))
697
-
698
- - Locations list
699
- ([`1abe8dc`](https://github.com/figorr/meteocat/commit/1abe8dcb8ff3558be72d9b9bf124121f19d38829))
700
-
701
- - Semantic_job
702
- ([`d57c77c`](https://github.com/figorr/meteocat/commit/d57c77c8d25d09920a51f902af04ff4a95e4c7ce))
703
-
704
- - Fix automatic version update
705
- ([`2708da0`](https://github.com/figorr/meteocat/commit/2708da07b53305826a2c652e7495a8c3dad79f7b))
706
-
707
- - Fix updated_content sintaxis
708
- ([`3e9be4f`](https://github.com/figorr/meteocat/commit/3e9be4f3d2bee8857b9e9cb6a6b7bb254b8b544c))
709
-
710
- - Fix version print
711
- ([`ebfeb99`](https://github.com/figorr/meteocat/commit/ebfeb9937e448b5b858980cde0a40a17fc56b1ef))
712
-
713
- - Version at __init__.py
714
- ([`6171eaa`](https://github.com/figorr/meteocat/commit/6171eaa29d16474b3fc24bd5a2cf97db614c2d10))
715
-
716
- - Update_version script
717
- ([`3c2c641`](https://github.com/figorr/meteocat/commit/3c2c6418e1aeb6f78c797302ebe15cadee9f8d6f))
718
-
719
- - Version.py
720
- ([`e620c1b`](https://github.com/figorr/meteocat/commit/e620c1b4808807a3475f60708906689806ff58cd))
721
-
722
- - Set version_variable to version.py
723
- ([`9a624db`](https://github.com/figorr/meteocat/commit/9a624db6b2c8efb2ec7fd93499a01ce71b2ca601))
724
-
725
- - Disable gitlab_job
726
- ([`69ced63`](https://github.com/figorr/meteocat/commit/69ced63a2c5e100bc31120c29925575908f5143a))
727
-
728
- - Fix bugs
729
- ([`3fe3492`](https://github.com/figorr/meteocat/commit/3fe3492ed9fc347ab52a83cafd957a7a17c59e1c))
730
-
731
- - Fix jobs
732
- ([`d60ee29`](https://github.com/figorr/meteocat/commit/d60ee298a2f3efac0c253b3b1ee58ff3440974a2))
733
-
734
- - Fix gitlab_job
735
- ([`d7f7c2c`](https://github.com/figorr/meteocat/commit/d7f7c2c055bfac4d6064ca2c1ae13fb1cac2e1f1))
736
-
737
- - Fix Jobs
738
- ([`3d9566c`](https://github.com/figorr/meteocat/commit/3d9566c0ec75dad55973c8ca2f355902cd484f93))
739
-
740
- - Fix semantic-release test
741
- ([`1ffa9d4`](https://github.com/figorr/meteocat/commit/1ffa9d4c2237898109d4794040579abb6e7a3e56))
742
-
743
- - Fix semantic-release test
744
- ([`7a56521`](https://github.com/figorr/meteocat/commit/7a56521a3b7f38314894bdab61e6938dcf6dd7f3))
745
-
746
- - Test semantic-release
747
- ([`7f3e017`](https://github.com/figorr/meteocat/commit/7f3e017f301cfa7d62f480050cd7875e7e9279c3))
748
-
749
- - Fix version
750
- ([`ab6365a`](https://github.com/figorr/meteocat/commit/ab6365a325273589e9f14b3e3819e585d5f56bad))
751
-
752
- - Fix gitlab_job
753
- ([`d11870a`](https://github.com/figorr/meteocat/commit/d11870ac9fe9ba727563fcb7515c2c0cacb0fd59))
754
-
755
- - Fix Gitlab job
756
- ([`0d619fd`](https://github.com/figorr/meteocat/commit/0d619fd3d78c6081ab2db126658cbef3dc492f59))
757
-
758
- - Fix gitlab_job
759
- ([`795d13b`](https://github.com/figorr/meteocat/commit/795d13b1a8706a324a732151859c8f59cabf62a8))
760
-
761
- - Setup.py version
762
- ([`67699de`](https://github.com/figorr/meteocat/commit/67699de3aa561ccc0892bb83810628a1c97a65f8))
763
-
764
- - Gitlab job
765
- ([`14bf324`](https://github.com/figorr/meteocat/commit/14bf32407a7222a4d8a319c17bee483ea54dfd31))
766
-
767
- - Gitignore update
768
- ([`c0f949a`](https://github.com/figorr/meteocat/commit/c0f949abe67e312b6db250d04963caf06fb311eb))
769
-
770
- - Add version.py file
771
- ([`7a8364b`](https://github.com/figorr/meteocat/commit/7a8364bd98c9a3cf2267a90072d1f8933b7d559e))
772
-
773
- - Add release file
774
- ([`66a7c42`](https://github.com/figorr/meteocat/commit/66a7c427da442233a2b27188336272f9ced41886))
775
-
776
- - Pypi API TOKEN
777
- ([`0a53bca`](https://github.com/figorr/meteocat/commit/0a53bcac4afa46f0a4b3847d8809aae75be4e31d))
778
-
779
- - 0.1.6
780
- ([`378f4ee`](https://github.com/figorr/meteocat/commit/378f4eeb822dd54e6e614fe50173a8012a5b33a7))
781
-
782
- - Add PyPi job
783
- ([`cdd6e48`](https://github.com/figorr/meteocat/commit/cdd6e48fbc47b2d8090425c9af800110b3188bf2))
784
-
785
- - 0.1.4
786
- ([`e3028ed`](https://github.com/figorr/meteocat/commit/e3028edb0ff5f37a280616a9d24cc94165833883))
787
-
788
- - Twine dep
789
- ([`3df0717`](https://github.com/figorr/meteocat/commit/3df07175ae8a807c3ab9f0ee1a1ac5421bfaa49b))
790
-
791
- - Gh job
792
- ([`545034e`](https://github.com/figorr/meteocat/commit/545034e7cbbd38417247e6c21d99d1be93ab6b28))
793
-
794
- - Fix push to GH
795
- ([`5db9892`](https://github.com/figorr/meteocat/commit/5db989256b06ec5e94edd3c8825a8e26758a45cc))
796
-
797
- - Virtual env
798
- ([`62852bf`](https://github.com/figorr/meteocat/commit/62852bff62585b22744651515f58ded7ffa02515))
799
-
800
- - Fix Bugs
801
- ([`0dbd7dc`](https://github.com/figorr/meteocat/commit/0dbd7dc15ce12d100151dedf1ace7f8415f7a819))
802
-
803
- - 0.1.3
804
- ([`009e9b6`](https://github.com/figorr/meteocat/commit/009e9b62ce459334ad5aed1b36061e8a059577f3))
805
-
806
- - Fix Jobs
807
- ([`47ef9ae`](https://github.com/figorr/meteocat/commit/47ef9ae50c6a8f092afbff6b26cfb4bcd384a579))
808
-
809
- - Fix GitHub Job
810
- ([`59114e2`](https://github.com/figorr/meteocat/commit/59114e273294f63abd7072eb39278c5b819bc56a))
811
-
812
- - Update README
813
- ([`c29929e`](https://github.com/figorr/meteocat/commit/c29929e572969cff2ae07cdc56b4812e169ac7de))
814
-
815
- - Fix semantic-release
816
- ([`2d2c192`](https://github.com/figorr/meteocat/commit/2d2c1928445eb65199a7f8693d5fad8bd81770fd))
817
-
818
- - Fix Jobs
819
- ([`15ec59b`](https://github.com/figorr/meteocat/commit/15ec59b068cd27de73fe89b7f5e2143f79d52e9b))
820
-
821
- - Fix version job
822
- ([`7317949`](https://github.com/figorr/meteocat/commit/7317949f6c6cbc8ea7933b6d6c8567b431bd3924))
823
-
824
- - Fix version_job
825
- ([`278d896`](https://github.com/figorr/meteocat/commit/278d896480df2c13e8ff17657fd1fe5935e2e363))
826
-
827
- - Fix version_job
828
- ([`a0fdd80`](https://github.com/figorr/meteocat/commit/a0fdd80233129c40a424d8dde509444da105e0a9))
829
-
830
- - Fix semantic-release no-push
831
- ([`5fedeaa`](https://github.com/figorr/meteocat/commit/5fedeaab3ef2516ccc781cccd091971b43a165e8))
832
-
833
- - Fix version_job
834
- ([`010252a`](https://github.com/figorr/meteocat/commit/010252a8506b43649dcdc2bdafc8e8c0af95e363))
835
-
836
- - Fix semantic-release master
837
- ([`2638433`](https://github.com/figorr/meteocat/commit/26384332a90e41b1e8e1bfd63e0eba66f270ee09))
838
-
839
- - Fix version_job
840
- ([`56459f6`](https://github.com/figorr/meteocat/commit/56459f6bb581c41fde69d1cc2bcc8a85181de749))
841
-
842
- - Fix version_job
843
- ([`b825a5c`](https://github.com/figorr/meteocat/commit/b825a5cbba56f27bc4474c226a010d9d5a9c3bff))
844
-
845
- - Fix semantic-release
846
- ([`82e90a4`](https://github.com/figorr/meteocat/commit/82e90a45af3cbe6432d3a8b7532607fb7d819734))
847
-
848
- - Gitlab release Job
849
- ([`35e05f9`](https://github.com/figorr/meteocat/commit/35e05f9e0067104563260ff34e340c0bb4d89aa3))
850
-
851
- - Fix authentication
852
- ([`af5c349`](https://github.com/figorr/meteocat/commit/af5c349f51bbfad972250840b1b81451389a4f4b))
853
-
854
- - Fix job bugs
855
- ([`11c169a`](https://github.com/figorr/meteocat/commit/11c169a05b348dd5cb7fb9a3281e541323dd2a1f))
856
-
857
- - Fix Jobs
858
- ([`2d7204a`](https://github.com/figorr/meteocat/commit/2d7204a7e95ea75db0bed7dd63f096039f4af9a2))
859
-
860
- - Fix bugs
861
- ([`52f3c0f`](https://github.com/figorr/meteocat/commit/52f3c0f34016c8a8002e2356bf60c85c32548c7f))
862
-
863
- - Fix jobs
864
- ([`c9d5d3f`](https://github.com/figorr/meteocat/commit/c9d5d3fea8659cca9ef3c05f8a99e576ed75c4d5))
865
-
866
- - Fix jobs
867
- ([`6cbfcaa`](https://github.com/figorr/meteocat/commit/6cbfcaae0344da0981f66703001ef69b047ba3ef))
868
-
869
- - Fix script
870
- ([`ebcf377`](https://github.com/figorr/meteocat/commit/ebcf377afc020865329ed601ff21bb07991487b0))
871
-
872
- - Fix variables
873
- ([`6c28da8`](https://github.com/figorr/meteocat/commit/6c28da86ab60d441fe7cc2a923cefec805b25f77))
874
-
875
- - Fix semantic-release
876
- ([`2ab754e`](https://github.com/figorr/meteocat/commit/2ab754e9f65a346f188b6ca57a8043503eee7b6d))
877
-
878
- - Fix semantic-release
879
- ([`162685b`](https://github.com/figorr/meteocat/commit/162685b2c1fd692802ac4d18bda7b394bbdf9a72))
880
-
881
- - Create .releaserc for semantic-release
882
- ([`8d1859b`](https://github.com/figorr/meteocat/commit/8d1859b928964ed16d83c26de42c179a1597af53))
883
-
884
- - Fix release_job
885
- ([`60c4d19`](https://github.com/figorr/meteocat/commit/60c4d19afd2a65944267bb9c25c7f62f39cc7ebb))
886
-
887
- - Update release job
888
- ([`0070caf`](https://github.com/figorr/meteocat/commit/0070caff7cc1c9ddbf11b03d63380f6a3375cde4))
889
-
890
- - Delete deploy job
891
- ([`69b049c`](https://github.com/figorr/meteocat/commit/69b049cc53ab62ddd45636e0bc5f5886561093ee))
892
-
893
- - Fix Jobs
894
- ([`ff9ac05`](https://github.com/figorr/meteocat/commit/ff9ac05f34db29d0cfd69c25f82b2f7ad916bfd7))
895
-
896
- - Delete deploy_job
897
- ([`756f399`](https://github.com/figorr/meteocat/commit/756f399280bcf4a66c36bcc19bdceeeb25e25a60))
898
-
899
- - Fix release job
900
- ([`877ced7`](https://github.com/figorr/meteocat/commit/877ced7453d7656cc9f406efc73cffd10cb31d13))
901
-
902
- - Automatic upload to PyPi
903
- ([`ef35667`](https://github.com/figorr/meteocat/commit/ef35667c560cff73674881f4463918626abdce7f))
904
-
905
- - Fix release job
906
- ([`4dda574`](https://github.com/figorr/meteocat/commit/4dda574b4828f3cccd3238b18fe26e4a4940a7fc))
907
-
908
- - Fix release job
909
- ([`e8b5dd2`](https://github.com/figorr/meteocat/commit/e8b5dd2ba8d09905e010f3003e22a73b7f6bf1d3))
910
-
911
- - Fix python-semantic-release version
912
- ([`a539aa0`](https://github.com/figorr/meteocat/commit/a539aa04afea83b084e07bbd44ee89adbd9247c2))
913
-
914
- - Fix bump_and_publish job
915
- ([`c6bf435`](https://github.com/figorr/meteocat/commit/c6bf435e69f01d2f48d86206fb03b06f48e41d90))
916
-
917
- - Release
918
- ([`d485379`](https://github.com/figorr/meteocat/commit/d4853794f10a9fd3f7f64f68656791617d38cd3a))
919
-
920
- - Fix release_job
921
- ([`5246274`](https://github.com/figorr/meteocat/commit/5246274cbecda1ff345e10c2f53b8d4c347a3954))
922
-
923
- - Fix release_job
924
- ([`e42cdb8`](https://github.com/figorr/meteocat/commit/e42cdb8d3139739249422ef2ca5e9dd65cfcd745))
925
-
926
- - Fix release_job
927
- ([`cd8417a`](https://github.com/figorr/meteocat/commit/cd8417a182746ec09194ab147b974b7e412b2501))
928
-
929
- - Fix release_job
930
- ([`4b7f17c`](https://github.com/figorr/meteocat/commit/4b7f17c9715ef0d79f1d29b96750df96b380c906))
931
-
932
- - Fix release_job
933
- ([`5ab7774`](https://github.com/figorr/meteocat/commit/5ab77745a963dc57c65e69306be2f68d43260f69))
934
-
935
- - Release_job
936
- ([`acc447e`](https://github.com/figorr/meteocat/commit/acc447e2b3bdcc864e670e9796ac43342a2091cf))
937
-
938
- - Manual install Python 3 and pip
939
- ([`b6070f4`](https://github.com/figorr/meteocat/commit/b6070f41fd5aa94ca005213d831a6ca39b5203ca))
940
-
941
- - Add node:20
942
- ([`2acafeb`](https://github.com/figorr/meteocat/commit/2acafeb30af036e6fd83fa286def41de4a2b0a8e))
943
-
944
- - Delete requirements.txt
945
- ([`a5cf2e0`](https://github.com/figorr/meteocat/commit/a5cf2e0c379b646abf09b563f7ad3db1bbf42951))
946
-
947
- - _logger import
948
- ([`0f4dc39`](https://github.com/figorr/meteocat/commit/0f4dc39144d5897da223111d1c8783eef5a4d6f8))
949
-
950
- - Update locations.py folder location
951
- ([`d7113d5`](https://github.com/figorr/meteocat/commit/d7113d52e40161c6439ee9f20bda20ee3b302c77))
952
-
953
- - Setup semantic-release
954
- ([`933c360`](https://github.com/figorr/meteocat/commit/933c36068fc86fca7da77c361f632511d0f2c5db))
1
+ ## [4.0.2](https://github.com/figorr/meteocat/compare/v4.0.1...v4.0.2) (2026-01-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix snow mapping name ([f7fe89c](https://github.com/figorr/meteocat/commit/f7fe89cb574b7a3cf426ddc6af3d03d82b4f56ce))
7
+ * fix snow mapping translation ([86f9ec1](https://github.com/figorr/meteocat/commit/86f9ec1a8541717f504d5b278e4556e5159b5d04))
8
+
9
+ ## [4.0.1](https://github.com/figorr/meteocat/compare/v4.0.0...v4.0.1) (2026-01-04)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * add translation for new snow thresholds ([e57a0b6](https://github.com/figorr/meteocat/commit/e57a0b618a241e9df89855a211e0f8b4a68750cf))
15
+ * fix snow meteor name and include new threshold ([fbec1e2](https://github.com/figorr/meteocat/commit/fbec1e23d6b5157a1e02f30bcd4f461b54ee519c))
16
+ * improve cache ([d36c43a](https://github.com/figorr/meteocat/commit/d36c43a831a4515d1fade109fc5b5154b2d425e4))
17
+
18
+ # [4.0.0](https://github.com/figorr/meteocat/compare/v3.2.0...v4.0.0) (2025-11-07)
19
+
20
+
21
+ ## 🚀 Release Meteocat integration v4.0.0 major improvements and new solar/lunar system
22
+ My own custom Python package `Solarmoonpy` is introduced in this major release.
23
+ `Solarmoonpy` added support for new native sun and moon sensors in the Meteocat integration.
24
+
25
+ ### ✨ Highlights:
26
+ - Introduced new Python package `Solarmoonpy` to handle all solar and lunar data and event calculations.
27
+ → Replaces the `astral` dependency completely.
28
+ - Added new solar and lunar sensors to provide richer astronomical data with many extra attributes.
29
+ - Added configuration option to manually adjust default coordinates and elevation.
30
+ This allows users to fine-tune their position for more accurate solar and lunar event calculations instead of using the default station coordinates and elevation.
31
+
32
+ ### 🛠 Changes:
33
+ - Major refactor and optimization of coordinator logic for better performance and stability.
34
+ - The default validation hour for forecasts is set to 6.
35
+
36
+ ### ⚠️ Note:
37
+ - The new v4.0.0 is required for using Meteocat Card v3.0.0 and later.
38
+ - Upgrade is recommended if you plan to use the updated card.
39
+
40
+ # [3.2.0](https://github.com/figorr/meteocat/compare/v3.1.0...v3.2.0) (2025-11-07)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * add validation date for moon coordinator ([8644f56](https://github.com/figorr/meteocat/commit/8644f56d8f8b6b607ba8809499afbfb81eb70b28))
46
+ * adjust moon update interval ([ea51d90](https://github.com/figorr/meteocat/commit/ea51d905a232ab947607333ea4abaf449cd2e786))
47
+ * fix friendly time translation ([9081a34](https://github.com/figorr/meteocat/commit/9081a343fd1562cb001f8a4b69948be3e26cbe00))
48
+ * fix reset data moon file coordinator ([f3cf22f](https://github.com/figorr/meteocat/commit/f3cf22f1fb1d1a19d6ee9fefd2be304850be1180))
49
+ * more accurate moon calculation ([dcee6e0](https://github.com/figorr/meteocat/commit/dcee6e0040d1cf77860fc7cbd06a5518145d3a72))
50
+
51
+
52
+ ### Features
53
+
54
+ * add new moon day data ([77edf68](https://github.com/figorr/meteocat/commit/77edf681af037f00748b2b3cf2d281655d225718))
55
+ * add new moon day data ([d2be96e](https://github.com/figorr/meteocat/commit/d2be96ec7f4f9d48c1f018ba2c642f29558d05fe))
56
+ * add translations for lunation attribute ([10e3409](https://github.com/figorr/meteocat/commit/10e3409f82fa6530f0edf81c5e8406d019aeeaf1))
57
+ * bump solarmoonpy to v1.0.0 ([65c2a04](https://github.com/figorr/meteocat/commit/65c2a0495250bac284c060b575256f95f4fb0be0))
58
+ * bump solarmoonpy to v1.0.1 ([aa86747](https://github.com/figorr/meteocat/commit/aa86747ed41d69a80ac009b75b596746762548fe))
59
+ * bump solarmoonpy to v1.0.3 ([246bd83](https://github.com/figorr/meteocat/commit/246bd835589978940efc11722b79e420f838ecab))
60
+ * include latitude, longitude and altitude as new required variables ([5ef864c](https://github.com/figorr/meteocat/commit/5ef864ca38fa17ed05b36a19a96b8c7182f66be7))
61
+ * new latitude, longitude and altitude update options setup ([1aeb968](https://github.com/figorr/meteocat/commit/1aeb9682c8e65b3cb0b29a7b7467edcc455304c9))
62
+ * new lunation attribute for moon and moon phase name code ([60c7129](https://github.com/figorr/meteocat/commit/60c7129757916908baf26439819458ea3a173ad4))
63
+ * new lunation attribute for moon sensor ([9bb32ff](https://github.com/figorr/meteocat/commit/9bb32ff03bd7eba291a1ee1aa578e2838dcf9bd5))
64
+ * new lunation data and moon phase name rework ([0616401](https://github.com/figorr/meteocat/commit/0616401243334c21736d0877e5e50e435279e002))
65
+ * new moon day attribute ([86ec6e3](https://github.com/figorr/meteocat/commit/86ec6e311fc098174027f17d3502e8be740d7e86))
66
+ * new moon sensors ([7c7c1d3](https://github.com/figorr/meteocat/commit/7c7c1d38393a40fd2e69eeba2c24bb185ae349ef))
67
+ * new solarmoonpy requirement for sun and moon events calculation ([1d25a62](https://github.com/figorr/meteocat/commit/1d25a6252cf568e1242f654c389aeada2b5d73f6))
68
+ * new sun and moon coordinators ([af2290e](https://github.com/figorr/meteocat/commit/af2290e7384a9ad5416afdf4d6767ad69099813c))
69
+ * new sun and moon files ([b489d7a](https://github.com/figorr/meteocat/commit/b489d7a9abc5af747fc50a2e0d7b0d661408b824))
70
+ * new sun and moon sensors ([91265f3](https://github.com/figorr/meteocat/commit/91265f3c6cbd512b3706c29d466f9bb01df6d45e))
71
+ * translation for new moon day attribute ([162859e](https://github.com/figorr/meteocat/commit/162859e2822374b81835cb1af07325dceaf5a55e))
72
+ * translations for the new moon and sun sensors ([91a33b6](https://github.com/figorr/meteocat/commit/91a33b6b52e34ed69eed4eb5fbfaf9dffd20df57))
73
+
74
+ # [3.1.0](https://github.com/figorr/meteocat/compare/v3.0.0...v3.1.0) (2025-09-27)
75
+
76
+
77
+ ### Bug Fixes
78
+
79
+ * fix unknown threshold translation ([6fa7964](https://github.com/figorr/meteocat/commit/6fa79644e3ebbdf9a44826f6071af6009cd2d02d))
80
+ * include Meteocat Card ([513d9ed](https://github.com/figorr/meteocat/commit/513d9ed50fcd9127ac64f0388ed1017db938f378))
81
+
82
+
83
+ ### Features
84
+
85
+ * Add native sunrise and sunset sensors to Meteocat integration ([7bb70c6](https://github.com/figorr/meteocat/commit/7bb70c681c90773275e496f938f455c3688fb4c0))
86
+
87
+ ## [3.0.0](https://github.com/figorr/meteocat/compare/v2.3.0...v3.0.0) (2025-09-14)
88
+
89
+
90
+ ### ⚠️ BREAKING CHANGES
91
+
92
+ * Version **3.0.0 and later** introduces a **breaking change** in how entities are identified.
93
+
94
+ ## ⚠️ What this affects
95
+ - This affects any update **from a version prior to 3.0.0** to **any version 3.x or later**.
96
+ - Entities now use **`town_id`** instead of `region_id` in their `unique_id`.
97
+ - This change allows multiple integration entries that share the same `region_id` but different towns.
98
+
99
+ ### Recommended upgrade procedure
100
+ To avoid issues with duplicated or unavailable entities:
101
+
102
+ 1. **Uninstall** the existing integration (v2.x).
103
+ 2. **Restart** Home Assistant.
104
+ 3. **Install v3.0.0 or later** and configure the integration again.
105
+
106
+ ### 🚨 If you update directly
107
+ If you update without uninstalling first:
108
+
109
+ - Old entities will remain as **Unavailable**.
110
+ - New entities will be created (sometimes with a suffix like `2`).
111
+ - You may need to manually **remove old entities** and update your automations, dashboards, or scripts to point to the new entities.
112
+
113
+ ### 📑 Additional notes
114
+
115
+ - This change affects all entity types, including **sensors, diagnostic sensors, and alerts**.
116
+ - Always backup your **Home Assistant configuration** before performing major upgrades.
117
+
118
+ ℹ️ More details:
119
+ - [README Breaking changes](https://github.com/figorr/meteocat#-breaking-changes---upgrade-to-3x)
120
+ - [Wiki Breaking changes](https://github.com/figorr/meteocat/wiki/Breaking-Changes)
121
+
122
+ ### Features
123
+
124
+ * change unique_id to use town_id ([3a048ce](https://github.com/figorr/meteocat/commit/3a048ce48a0e1f3ee7642c28bbe7ac6e6e3fc298))
125
+
126
+ ### Contributors:
127
+ - [mcasellas](https://github.com/mcasellas) contributed [c505f27](https://github.com/figorr/meteocat/commit/c505f27) - Improve Catalan translations
128
+
129
+
130
+ ## [2.3.0](https://github.com/figorr/meteocat/compare/v2.2.7...v2.3.0) (2025-09-10)
131
+
132
+
133
+ ### Features
134
+
135
+ * download and save town and station json files during setup ([7b98c22](https://github.com/figorr/meteocat/commit/7b98c22d5ca43d4cbf80895e11c02594208f7470))
136
+ * include options documentation ([a85ef74](https://github.com/figorr/meteocat/commit/a85ef7492eb8ed4af99b8d0f50b8e77ff7f7976a))
137
+ * include options image ([dbb047a](https://github.com/figorr/meteocat/commit/dbb047a6bdf32af03fec8351c9a608593b369e3b))
138
+ * include regenerate assets files option ([f2ce357](https://github.com/figorr/meteocat/commit/f2ce357c8ce6371d97523870f4bf6a9cba6a151c))
139
+ * recover assets files ([f493b33](https://github.com/figorr/meteocat/commit/f493b33e54e10994b6b08232f37dd5bb35f4a9b7))
140
+ * regenerate assets option translation ([317ce9f](https://github.com/figorr/meteocat/commit/317ce9fecc03f88b8b8072b41b357846fb075dcc))
141
+ * safe remove keeping common entry files ([6cefe04](https://github.com/figorr/meteocat/commit/6cefe04289b1b74fe30d615e7056bd643d845b89))
142
+ * **storage:** moving the API downloaded files to the new folder meteocat_files ([06c68e3](https://github.com/figorr/meteocat/commit/06c68e36b5669efc8fe3174a71e41624e9728b07))
143
+ * update .gitignore ([fac7772](https://github.com/figorr/meteocat/commit/fac7772a1093f2165e1b33098631096138617a6d))
144
+ * update README ([9855939](https://github.com/figorr/meteocat/commit/98559398e6bae30e8e9c9ff2b2fe27409a3930bd))
145
+ * update repo files structure ([0778679](https://github.com/figorr/meteocat/commit/0778679d218a89e89bb18791f1245c5c9f7b188f))
146
+
147
+
148
+ ## [2.2.7](https://github.com/figorr/meteocat/compare/v2.2.6...v2.2.7) (2025-08-29)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * 2.2.7 ([ece96b9](https://github.com/figorr/meteocat/commit/ece96b983e6ba5df8a2811fdb86452857cadbb18))
154
+ * fix HACS info ([ae829fa](https://github.com/figorr/meteocat/commit/ae829fa09047bd57d8f5aa8eae746bf31f3a30db))
155
+ * Fix meteor case sensitive for alerts sensors ([d247476](https://github.com/figorr/meteocat/commit/d24747660175d2c305fcffbbae6472ccd490cfb1))
156
+ * Fix umbral case insensitive ([73d6b58](https://github.com/figorr/meteocat/commit/73d6b5808acf8c896a7d822cab7640607f430b37))
157
+ * Fix warning log when an umbral is not in UMBRAL_MAPPING ([adf3511](https://github.com/figorr/meteocat/commit/adf351111e8cb14cba3fd2f2868496701b445b97))
158
+ * Include warning when umbral is not at UMBRAL_MAPPING ([c1b1f75](https://github.com/figorr/meteocat/commit/c1b1f75d7b6a219fbce4580a29e85e168127998e))
159
+
160
+ ## [2.2.6](https://github.com/figorr/meteocat/compare/v2.2.5...v2.2.6) (2025-08-27)
161
+
162
+
163
+ ### Bug Fixes
164
+
165
+ * 2.2.6 ([bb92000](https://github.com/figorr/meteocat/commit/bb9200099ed951168bc891c870c6fd61b758c73d))
166
+ * Fix alerts region data update at first setup of the next entrances ([40018dc](https://github.com/figorr/meteocat/commit/40018dc0bb703a8dc606aaedcfa27b5c3e6bbf7a))
167
+ * Fix delete an entry but keeping common files for the rest of entries ([211e545](https://github.com/figorr/meteocat/commit/211e54510c458378ca46c465303995d1a9df0dbb))
168
+ * Fix region alerts json file for multiple entrances ([2b7072c](https://github.com/figorr/meteocat/commit/2b7072cb6fd7eafa1ab95dcedb2c2dea8f35005d))
169
+
170
+ ## [2.2.5](https://github.com/figorr/meteocat/compare/v2.2.4...v2.2.5) (2025-02-16)
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * 2.2.5 ([cd8fb52](https://github.com/figorr/meteocat/commit/cd8fb52c607e3a74308246136b6ac2d47b51e125))
176
+ * fix lightning status sensor native value ([dc3badc](https://github.com/figorr/meteocat/commit/dc3badc7b66d9afbcc14e23da3f0909f845cef2f))
177
+ * fix validity at lightning coordinator and cached data ([d959bc5](https://github.com/figorr/meteocat/commit/d959bc56dfb19a475b2e34a2649bbabd803ab41e))
178
+ * new lighting validity hour ([eab0215](https://github.com/figorr/meteocat/commit/eab0215cc3d68de9f900a4ecf1844ef3c6c22610))
179
+
180
+ ## [2.2.4](https://github.com/figorr/meteocat/compare/v2.2.3...v2.2.4) (2025-02-09)
181
+
182
+
183
+ ### Bug Fixes
184
+
185
+ * 2.2.4 ([59183ea](https://github.com/figorr/meteocat/commit/59183ea082f6d963e46d3f8a51e0867b3f32060d))
186
+ * fix valid lightning data for download from API ([4e4a8ae](https://github.com/figorr/meteocat/commit/4e4a8ae110b72b6e6ff560921f88ea7fb4640a29))
187
+
188
+ ## [2.2.3](https://github.com/figorr/meteocat/compare/v2.2.2...v2.2.3) (2025-02-08)
189
+
190
+
191
+ ### Bug Fixes
192
+
193
+ * 2.2.3 ([ce224a0](https://github.com/figorr/meteocat/commit/ce224a097e7c879c46985ff3a16143de1b822006))
194
+ * bump meteocatpy to 1.0.1 ([7119065](https://github.com/figorr/meteocat/commit/711906534fca5c61a9a3ab968a3572e70f05929e))
195
+ * new lightning sensors ([8528f57](https://github.com/figorr/meteocat/commit/8528f57d688f7fc21f66715ffeac086895afd1aa))
196
+ * update README ([10c86e5](https://github.com/figorr/meteocat/commit/10c86e5e373c661cf23524421c756374711d89fe))
197
+
198
+ ## [2.2.2](https://github.com/figorr/meteocat/compare/v2.2.1...v2.2.2) (2025-02-04)
199
+
200
+
201
+ ### Bug Fixes
202
+
203
+ * 2.2.2 ([3667e5d](https://github.com/figorr/meteocat/commit/3667e5d65069ee0079ebbaebeab6c929be8b9630))
204
+ * fix version 2.2.1 ([359cc7f](https://github.com/figorr/meteocat/commit/359cc7f7a9f1f025890bedc5177785016e9968d1))
205
+
206
+ # [2.1.0](https://github.com/figorr/meteocat/compare/v2.0.3...v2.1.0) (2025-01-27)
207
+
208
+
209
+ ### Bug Fixes
210
+
211
+ * 2.1.0 ([759c293](https://github.com/figorr/meteocat/commit/759c2932fea8e4f174a753eca5b4c09f9d2549b6))
212
+
213
+
214
+ ### Features
215
+
216
+ * fix version ([596ee59](https://github.com/figorr/meteocat/commit/596ee59a835ee913238f66d40869ce27a53da4e9))
217
+
218
+ ## [2.0.3](https://github.com/figorr/meteocat/compare/v2.0.2...v2.0.3) (2025-01-27)
219
+
220
+ * 2.0.3
221
+
222
+ ### Bug Fixes
223
+
224
+
225
+ ## [2.0.2](https://github.com/figorr/meteocat/compare/v2.0.1...v2.0.2) (2025-01-27)
226
+
227
+ * 2.0.2
228
+
229
+ ### Bug Fixes
230
+
231
+ * 2.0.1 ([7e95865](https://github.com/figorr/meteocat/commit/7e958659305f7f3a3049a8bcee1c713f60ff56ca))
232
+
233
+ ## [2.0.0](https://github.com/figorr/meteocat/compare/v1.1.1...v2.0.0) (2025-01-26)
234
+
235
+
236
+ ### Bug Fixes
237
+
238
+ * 2.0.0 ([8f9ad16](https://github.com/figorr/meteocat/commit/8f9ad169b92da1093c3cdb2ff64ad5ffae9c9b24))
239
+ * update installation methods at README ([e588ffa](https://github.com/figorr/meteocat/commit/e588ffa17c10652992a4c26d19d26b7757b051b5))
240
+ * new alert sensors feature
241
+
242
+ ## [1.1.1](https://github.com/figorr/meteocat/compare/v1.1.0...v1.1.1) (2025-01-08)
243
+
244
+
245
+ ### Bug Fixes
246
+
247
+ * 1.1.1 ([0dc7429](https://github.com/figorr/meteocat/commit/0dc74293881bfb50b9a6a62cc174254451a320cc))
248
+ * bump meteocatpy to 0.0.20 ([91b03c8](https://github.com/figorr/meteocat/commit/91b03c80e448d4cde03aef2dab87041a511de02a))
249
+
250
+ # [1.1.0](https://github.com/figorr/meteocat/compare/v1.0.2...v1.1.0) (2025-01-05)
251
+
252
+
253
+ ### Bug Fixes
254
+
255
+ * 1.1.0 ([b0e0d9a](https://github.com/figorr/meteocat/commit/b0e0d9a3aa3d2f13bb4eff129311c8c6d4e04304))
256
+
257
+
258
+ ### Features
259
+
260
+ * add wind bearing to weather entity ([0d40460](https://github.com/figorr/meteocat/commit/0d40460947466a644a51da3bf3361e89383ccbfe))
261
+ * new wind direction cardinal sensor ([c430c48](https://github.com/figorr/meteocat/commit/c430c48a0621dbd1270a040ef017aff2c6dadc28))
262
+
263
+ ## [1.0.2](https://github.com/figorr/meteocat/compare/v1.0.1...v1.0.2) (2025-01-05)
264
+
265
+
266
+ ### Bug Fixes
267
+
268
+ * 1.0.2 ([8ec865b](https://github.com/figorr/meteocat/commit/8ec865b4d09e802bd489bc527dbfa74de5084cb7))
269
+ * include CONFIG_SCHEMA ([8911de2](https://github.com/figorr/meteocat/commit/8911de29c1804c63b79780f0bb057fdf3681eaec))
270
+
271
+ ## [1.0.1](https://github.com/figorr/meteocat/compare/v1.0.0...v1.0.1) (2025-01-04)
272
+
273
+
274
+ ### Bug Fixes
275
+
276
+ * 1.0.1 ([c2f56d7](https://github.com/figorr/meteocat/commit/c2f56d7243649cf48ce1a1d84761c05762832e8c))
277
+ * fix directions translation key ([3545d7c](https://github.com/figorr/meteocat/commit/3545d7cee8662462de4a3ed3c164d9d4a7e5e854))
278
+ * fix hacs.json file removing iot_class ([03d3db0](https://github.com/figorr/meteocat/commit/03d3db08beb94a5d7c92aa0960a6ff627256e88a))
279
+ * fix order in manifest.json ([434e3d5](https://github.com/figorr/meteocat/commit/434e3d50a5369a5a7c9deda0130a691d5e71b991))
280
+ * fix wind direction translation keys ([3a73291](https://github.com/figorr/meteocat/commit/3a73291d803b72890d627eeb5814be17d22ab6b4))
281
+
282
+ ## [1.0.0](https://github.com/figorr/meteocat/compare/v0.1.51...v1.0.0) (2025-01-04)
283
+
284
+
285
+ ### Bug Fixes
286
+
287
+ * 1.0.0 ([a1ec6cf](https://github.com/figorr/meteocat/commit/a1ec6cf411dcb208eeb153b00b73bf9f766d7f23))
288
+
289
+ ## [0.1.51](https://github.com/figorr/meteocat/compare/v0.1.50...v0.1.51) (2025-01-04)
290
+
291
+
292
+ ### Bug Fixes
293
+
294
+ * 1.0.0 ([a1ec6cf](https://github.com/figorr/meteocat/commit/a1ec6cf411dcb208eeb153b00b73bf9f766d7f23))
295
+
296
+ ## [0.1.50](https://github.com/figorr/meteocat/compare/v0.1.49...v0.1.50) (2025-01-04)
297
+
298
+
299
+ ### Bug Fixes
300
+
301
+ * 0.1.50 ([cbfc022](https://github.com/figorr/meteocat/commit/cbfc0228195762f7af306a85db4c03b287cd3c24))
302
+ * fix precipitation unit ([9e6d5aa](https://github.com/figorr/meteocat/commit/9e6d5aa85ce3450341d70e2edff9a13880c69a89))
303
+
304
+ ## [0.1.49](https://github.com/figorr/meteocat/compare/v0.1.48...v0.1.49) (2025-01-03)
305
+
306
+
307
+ ### Bug Fixes
308
+
309
+ * 0.1.49 ([81dea76](https://github.com/figorr/meteocat/commit/81dea7618fc1b3fd6aa4edff923720e424ca7f8d))
310
+ * add daily precipitation probability sensor ([4d59c3f](https://github.com/figorr/meteocat/commit/4d59c3f9480c09da678fd6ce7efa775619a17d86))
311
+ * add daily precipitation probability sensor ([c786f26](https://github.com/figorr/meteocat/commit/c786f26d36b8f17bb9512d405a5a2ba921a8b881))
312
+
313
+ ## [0.1.48](https://github.com/figorr/meteocat/compare/v0.1.47...v0.1.48) (2025-01-03)
314
+
315
+
316
+ ### Bug Fixes
317
+
318
+ * 0.1.48 ([b8b8830](https://github.com/figorr/meteocat/commit/b8b8830a23b0d63744f30c3dff33fc9f172a3c01))
319
+ * fix UTC to local time conversion ([14cf7d2](https://github.com/figorr/meteocat/commit/14cf7d2ca696ede2bedcd6041195df44fdd6d245))
320
+
321
+ ## [0.1.47](https://github.com/figorr/meteocat/compare/v0.1.46...v0.1.47) (2025-01-02)
322
+
323
+
324
+ ### Bug Fixes
325
+
326
+ * 0.1.47 ([03d1d08](https://github.com/figorr/meteocat/commit/03d1d08dd837dc47d8f2062ba561be706e1d8b05))
327
+ * convert to local time from UTC ([0dfe9f9](https://github.com/figorr/meteocat/commit/0dfe9f9ef7409bcd23d839963076aff14921f114))
328
+ * fix semantic-release-bot ([754f18b](https://github.com/figorr/meteocat/commit/754f18b2c0378c704eb255259192655b76100c43))
329
+ * fix timestamp sensor from UTC to local time Europe/Madrid ([e64539a](https://github.com/figorr/meteocat/commit/e64539a091adecfd4e23419c63bc54eda2293da3))
330
+
331
+ ## [0.1.46](https://github.com/figorr/meteocat/compare/v0.1.45...v0.1.46) (2025-01-01)
332
+
333
+
334
+ ### Bug Fixes
335
+
336
+ * 0.1.46 ([e2e736e](https://github.com/figorr/meteocat/commit/e2e736e102f25da704060bc6329696eec8c8fac6))
337
+ * add validity days, hours and minutes ([61a6761](https://github.com/figorr/meteocat/commit/61a6761cde31c321dbed4dce126416f65062a90f))
338
+
339
+ ## [0.1.45](https://github.com/figorr/meteocat/compare/v0.1.44...v0.1.45) (2024-12-31)
340
+
341
+
342
+ ### Bug Fixes
343
+
344
+ * 0.1.45 ([ab522cf](https://github.com/figorr/meteocat/commit/ab522cf4d94687c64dc84480f8f5507645a79557))
345
+ * change icon for status sensors ([7415646](https://github.com/figorr/meteocat/commit/741564698b09b6e29b774bb388b6c96f718a573a))
346
+ * fix async_add_entities for generic dynamic sensors ([2192214](https://github.com/figorr/meteocat/commit/2192214ebb767e74c187df98e7c811225c21ca33))
347
+ * fix name and comments for Temp Forecast Coordinator ([e65e476](https://github.com/figorr/meteocat/commit/e65e476f03b0de062ab14a9563eaa71b6d80301f))
348
+ * fix name sensor coordinator ([e93d01f](https://github.com/figorr/meteocat/commit/e93d01f359158ee63494e697059550fcea37806f))
349
+
350
+ ## [0.1.44](https://github.com/figorr/meteocat/compare/v0.1.43...v0.1.44) (2024-12-30)
351
+
352
+
353
+ ### Bug Fixes
354
+
355
+ * 0.1.44 ([7a506ea](https://github.com/figorr/meteocat/commit/7a506eab7e1fa1c0975561d71520ec3e146019dd))
356
+ * add date attribute for status sensors ([5663be5](https://github.com/figorr/meteocat/commit/5663be50ba007debe349aa730a7e735f8d448a8b))
357
+ * add state translations for file status ([32bcd61](https://github.com/figorr/meteocat/commit/32bcd611cddf773046ee07043a8578a6cbc52f94))
358
+ * add translations for status sensors date attribute ([9504a58](https://github.com/figorr/meteocat/commit/9504a5809fbc83ed2bba0b507354260d6606b7c5))
359
+
360
+ ## [0.1.43](https://github.com/figorr/meteocat/compare/v0.1.42...v0.1.43) (2024-12-30)
361
+
362
+
363
+ ### Bug Fixes
364
+
365
+ * 0.1.43 ([13185b2](https://github.com/figorr/meteocat/commit/13185b2276a5efb02b4fd18d07d30ab03ca7357d))
366
+ * add info station to config_flow ([6c8c652](https://github.com/figorr/meteocat/commit/6c8c652dc54788e2b471984726dc7dd3c0ba30d6))
367
+ * add new hourly, daily and uvi file status sensors ([42aa8b2](https://github.com/figorr/meteocat/commit/42aa8b2abbf6b333287c15d92e19b69d9630e62e))
368
+ * add new hourly, daily and uvi file status sensors translations ([5639489](https://github.com/figorr/meteocat/commit/563948999feb077a5effe9c07df9dda950469d73))
369
+ * add new hourly, daily and uvi sensor constants ([f7a4814](https://github.com/figorr/meteocat/commit/f7a481435abf34926b52312cc5302045c9357e69))
370
+ * fix entity and uvi coordinator ([ee3a557](https://github.com/figorr/meteocat/commit/ee3a5571e5e08737b3393a650509732b1cd4996a))
371
+ * ignore test read json date ([f5ce2ed](https://github.com/figorr/meteocat/commit/f5ce2edfa77d1ec33c4beff8c5c775499c0564fe))
372
+ * include entity and uvi coordinators ([4128d39](https://github.com/figorr/meteocat/commit/4128d3902bd67414eaee6d8d6da4628ecbce3493))
373
+ * set region, province and status to str ([31f58e7](https://github.com/figorr/meteocat/commit/31f58e7d701b2499e4f4d9f385238368703c75ff))
374
+
375
+ ## [0.1.42](https://github.com/figorr/meteocat/compare/v0.1.41...v0.1.42) (2024-12-28)
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * 0.1.42 ([f180cf1](https://github.com/figorr/meteocat/commit/f180cf1400e614684cfee81849369bb74796ee5e))
381
+ * bump meteocatpy to 0.0.16 ([0e14f79](https://github.com/figorr/meteocat/commit/0e14f79445ee4c059d47a315bcbdc20858a0c666))
382
+ * set logger to warning when using cache data ([b840d72](https://github.com/figorr/meteocat/commit/b840d7202c439f83b08597b9365c007e92aca1c5))
383
+
384
+ ## [0.1.41](https://github.com/figorr/meteocat/compare/v0.1.40...v0.1.41) (2024-12-27)
385
+
386
+
387
+ ### Bug Fixes
388
+
389
+ * 0.1.41 ([ba2c800](https://github.com/figorr/meteocat/commit/ba2c80048cc2da6efe5f950a5d8fb958a53a7ef6))
390
+ * add new Max and Min Today Temperature sensors ([6cc726d](https://github.com/figorr/meteocat/commit/6cc726d127432ddc13a54638157f1f9566967ed4))
391
+ * add Today temp max and min translations ([8e1d31e](https://github.com/figorr/meteocat/commit/8e1d31e78c1d5df61c37635a19d95b6339f0b0a5))
392
+ * add Today temp max and min translations ([041c3ab](https://github.com/figorr/meteocat/commit/041c3ab877b269f3b3d3359792ecf13b14969466))
393
+ * add Today temp max and min translations ([be25fc4](https://github.com/figorr/meteocat/commit/be25fc43bef58e1cecc2afaff8e0b8d3288399fb))
394
+ * add Today temp max and min translations ([e236182](https://github.com/figorr/meteocat/commit/e236182dfe29b15c3eb06d6a8fd3e02712837858))
395
+ * fix condition when is night ([fb64e0b](https://github.com/figorr/meteocat/commit/fb64e0b754eb5a39afe9135a0be842d5e8bdeae0))
396
+ * fix sunset and sunrise events for night flag ([4770e56](https://github.com/figorr/meteocat/commit/4770e5633707933c0bdd2aae0f74ada363da86bb))
397
+
398
+ ## [0.1.40](https://github.com/figorr/meteocat/compare/v0.1.39...v0.1.40) (2024-12-26)
399
+
400
+
401
+ ### Bug Fixes
402
+
403
+ * 0.1.40 ([011f139](https://github.com/figorr/meteocat/commit/011f1391874a78d16c1ad1eebbd8f84e6b053b5b))
404
+ * fix hourly forecasts ([bc1aa17](https://github.com/figorr/meteocat/commit/bc1aa178222a7158590b32af442427def4187e38))
405
+
406
+ ## [0.1.39](https://github.com/figorr/meteocat/compare/v0.1.38...v0.1.39) (2024-12-25)
407
+
408
+
409
+ ### Bug Fixes
410
+
411
+ * 0.1.39 ([be7e9f3](https://github.com/figorr/meteocat/commit/be7e9f394a02be59521fce9a20100d3091092358))
412
+ * add conditions constants ([95fa3bb](https://github.com/figorr/meteocat/commit/95fa3bba33722d2d976e1545bb58a7f97636ab7b))
413
+ * add MeteocatEntityCoordinator and def json to save files ([f5816cc](https://github.com/figorr/meteocat/commit/f5816cc71dd2d7f4900c796d482969742a67ca05))
414
+ * add MeteocatyEntityCoordinator and update async_remove_entry ([99a9883](https://github.com/figorr/meteocat/commit/99a98837de9923ba4a8604b5ff5ea6e628a51097))
415
+ * add translations to new condition sensor ([92d757c](https://github.com/figorr/meteocat/commit/92d757c82bf9c33bd392d16f74d666f806fc27cb))
416
+ * add weather entity ([914c407](https://github.com/figorr/meteocat/commit/914c4076457c8dd2ff1527ef83e5f62b911112a1))
417
+ * fix condition code ([04c6ea3](https://github.com/figorr/meteocat/commit/04c6ea3e668b19bad95141154ffa6910d4aa8f3a))
418
+ * fix is night code ([d50d587](https://github.com/figorr/meteocat/commit/d50d5871d89eb3ae20217e2070db61dcfc6c2503))
419
+ * fix uvi icon ([d16d452](https://github.com/figorr/meteocat/commit/d16d45282f5eae83f5a337a58d34d5c5e62bee6f))
420
+ * new condition sensor ([8f352fc](https://github.com/figorr/meteocat/commit/8f352fcff6f97e1bfe9ea49d22f03837b177f680))
421
+ * new repo file structure ([ac61261](https://github.com/figorr/meteocat/commit/ac612613e386f926eed526e2796cadd325a3fabc))
422
+ * new weather and condition coordinators ([f8307d8](https://github.com/figorr/meteocat/commit/f8307d8d8de915592c3a285e91dc8c79164953b5))
423
+ * new weather and condition coordinators ([4c457e8](https://github.com/figorr/meteocat/commit/4c457e87f17564fa50743064dfbdd922e4babc17))
424
+ * use await to save json files ([0945320](https://github.com/figorr/meteocat/commit/09453205bf891dcfef811c2628e72bf921aac8bb))
425
+
426
+ ## [0.1.38](https://github.com/figorr/meteocat/compare/v0.1.37...v0.1.38) (2024-12-18)
427
+
428
+
429
+ ### Bug Fixes
430
+
431
+ * 0.1.38 ([58014ef](https://github.com/figorr/meteocat/commit/58014ef56ca54f2b458fe6e142fbcf27cd8d211d))
432
+ * add degrees attribute translations ([341cf84](https://github.com/figorr/meteocat/commit/341cf849024f98ff1f31b66ec7ff6a2a39123148))
433
+ * add degrees property to wind direction ([9570a79](https://github.com/figorr/meteocat/commit/9570a7911d112624818da224369bacec1ee74902))
434
+
435
+ ## [0.1.37](https://github.com/figorr/meteocat/compare/v0.1.36...v0.1.37) (2024-12-17)
436
+
437
+
438
+ ### Bug Fixes
439
+
440
+ * 0.1.37 ([1e850d8](https://github.com/figorr/meteocat/commit/1e850d8e77d0e572a0bfb8ba01702ab3acf0437f))
441
+ * fix hour attribute translation ([31ccc6f](https://github.com/figorr/meteocat/commit/31ccc6fc9a1a51c441935682cbdc1af07cc6af5f))
442
+ * fix wind directions ([23bbf44](https://github.com/figorr/meteocat/commit/23bbf4465c79107e5326fc107b23cf4a0c71c70c))
443
+
444
+ ## [0.1.36](https://github.com/figorr/meteocat/compare/v0.1.35...v0.1.36) (2024-12-17)
445
+
446
+
447
+ ### Bug Fixes
448
+
449
+ * 0.1.36 ([73da4ed](https://github.com/figorr/meteocat/commit/73da4ed7c598a150528294e89c93407e33abfd24))
450
+ * add hour attribute to UVI sensor ([a365626](https://github.com/figorr/meteocat/commit/a365626aa2bb585ca9a835afcec6cea99e85a4bd))
451
+ * add hour attribute translation ([d50f8bb](https://github.com/figorr/meteocat/commit/d50f8bbbcb3c8867dedcbe51f065951f5dfab817))
452
+ * fix self. _config.entry from deprecated self. config.entry ([ed4bfeb](https://github.com/figorr/meteocat/commit/ed4bfebf0ea45bc63de000a21f6063a0cb9e499a))
453
+ * ignore uvi test ([cf35867](https://github.com/figorr/meteocat/commit/cf358675b1afce3e1ea1650414a22c2372af4b49))
454
+ * set coordinators to uvi sensor ([38288cc](https://github.com/figorr/meteocat/commit/38288cc75a30a1ad77a492dcb2b15592379e774f))
455
+ * set uvi coordinators ([1ea0432](https://github.com/figorr/meteocat/commit/1ea0432d6749cac96d45e52d3cf18e7a83e59739))
456
+ * update devs ([9274984](https://github.com/figorr/meteocat/commit/9274984154facd81bdeaf0e0050c870a08996b10))
457
+ * update devs ([44d7699](https://github.com/figorr/meteocat/commit/44d7699c4d3bde13f6145a5380eafc5c77818c45))
458
+ * use cached data when API failed ([f31bd10](https://github.com/figorr/meteocat/commit/f31bd10539e77f7d3e12bc27b3bf88cc9ab317d2))
459
+ * uvi sensor ([ee0b194](https://github.com/figorr/meteocat/commit/ee0b19461bdfacc26d493f9af0e27729e45ae545))
460
+
461
+ ## [0.1.35](https://github.com/figorr/meteocat/compare/v0.1.34...v0.1.35) (2024-12-14)
462
+
463
+
464
+ ### Bug Fixes
465
+
466
+ * 0.1.35 ([87adbc5](https://github.com/figorr/meteocat/commit/87adbc5c76941af1ff837f63920ca65164df38c2))
467
+ * fix station data json name ([2c411bd](https://github.com/figorr/meteocat/commit/2c411bd5d040d8c50bd00dae3c4b7858c049e522))
468
+
469
+ ## [0.1.34](https://github.com/figorr/meteocat/compare/v0.1.33...v0.1.34) (2024-12-14)
470
+
471
+
472
+ ### Bug Fixes
473
+
474
+ * 0.1.34 ([14c1437](https://github.com/figorr/meteocat/commit/14c1437a95fd41a014146fd63ce80892a2d4a284))
475
+ * fix data validation ([a2c4282](https://github.com/figorr/meteocat/commit/a2c428207b062a06c5c07377ab3bf8ffbc65d277))
476
+ * fix Feels Like round(1) ([6329807](https://github.com/figorr/meteocat/commit/63298077e5aa09cb61413b0578ccd7e4baeb5c51))
477
+ * remove data validation ([250e582](https://github.com/figorr/meteocat/commit/250e5825dbda556e3e8e0c2e4a8014993e1de705))
478
+ * set timeout and data validation ([b7dba2e](https://github.com/figorr/meteocat/commit/b7dba2e9e742bee04c8e16d3694c7ac647ec83ab))
479
+
480
+ ## [0.1.33](https://github.com/figorr/meteocat/compare/v0.1.32...v0.1.33) (2024-12-14)
481
+
482
+
483
+ ### Bug Fixes
484
+
485
+ * 0.1.33 ([461a423](https://github.com/figorr/meteocat/commit/461a423bd8596234bc182697d9f2725dd5234334))
486
+ * fix feels like options ([8e22c9e](https://github.com/figorr/meteocat/commit/8e22c9efd175d84eede50b4ce5c1f7abac14dc00))
487
+
488
+ ## [0.1.32](https://github.com/figorr/meteocat/compare/v0.1.31...v0.1.32) (2024-12-14)
489
+
490
+
491
+ ### Bug Fixes
492
+
493
+ * 0.1.32 ([7c6186f](https://github.com/figorr/meteocat/commit/7c6186fe81061013f6093355b042750fbc28b921))
494
+ * add LOGGER debug to FEELS LIKE ([a0cd0c4](https://github.com/figorr/meteocat/commit/a0cd0c495b1f01365a74d6262ed595921962b825))
495
+ * add translations names to sensors ([57a5a1c](https://github.com/figorr/meteocat/commit/57a5a1c734db1042b1085c8fb58140c1dc0ad1fb))
496
+ * add wind direction translations ([f4ec133](https://github.com/figorr/meteocat/commit/f4ec1339126d4da008e0cbc2a96fff8be3c6e081))
497
+
498
+ ## [0.1.31](https://github.com/figorr/meteocat/compare/v0.1.30...v0.1.31) (2024-12-13)
499
+
500
+
501
+ ### Bug Fixes
502
+
503
+ * 0.1.31 ([6d49197](https://github.com/figorr/meteocat/commit/6d4919717b09d4e38a3225bf9a33d1400a0227d0))
504
+ * add feels like sensor ([caca7a0](https://github.com/figorr/meteocat/commit/caca7a0d2bc53969db584eda2e2818321f3930fc))
505
+ * add feels like sensor ([ccecfae](https://github.com/figorr/meteocat/commit/ccecfae83f1a2e72a2438cf6a189bf5d5186d6b3))
506
+ * bump meteocatpy to 0.0.15 ([8d08b6f](https://github.com/figorr/meteocat/commit/8d08b6f66ac2ce5b029569a1538d524d3d7f50dc))
507
+
508
+ ## [0.1.30](https://github.com/figorr/meteocat/compare/v0.1.29...v0.1.30) (2024-12-12)
509
+
510
+
511
+ ### Bug Fixes
512
+
513
+ * 0.1.30 ([2095760](https://github.com/figorr/meteocat/commit/20957606eae28a97e82607136f97fde1abe38f81))
514
+ * add precipitation accumulated sensor ([b05090a](https://github.com/figorr/meteocat/commit/b05090a563656123464d95b17b01ba2d7cada20f))
515
+ * add precipitation_accumulated ([261d877](https://github.com/figorr/meteocat/commit/261d877cf9f68a2106687900951731ba6a4539eb))
516
+ * delete precipitation test ([845d721](https://github.com/figorr/meteocat/commit/845d721ff4e49a2fe79c5cdcf92698d52a6cff36))
517
+ * fix variables json ([df403b1](https://github.com/figorr/meteocat/commit/df403b12ab12cd357f087dc1dceda30c51e4c8f0))
518
+
519
+ ## [0.1.29](https://github.com/figorr/meteocat/compare/v0.1.28...v0.1.29) (2024-12-12)
520
+
521
+
522
+ ### Bug Fixes
523
+
524
+ * 0.1.29 ([f80cb9e](https://github.com/figorr/meteocat/commit/f80cb9eda9bd7d731489b51c161bc16a00ac57f0))
525
+ * bump meteocatpy to 0.0.14 ([74cc591](https://github.com/figorr/meteocat/commit/74cc591ac7e9911c77649a20088af15d3af2d350))
526
+ * remove cache ([8c4f29b](https://github.com/figorr/meteocat/commit/8c4f29b0b2c2cfa33f2b45f72bed57bf45b9a3dd))
527
+ * remove cache tests ([6082096](https://github.com/figorr/meteocat/commit/6082096a92ade5a033e0493a819b20e950aff7a3))
528
+
529
+ ## [0.1.28](https://github.com/figorr/meteocat/compare/v0.1.27...v0.1.28) (2024-12-11)
530
+
531
+
532
+ ### Bug Fixes
533
+
534
+ * 0.1.28 ([2c329cb](https://github.com/figorr/meteocat/commit/2c329cb960aa7bd6ec6bec0c6145db791349758f))
535
+ * bump meteocatpy to 0.0.13 ([52c11c6](https://github.com/figorr/meteocat/commit/52c11c66f66b0ebff40fea58a8a5c4d4a74482be))
536
+ * fix entity_id ([fa61841](https://github.com/figorr/meteocat/commit/fa61841ba3857a79d6b97d0e0ed12a543525c205))
537
+ * fix name sensors to include station_id ([7b868fd](https://github.com/figorr/meteocat/commit/7b868fd0eea66f8ec2655e92137d9ab6dd9d0149))
538
+ * ignore test_call_api ([976826a](https://github.com/figorr/meteocat/commit/976826a978889fcec304a8b3620ccf738e1a1946))
539
+ * save variables.json in assets folder ([d2c2234](https://github.com/figorr/meteocat/commit/d2c2234621aaabbbdc65367429b56b304855f710))
540
+ * setup cache folder and new async_remove_entry ([4dfddc0](https://github.com/figorr/meteocat/commit/4dfddc03a64f82582b39eff47870c561d0775d6d))
541
+
542
+ ## [0.1.27](https://github.com/figorr/meteocat/compare/v0.1.26...v0.1.27) (2024-12-10)
543
+
544
+
545
+ ### Bug Fixes
546
+
547
+ * 0.1.27 ([99feff1](https://github.com/figorr/meteocat/commit/99feff14eb85201028c1e6156a13354b05b446c3))
548
+ * bump meteocatpy to 0.0.11 ([03b9485](https://github.com/figorr/meteocat/commit/03b9485b0486a2bef7f0b7f3c0bf9bf1fca3da8c))
549
+ * bump meteocatpy to 0.0.9 ([1fb0de9](https://github.com/figorr/meteocat/commit/1fb0de97181b802494cb8371eb472a37c9a51f40))
550
+ * delete .meteocat_cache ([7941005](https://github.com/figorr/meteocat/commit/79410050e68667ca8162ff6575c0541a5f8b6207))
551
+ * fix python version ([07e3264](https://github.com/figorr/meteocat/commit/07e3264f5dde756c322ca431f4b895a211be998f))
552
+ * fix python version ([32f539b](https://github.com/figorr/meteocat/commit/32f539bb33a343881ebd26eb7ad3f12a58ecbed4))
553
+ * fix python version ([2ff2dfc](https://github.com/figorr/meteocat/commit/2ff2dfcfa597d9fbba0fc59c330f975c6b00a55b))
554
+ * ignore cache tests ([238d148](https://github.com/figorr/meteocat/commit/238d148630a5f84123f8d2d5db66dbd6e6b372f8))
555
+ * set variables cache ([ba77035](https://github.com/figorr/meteocat/commit/ba7703511c4e0604bd5d87f7d07ce487be67bafe))
556
+ * set variables cache ([ba55568](https://github.com/figorr/meteocat/commit/ba55568526fe74e83feaf4d7a0cd5127334ee139))
557
+
558
+ ## [0.1.26](https://github.com/figorr/meteocat/compare/v0.1.25...v0.1.26) (2024-12-09)
559
+
560
+
561
+ ### Bug Fixes
562
+
563
+ * 0.1.26 ([9d6b083](https://github.com/figorr/meteocat/commit/9d6b083205d12b628d9a62b0c8c558c0ca9d39e2))
564
+ * add station timestamp constant ([6bd0569](https://github.com/figorr/meteocat/commit/6bd0569030361b89c532ef49faae4b938c1dcf8a))
565
+ * add station timestamp sensor ([ac8b98b](https://github.com/figorr/meteocat/commit/ac8b98bcb225d1348b450b619879b6f636a213da))
566
+ * fix async_remove_entry ([ba28daa](https://github.com/figorr/meteocat/commit/ba28daa87271b6286cf22cd2bcc39422f71b668a))
567
+ * fix entity_id names ([b670d8d](https://github.com/figorr/meteocat/commit/b670d8d53888dc93f371ba7c0e4ed2cdad7ac64b))
568
+ * fix loop when saving JSON ([151dbdd](https://github.com/figorr/meteocat/commit/151dbddd932313831028e1e3e17780dd33d44640))
569
+ * sensor names ([5244f7f](https://github.com/figorr/meteocat/commit/5244f7f8e9d332bfd6adf9e65c053e4b12d8a109))
570
+
571
+ ## [0.1.25](https://github.com/figorr/meteocat/compare/v0.1.24...v0.1.25) (2024-12-08)
572
+
573
+
574
+ ### Bug Fixes
575
+
576
+ * 0.1.25 ([5ba0823](https://github.com/figorr/meteocat/commit/5ba0823db1da999d61c5a4d43733dff5db238ea4))
577
+ * add town and station sensors ([372383f](https://github.com/figorr/meteocat/commit/372383f1bd17ba8e385fef638cf3c1f58515dbaf))
578
+
579
+ ## [0.1.24](https://github.com/figorr/meteocat/compare/v0.1.23...v0.1.24) (2024-12-08)
580
+
581
+
582
+ ### Bug Fixes
583
+
584
+ * 0.1.24 ([87b8b51](https://github.com/figorr/meteocat/commit/87b8b519f78ba97a3e9fe01ac1ee85c0efd0a879))
585
+ * add function to save station_data.json ([e78d872](https://github.com/figorr/meteocat/commit/e78d872938c002fe363c2634b1d8d171ea1e2d6e))
586
+ * add solar global irradiance ([dc757b0](https://github.com/figorr/meteocat/commit/dc757b0a8df6ee971c01e290568730cdf3eb54b0))
587
+ * add solar global irradiance sensor ([d0e7373](https://github.com/figorr/meteocat/commit/d0e737302f9d7889a698468ba6ffb881d8da17c2))
588
+ * bump meteocatpy to 0.0.8 ([c280c06](https://github.com/figorr/meteocat/commit/c280c06c7c3c0703e12e94b19108537bbd03baa0))
589
+ * fix constants ([5d4e0b7](https://github.com/figorr/meteocat/commit/5d4e0b77336f1e051a04a45ccaace40ada3ed33a))
590
+
591
+ ## [0.1.23](https://github.com/figorr/meteocat/compare/v0.1.22...v0.1.23) (2024-12-07)
592
+
593
+
594
+ ### Bug Fixes
595
+
596
+ * 0.1.23 ([dda17ae](https://github.com/figorr/meteocat/commit/dda17ae1d73d31879d029d4c7a8f12a1a74f2379))
597
+ * fix sensor data recovery ([564ceb7](https://github.com/figorr/meteocat/commit/564ceb7ff372acd7d2d035272e9784ad583ccece))
598
+ * fix unis of measurement ([c65bce2](https://github.com/figorr/meteocat/commit/c65bce26add578bc32ebb05b82381aa72dfbf9a6))
599
+
600
+ ## [0.1.22](https://github.com/figorr/meteocat/compare/v0.1.21...v0.1.22) (2024-12-07)
601
+
602
+
603
+ ### Bug Fixes
604
+
605
+ * 0.1.22 ([54b39fa](https://github.com/figorr/meteocat/commit/54b39fad5e645673c2d46ca3209e82d92db03b95))
606
+ * add platforms ([fbbad49](https://github.com/figorr/meteocat/commit/fbbad49a6de960719d0c4f6a734c6dd1e0f3dfb5))
607
+ * bump meteocatpy to 0.0.7 ([f00b48d](https://github.com/figorr/meteocat/commit/f00b48da53e0f309686fa7214c60647bb0965495))
608
+ * fix coordinator to use entry_data ([5ca5050](https://github.com/figorr/meteocat/commit/5ca50501e04e8b3f6cb222f0f183dea1cc726242))
609
+ * fix UV icon ([f2c86e3](https://github.com/figorr/meteocat/commit/f2c86e3e03df987e40bdf955113f2235db347229))
610
+
611
+ ## [0.1.21](https://github.com/figorr/meteocat/compare/v0.1.20...v0.1.21) (2024-12-06)
612
+
613
+
614
+ ### Bug Fixes
615
+
616
+ * 0.1.21 ([a4df744](https://github.com/figorr/meteocat/commit/a4df7445f5dc05fe0a74c9d949fa551a77af6cf0))
617
+ * delete node_modules ([3b817a5](https://github.com/figorr/meteocat/commit/3b817a53c5fd6dcc44f17865f6fb39bb79c032ab))
618
+ * new repo file structure ([7ef2dbe](https://github.com/figorr/meteocat/commit/7ef2dbe67bc41c77e0f931d833578540dafe0ca8))
619
+ * semantic-release job ([a78eb5c](https://github.com/figorr/meteocat/commit/a78eb5c6dbbaef556a40053f98257906adeeecaa))
620
+
621
+
622
+ ## v0.1.14 (2024-11-22)
623
+
624
+ ### Bug Fixes
625
+
626
+ - 0.1.14
627
+ ([`aca7650`](https://github.com/figorr/meteocat/commit/aca76500f09c65e50f394a23cfe48e1b3491dfbc))
628
+
629
+ - Add LICENSE
630
+ ([`9369498`](https://github.com/figorr/meteocat/commit/93694982ed4cc4960797c095610e78b24c8dc3be))
631
+
632
+ - Ignore scripts
633
+ ([`47dc6c4`](https://github.com/figorr/meteocat/commit/47dc6c4d29ca7c7acfdb576ad248e65cda34b9b5))
634
+
635
+ - Publish job
636
+ ([`7b830c6`](https://github.com/figorr/meteocat/commit/7b830c63f13f60bfbb8ad8d911a10638a74fb967))
637
+
638
+ - Poetry update
639
+ ([`aaf27ae`](https://github.com/figorr/meteocat/commit/aaf27aed177c6b94be32550a31ae4909c2c43895))
640
+
641
+ - Add aiofiles & voluptuous
642
+ ([`2786de5`](https://github.com/figorr/meteocat/commit/2786de5ada6567c57a290979064f40fa3464aba2))
643
+
644
+ - Fix constants and placeholders
645
+ ([`bf89109`](https://github.com/figorr/meteocat/commit/bf89109a6ea0a5cae65f86d39f4c1c24b138174c))
646
+
647
+ - Add municipis url
648
+ ([`4815daa`](https://github.com/figorr/meteocat/commit/4815daaedec0f47b02e484d1c4dd0cb520c0044b))
649
+
650
+ - Fix repo structure
651
+ ([`b501cad`](https://github.com/figorr/meteocat/commit/b501cad9e80911d0d75aefed8a267c6da0e519af))
652
+
653
+ - Add translations
654
+ ([`8e849b8`](https://github.com/figorr/meteocat/commit/8e849b8a6eb13f586c13c3c27aebd98cd486a929))
655
+
656
+ - Local scripts
657
+ ([`d2a6b72`](https://github.com/figorr/meteocat/commit/d2a6b72cba2ee64c97792c0f05b0c2a1f750d8dd))
658
+
659
+
660
+ ## v0.1.13 (2024-11-20)
661
+
662
+ ### Bug Fixes
663
+
664
+ - Add translations
665
+ ([`119d539`](https://github.com/figorr/meteocat/commit/119d539d3334d4dbae8e4d13ae47639e7ccf0064))
666
+
667
+ - Fix include
668
+ ([`56032ef`](https://github.com/figorr/meteocat/commit/56032ef488d2565e65421a556509f8e34b3fba10))
669
+
670
+ - Fix file tree structure
671
+ ([`911ab32`](https://github.com/figorr/meteocat/commit/911ab32d625212a33e963464821b4502dfd036fa))
672
+
673
+ - Version 0.1.10
674
+ ([`688f86d`](https://github.com/figorr/meteocat/commit/688f86da987efe8b8d429a615578d2558efdc985))
675
+
676
+ - Remove files folder
677
+ ([`6f62ea4`](https://github.com/figorr/meteocat/commit/6f62ea48c679f5e61c93e989af86d12102185e01))
678
+
679
+ - Fix .gitignore new repository structure
680
+ ([`f603248`](https://github.com/figorr/meteocat/commit/f603248b3d69b023a664a8d578a4771ceb34162b))
681
+
682
+ - Fix repository structure
683
+ ([`9ef2514`](https://github.com/figorr/meteocat/commit/9ef2514be5396c11c26945024548aeec93fb50f3))
684
+
685
+ - Fix async_setup
686
+ ([`e0605c7`](https://github.com/figorr/meteocat/commit/e0605c7f3cc3fa7b0875867f6880185684a57778))
687
+
688
+ - Jobs
689
+ ([`43321f1`](https://github.com/figorr/meteocat/commit/43321f1f40c04d210ece3b6f3a53378d338971e5))
690
+
691
+ - Semnatic_job
692
+ ([`5444b01`](https://github.com/figorr/meteocat/commit/5444b01bd5d89b5bfe0c85315195fb0be797e44c))
693
+
694
+ - Testing semantic_job
695
+ ([`bb43877`](https://github.com/figorr/meteocat/commit/bb43877cab2d3e0823883efc4ca9117d0cad3b7e))
696
+
697
+ - Folder location
698
+ ([`ea225a2`](https://github.com/figorr/meteocat/commit/ea225a24c62df29f56e33e5930d5c7af140b114f))
699
+
700
+ - Folder location
701
+ ([`478c4f0`](https://github.com/figorr/meteocat/commit/478c4f0d8eed498789d7626851665f7c8a3357b4))
702
+
703
+ - .gitignore
704
+ ([`0af4025`](https://github.com/figorr/meteocat/commit/0af4025312267ae9e9bb69a23126bf7ea3216fb2))
705
+
706
+ - Semantic_job git push
707
+ ([`daa4cc0`](https://github.com/figorr/meteocat/commit/daa4cc054caddfad43c54098a807a45a1a045b92))
708
+
709
+ - Locations.py message
710
+ ([`a05abfb`](https://github.com/figorr/meteocat/commit/a05abfb560636aef5ba3c264e2f2b0e68b637e92))
711
+
712
+ - Municipis_list name
713
+ ([`84e0dbb`](https://github.com/figorr/meteocat/commit/84e0dbb30eade0beaf11a4b356b7654cbcc32792))
714
+
715
+ - Locations list
716
+ ([`1abe8dc`](https://github.com/figorr/meteocat/commit/1abe8dcb8ff3558be72d9b9bf124121f19d38829))
717
+
718
+ - Semantic_job
719
+ ([`d57c77c`](https://github.com/figorr/meteocat/commit/d57c77c8d25d09920a51f902af04ff4a95e4c7ce))
720
+
721
+ - Fix automatic version update
722
+ ([`2708da0`](https://github.com/figorr/meteocat/commit/2708da07b53305826a2c652e7495a8c3dad79f7b))
723
+
724
+ - Fix updated_content sintaxis
725
+ ([`3e9be4f`](https://github.com/figorr/meteocat/commit/3e9be4f3d2bee8857b9e9cb6a6b7bb254b8b544c))
726
+
727
+ - Fix version print
728
+ ([`ebfeb99`](https://github.com/figorr/meteocat/commit/ebfeb9937e448b5b858980cde0a40a17fc56b1ef))
729
+
730
+ - Version at __init__.py
731
+ ([`6171eaa`](https://github.com/figorr/meteocat/commit/6171eaa29d16474b3fc24bd5a2cf97db614c2d10))
732
+
733
+ - Update_version script
734
+ ([`3c2c641`](https://github.com/figorr/meteocat/commit/3c2c6418e1aeb6f78c797302ebe15cadee9f8d6f))
735
+
736
+ - Version.py
737
+ ([`e620c1b`](https://github.com/figorr/meteocat/commit/e620c1b4808807a3475f60708906689806ff58cd))
738
+
739
+ - Set version_variable to version.py
740
+ ([`9a624db`](https://github.com/figorr/meteocat/commit/9a624db6b2c8efb2ec7fd93499a01ce71b2ca601))
741
+
742
+ - Disable gitlab_job
743
+ ([`69ced63`](https://github.com/figorr/meteocat/commit/69ced63a2c5e100bc31120c29925575908f5143a))
744
+
745
+ - Fix bugs
746
+ ([`3fe3492`](https://github.com/figorr/meteocat/commit/3fe3492ed9fc347ab52a83cafd957a7a17c59e1c))
747
+
748
+ - Fix jobs
749
+ ([`d60ee29`](https://github.com/figorr/meteocat/commit/d60ee298a2f3efac0c253b3b1ee58ff3440974a2))
750
+
751
+ - Fix gitlab_job
752
+ ([`d7f7c2c`](https://github.com/figorr/meteocat/commit/d7f7c2c055bfac4d6064ca2c1ae13fb1cac2e1f1))
753
+
754
+ - Fix Jobs
755
+ ([`3d9566c`](https://github.com/figorr/meteocat/commit/3d9566c0ec75dad55973c8ca2f355902cd484f93))
756
+
757
+ - Fix semantic-release test
758
+ ([`1ffa9d4`](https://github.com/figorr/meteocat/commit/1ffa9d4c2237898109d4794040579abb6e7a3e56))
759
+
760
+ - Fix semantic-release test
761
+ ([`7a56521`](https://github.com/figorr/meteocat/commit/7a56521a3b7f38314894bdab61e6938dcf6dd7f3))
762
+
763
+ - Test semantic-release
764
+ ([`7f3e017`](https://github.com/figorr/meteocat/commit/7f3e017f301cfa7d62f480050cd7875e7e9279c3))
765
+
766
+ - Fix version
767
+ ([`ab6365a`](https://github.com/figorr/meteocat/commit/ab6365a325273589e9f14b3e3819e585d5f56bad))
768
+
769
+ - Fix gitlab_job
770
+ ([`d11870a`](https://github.com/figorr/meteocat/commit/d11870ac9fe9ba727563fcb7515c2c0cacb0fd59))
771
+
772
+ - Fix Gitlab job
773
+ ([`0d619fd`](https://github.com/figorr/meteocat/commit/0d619fd3d78c6081ab2db126658cbef3dc492f59))
774
+
775
+ - Fix gitlab_job
776
+ ([`795d13b`](https://github.com/figorr/meteocat/commit/795d13b1a8706a324a732151859c8f59cabf62a8))
777
+
778
+ - Setup.py version
779
+ ([`67699de`](https://github.com/figorr/meteocat/commit/67699de3aa561ccc0892bb83810628a1c97a65f8))
780
+
781
+ - Gitlab job
782
+ ([`14bf324`](https://github.com/figorr/meteocat/commit/14bf32407a7222a4d8a319c17bee483ea54dfd31))
783
+
784
+ - Gitignore update
785
+ ([`c0f949a`](https://github.com/figorr/meteocat/commit/c0f949abe67e312b6db250d04963caf06fb311eb))
786
+
787
+ - Add version.py file
788
+ ([`7a8364b`](https://github.com/figorr/meteocat/commit/7a8364bd98c9a3cf2267a90072d1f8933b7d559e))
789
+
790
+ - Add release file
791
+ ([`66a7c42`](https://github.com/figorr/meteocat/commit/66a7c427da442233a2b27188336272f9ced41886))
792
+
793
+ - Pypi API TOKEN
794
+ ([`0a53bca`](https://github.com/figorr/meteocat/commit/0a53bcac4afa46f0a4b3847d8809aae75be4e31d))
795
+
796
+ - 0.1.6
797
+ ([`378f4ee`](https://github.com/figorr/meteocat/commit/378f4eeb822dd54e6e614fe50173a8012a5b33a7))
798
+
799
+ - Add PyPi job
800
+ ([`cdd6e48`](https://github.com/figorr/meteocat/commit/cdd6e48fbc47b2d8090425c9af800110b3188bf2))
801
+
802
+ - 0.1.4
803
+ ([`e3028ed`](https://github.com/figorr/meteocat/commit/e3028edb0ff5f37a280616a9d24cc94165833883))
804
+
805
+ - Twine dep
806
+ ([`3df0717`](https://github.com/figorr/meteocat/commit/3df07175ae8a807c3ab9f0ee1a1ac5421bfaa49b))
807
+
808
+ - Gh job
809
+ ([`545034e`](https://github.com/figorr/meteocat/commit/545034e7cbbd38417247e6c21d99d1be93ab6b28))
810
+
811
+ - Fix push to GH
812
+ ([`5db9892`](https://github.com/figorr/meteocat/commit/5db989256b06ec5e94edd3c8825a8e26758a45cc))
813
+
814
+ - Virtual env
815
+ ([`62852bf`](https://github.com/figorr/meteocat/commit/62852bff62585b22744651515f58ded7ffa02515))
816
+
817
+ - Fix Bugs
818
+ ([`0dbd7dc`](https://github.com/figorr/meteocat/commit/0dbd7dc15ce12d100151dedf1ace7f8415f7a819))
819
+
820
+ - 0.1.3
821
+ ([`009e9b6`](https://github.com/figorr/meteocat/commit/009e9b62ce459334ad5aed1b36061e8a059577f3))
822
+
823
+ - Fix Jobs
824
+ ([`47ef9ae`](https://github.com/figorr/meteocat/commit/47ef9ae50c6a8f092afbff6b26cfb4bcd384a579))
825
+
826
+ - Fix GitHub Job
827
+ ([`59114e2`](https://github.com/figorr/meteocat/commit/59114e273294f63abd7072eb39278c5b819bc56a))
828
+
829
+ - Update README
830
+ ([`c29929e`](https://github.com/figorr/meteocat/commit/c29929e572969cff2ae07cdc56b4812e169ac7de))
831
+
832
+ - Fix semantic-release
833
+ ([`2d2c192`](https://github.com/figorr/meteocat/commit/2d2c1928445eb65199a7f8693d5fad8bd81770fd))
834
+
835
+ - Fix Jobs
836
+ ([`15ec59b`](https://github.com/figorr/meteocat/commit/15ec59b068cd27de73fe89b7f5e2143f79d52e9b))
837
+
838
+ - Fix version job
839
+ ([`7317949`](https://github.com/figorr/meteocat/commit/7317949f6c6cbc8ea7933b6d6c8567b431bd3924))
840
+
841
+ - Fix version_job
842
+ ([`278d896`](https://github.com/figorr/meteocat/commit/278d896480df2c13e8ff17657fd1fe5935e2e363))
843
+
844
+ - Fix version_job
845
+ ([`a0fdd80`](https://github.com/figorr/meteocat/commit/a0fdd80233129c40a424d8dde509444da105e0a9))
846
+
847
+ - Fix semantic-release no-push
848
+ ([`5fedeaa`](https://github.com/figorr/meteocat/commit/5fedeaab3ef2516ccc781cccd091971b43a165e8))
849
+
850
+ - Fix version_job
851
+ ([`010252a`](https://github.com/figorr/meteocat/commit/010252a8506b43649dcdc2bdafc8e8c0af95e363))
852
+
853
+ - Fix semantic-release master
854
+ ([`2638433`](https://github.com/figorr/meteocat/commit/26384332a90e41b1e8e1bfd63e0eba66f270ee09))
855
+
856
+ - Fix version_job
857
+ ([`56459f6`](https://github.com/figorr/meteocat/commit/56459f6bb581c41fde69d1cc2bcc8a85181de749))
858
+
859
+ - Fix version_job
860
+ ([`b825a5c`](https://github.com/figorr/meteocat/commit/b825a5cbba56f27bc4474c226a010d9d5a9c3bff))
861
+
862
+ - Fix semantic-release
863
+ ([`82e90a4`](https://github.com/figorr/meteocat/commit/82e90a45af3cbe6432d3a8b7532607fb7d819734))
864
+
865
+ - Gitlab release Job
866
+ ([`35e05f9`](https://github.com/figorr/meteocat/commit/35e05f9e0067104563260ff34e340c0bb4d89aa3))
867
+
868
+ - Fix authentication
869
+ ([`af5c349`](https://github.com/figorr/meteocat/commit/af5c349f51bbfad972250840b1b81451389a4f4b))
870
+
871
+ - Fix job bugs
872
+ ([`11c169a`](https://github.com/figorr/meteocat/commit/11c169a05b348dd5cb7fb9a3281e541323dd2a1f))
873
+
874
+ - Fix Jobs
875
+ ([`2d7204a`](https://github.com/figorr/meteocat/commit/2d7204a7e95ea75db0bed7dd63f096039f4af9a2))
876
+
877
+ - Fix bugs
878
+ ([`52f3c0f`](https://github.com/figorr/meteocat/commit/52f3c0f34016c8a8002e2356bf60c85c32548c7f))
879
+
880
+ - Fix jobs
881
+ ([`c9d5d3f`](https://github.com/figorr/meteocat/commit/c9d5d3fea8659cca9ef3c05f8a99e576ed75c4d5))
882
+
883
+ - Fix jobs
884
+ ([`6cbfcaa`](https://github.com/figorr/meteocat/commit/6cbfcaae0344da0981f66703001ef69b047ba3ef))
885
+
886
+ - Fix script
887
+ ([`ebcf377`](https://github.com/figorr/meteocat/commit/ebcf377afc020865329ed601ff21bb07991487b0))
888
+
889
+ - Fix variables
890
+ ([`6c28da8`](https://github.com/figorr/meteocat/commit/6c28da86ab60d441fe7cc2a923cefec805b25f77))
891
+
892
+ - Fix semantic-release
893
+ ([`2ab754e`](https://github.com/figorr/meteocat/commit/2ab754e9f65a346f188b6ca57a8043503eee7b6d))
894
+
895
+ - Fix semantic-release
896
+ ([`162685b`](https://github.com/figorr/meteocat/commit/162685b2c1fd692802ac4d18bda7b394bbdf9a72))
897
+
898
+ - Create .releaserc for semantic-release
899
+ ([`8d1859b`](https://github.com/figorr/meteocat/commit/8d1859b928964ed16d83c26de42c179a1597af53))
900
+
901
+ - Fix release_job
902
+ ([`60c4d19`](https://github.com/figorr/meteocat/commit/60c4d19afd2a65944267bb9c25c7f62f39cc7ebb))
903
+
904
+ - Update release job
905
+ ([`0070caf`](https://github.com/figorr/meteocat/commit/0070caff7cc1c9ddbf11b03d63380f6a3375cde4))
906
+
907
+ - Delete deploy job
908
+ ([`69b049c`](https://github.com/figorr/meteocat/commit/69b049cc53ab62ddd45636e0bc5f5886561093ee))
909
+
910
+ - Fix Jobs
911
+ ([`ff9ac05`](https://github.com/figorr/meteocat/commit/ff9ac05f34db29d0cfd69c25f82b2f7ad916bfd7))
912
+
913
+ - Delete deploy_job
914
+ ([`756f399`](https://github.com/figorr/meteocat/commit/756f399280bcf4a66c36bcc19bdceeeb25e25a60))
915
+
916
+ - Fix release job
917
+ ([`877ced7`](https://github.com/figorr/meteocat/commit/877ced7453d7656cc9f406efc73cffd10cb31d13))
918
+
919
+ - Automatic upload to PyPi
920
+ ([`ef35667`](https://github.com/figorr/meteocat/commit/ef35667c560cff73674881f4463918626abdce7f))
921
+
922
+ - Fix release job
923
+ ([`4dda574`](https://github.com/figorr/meteocat/commit/4dda574b4828f3cccd3238b18fe26e4a4940a7fc))
924
+
925
+ - Fix release job
926
+ ([`e8b5dd2`](https://github.com/figorr/meteocat/commit/e8b5dd2ba8d09905e010f3003e22a73b7f6bf1d3))
927
+
928
+ - Fix python-semantic-release version
929
+ ([`a539aa0`](https://github.com/figorr/meteocat/commit/a539aa04afea83b084e07bbd44ee89adbd9247c2))
930
+
931
+ - Fix bump_and_publish job
932
+ ([`c6bf435`](https://github.com/figorr/meteocat/commit/c6bf435e69f01d2f48d86206fb03b06f48e41d90))
933
+
934
+ - Release
935
+ ([`d485379`](https://github.com/figorr/meteocat/commit/d4853794f10a9fd3f7f64f68656791617d38cd3a))
936
+
937
+ - Fix release_job
938
+ ([`5246274`](https://github.com/figorr/meteocat/commit/5246274cbecda1ff345e10c2f53b8d4c347a3954))
939
+
940
+ - Fix release_job
941
+ ([`e42cdb8`](https://github.com/figorr/meteocat/commit/e42cdb8d3139739249422ef2ca5e9dd65cfcd745))
942
+
943
+ - Fix release_job
944
+ ([`cd8417a`](https://github.com/figorr/meteocat/commit/cd8417a182746ec09194ab147b974b7e412b2501))
945
+
946
+ - Fix release_job
947
+ ([`4b7f17c`](https://github.com/figorr/meteocat/commit/4b7f17c9715ef0d79f1d29b96750df96b380c906))
948
+
949
+ - Fix release_job
950
+ ([`5ab7774`](https://github.com/figorr/meteocat/commit/5ab77745a963dc57c65e69306be2f68d43260f69))
951
+
952
+ - Release_job
953
+ ([`acc447e`](https://github.com/figorr/meteocat/commit/acc447e2b3bdcc864e670e9796ac43342a2091cf))
954
+
955
+ - Manual install Python 3 and pip
956
+ ([`b6070f4`](https://github.com/figorr/meteocat/commit/b6070f41fd5aa94ca005213d831a6ca39b5203ca))
957
+
958
+ - Add node:20
959
+ ([`2acafeb`](https://github.com/figorr/meteocat/commit/2acafeb30af036e6fd83fa286def41de4a2b0a8e))
960
+
961
+ - Delete requirements.txt
962
+ ([`a5cf2e0`](https://github.com/figorr/meteocat/commit/a5cf2e0c379b646abf09b563f7ad3db1bbf42951))
963
+
964
+ - _logger import
965
+ ([`0f4dc39`](https://github.com/figorr/meteocat/commit/0f4dc39144d5897da223111d1c8783eef5a4d6f8))
966
+
967
+ - Update locations.py folder location
968
+ ([`d7113d5`](https://github.com/figorr/meteocat/commit/d7113d52e40161c6439ee9f20bda20ee3b302c77))
969
+
970
+ - Setup semantic-release
971
+ ([`933c360`](https://github.com/figorr/meteocat/commit/933c36068fc86fca7da77c361f632511d0f2c5db))