date-holidays 3.14.6 → 3.14.7
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 +4 -0
- package/data/countries/SG.yaml +12 -0
- package/data/holidays.json +15 -3
- 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 +15 -3
- package/package.json +2 -1
- package/src/data.js +15 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.14.7](https://github.com/commenthol/date-holidays/compare/3.14.6...3.14.7) (2022-04-14)
|
|
4
|
+
|
|
5
|
+
- fix: update SG Holidays [02f5229f](https://github.com/commenthol/date-holidays/commit/02f5229f52795dff15b5dfb618665c76c282bdf0)
|
|
6
|
+
|
|
3
7
|
## [3.14.6](https://github.com/commenthol/date-holidays/compare/3.14.5...3.14.6) (2022-04-09)
|
|
4
8
|
|
|
5
9
|
- test(RU,#320): fix tests for removal of flag day [19f87a10](https://github.com/commenthol/date-holidays/commit/19f87a10856ab2257982fd8ad0447734f2146816)
|
package/data/countries/SG.yaml
CHANGED
|
@@ -52,10 +52,22 @@ holidays:
|
|
|
52
52
|
_name: 1 Shawwal
|
|
53
53
|
name:
|
|
54
54
|
en: Hari Raya Puasa
|
|
55
|
+
# Revision from SG gov
|
|
56
|
+
# @source https://www.humanresourcesonline.net/singapore-s-revised-public-holiday-list-for-2022-new-dates-for-hari-raya-puasa-and-haji
|
|
57
|
+
disable:
|
|
58
|
+
- "2022-05-02"
|
|
59
|
+
enable:
|
|
60
|
+
- "2022-05-03"
|
|
55
61
|
10 Dhu al-Hijjah:
|
|
56
62
|
_name: 10 Dhu al-Hijjah
|
|
57
63
|
name:
|
|
58
64
|
en: Hari Raya Haji
|
|
65
|
+
# Revision from SG gov
|
|
66
|
+
# @source https://www.humanresourcesonline.net/singapore-s-revised-public-holiday-list-for-2022-new-dates-for-hari-raya-puasa-and-haji
|
|
67
|
+
disable:
|
|
68
|
+
- "2022-07-09"
|
|
69
|
+
enable:
|
|
70
|
+
- "2022-07-10"
|
|
59
71
|
# @attrib https://en.wikipedia.org/wiki/Vesak
|
|
60
72
|
# date if sunday then next monday
|
|
61
73
|
"2001-05-07":
|
package/data/holidays.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2022-04-
|
|
2
|
+
"version": "2022-04-14",
|
|
3
3
|
"license": "CC-BY-SA-3",
|
|
4
4
|
"holidays": {
|
|
5
5
|
"AD": {
|
|
@@ -18125,13 +18125,25 @@
|
|
|
18125
18125
|
"_name": "1 Shawwal",
|
|
18126
18126
|
"name": {
|
|
18127
18127
|
"en": "Hari Raya Puasa"
|
|
18128
|
-
}
|
|
18128
|
+
},
|
|
18129
|
+
"disable": [
|
|
18130
|
+
"2022-05-02"
|
|
18131
|
+
],
|
|
18132
|
+
"enable": [
|
|
18133
|
+
"2022-05-03"
|
|
18134
|
+
]
|
|
18129
18135
|
},
|
|
18130
18136
|
"10 Dhu al-Hijjah": {
|
|
18131
18137
|
"_name": "10 Dhu al-Hijjah",
|
|
18132
18138
|
"name": {
|
|
18133
18139
|
"en": "Hari Raya Haji"
|
|
18134
|
-
}
|
|
18140
|
+
},
|
|
18141
|
+
"disable": [
|
|
18142
|
+
"2022-07-09"
|
|
18143
|
+
],
|
|
18144
|
+
"enable": [
|
|
18145
|
+
"2022-07-10"
|
|
18146
|
+
]
|
|
18135
18147
|
},
|
|
18136
18148
|
"2001-05-07": {
|
|
18137
18149
|
"_name": "Vesak"
|