date-holidays 3.23.4 → 3.23.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/data/countries/HU.yaml +5 -0
- package/data/holidays.json +10 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/umd.min.js +1 -1
- package/dist/umd.min.js.map +1 -1
- package/lib/data.cjs +10 -1
- package/package.json +3 -4
- package/scripts/holidays2json.cjs +1 -2
- package/src/data.js +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.23.6](https://github.com/commenthol/date-holidays/compare/3.23.5...3.23.6) (2024-01-25)
|
|
4
|
+
|
|
5
|
+
- fix(#452): replace lodash.pick with lodash [d511e669](https://github.com/commenthol/date-holidays/commit/d511e669381b42f50e8d305fc1a4fc14ca947a2e)
|
|
6
|
+
|
|
7
|
+
## [3.23.5](https://github.com/commenthol/date-holidays/compare/3.23.4...3.23.5) (2024-01-20)
|
|
8
|
+
|
|
9
|
+
- chore: disabling dtslint temporarily [a7c91e52](https://github.com/commenthol/date-holidays/commit/a7c91e52e94d5f19cfc7d011b3cc4fd6c5d0df62)
|
|
10
|
+
- fix(HU): good-friday is public holiday since 2017 [ebe4a95c](https://github.com/commenthol/date-holidays/commit/ebe4a95c60c7656c223ac58873444b8724f821d2)
|
|
11
|
+
|
|
3
12
|
## [3.23.4](https://github.com/commenthol/date-holidays/compare/3.23.3...3.23.4) (2024-01-20)
|
|
4
13
|
|
|
5
14
|
- fix(ZA): Add ZA Rugby World Cup Win Public Holiday [b169fcfb](https://github.com/commenthol/date-holidays/commit/b169fcfbf01dd07b34fac82547674fe9cd8cc34a)
|
package/data/countries/HU.yaml
CHANGED
|
@@ -36,6 +36,11 @@ holidays:
|
|
|
36
36
|
en: Memorial Day for the Victims of the Holocaust
|
|
37
37
|
hu: A holokauszt áldozatainak emléknapja
|
|
38
38
|
type: observance
|
|
39
|
+
easter -2:
|
|
40
|
+
_name: easter -2
|
|
41
|
+
type: public
|
|
42
|
+
active:
|
|
43
|
+
- from: "2017-01-01"
|
|
39
44
|
easter:
|
|
40
45
|
_name: easter
|
|
41
46
|
type: public
|
package/data/holidays.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2024-01-
|
|
2
|
+
"version": "2024-01-25",
|
|
3
3
|
"license": "CC-BY-SA-3",
|
|
4
4
|
"holidays": {
|
|
5
5
|
"AD": {
|
|
@@ -11923,6 +11923,15 @@
|
|
|
11923
11923
|
},
|
|
11924
11924
|
"type": "observance"
|
|
11925
11925
|
},
|
|
11926
|
+
"easter -2": {
|
|
11927
|
+
"_name": "easter -2",
|
|
11928
|
+
"type": "public",
|
|
11929
|
+
"active": [
|
|
11930
|
+
{
|
|
11931
|
+
"from": "2017-01-01"
|
|
11932
|
+
}
|
|
11933
|
+
]
|
|
11934
|
+
},
|
|
11926
11935
|
"easter": {
|
|
11927
11936
|
"_name": "easter",
|
|
11928
11937
|
"type": "public"
|