meteocat 3.1.0 → 4.0.0

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