date-holidays 3.21.4 → 3.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.22.0](https://github.com/commenthol/date-holidays/compare/3.21.5...3.22.0) (2023-09-14)
4
+
5
+ - feat(UA): Update ukrainian holidays [91d8a1a3](https://github.com/commenthol/date-holidays/commit/91d8a1a340df853720b01b19eaaf9cce78d683ef)
6
+
7
+ ## [3.21.5](https://github.com/commenthol/date-holidays/compare/3.21.4...3.21.5) (2023-08-27)
8
+
9
+ - fix(AT): yaml error [afbe5f00](https://github.com/commenthol/date-holidays/commit/afbe5f00ce6b7ffbb636e0fe02da6fb510c44f9b)
10
+ - chore: update license attributions [8fe7d2d0](https://github.com/commenthol/date-holidays/commit/8fe7d2d0b2d216c16310d0dc5a21e286bff35302)
11
+ - Make Leopoldi-Tag optional , add notes and source [8e02b295](https://github.com/commenthol/date-holidays/commit/8e02b295600a6161cefb90f3ab3a37b02c6ceb60)
12
+
3
13
  ## [3.21.4](https://github.com/commenthol/date-holidays/compare/3.21.3...3.21.4) (2023-08-25)
4
14
 
5
15
  - fix(SG): added SG presidential election polling day 2023 [a7211a9a](https://github.com/commenthol/date-holidays/commit/a7211a9a18547e2375ed412d09c5d21d82035ee4)
@@ -81,9 +81,12 @@ holidays:
81
81
  de: Niederösterreich
82
82
  en: Lower Austria
83
83
  days:
84
+ # @source https://kurier.at/chronik/niederoesterreich/leopoldi-alle-feiern-nicht-alle-haben-frei/400673546
84
85
  11-15:
85
86
  name:
86
- de-at: Leopold
87
+ de-at: Leopoldi-Tag
88
+ type: optional
89
+ note: In Niederösterreich haben nur Schüler und Beamten frei
87
90
  "4":
88
91
  names:
89
92
  de: Oberösterreich
@@ -124,6 +127,9 @@ holidays:
124
127
  de: Wien
125
128
  en: Vienna
126
129
  days:
130
+ # @source https://kurier.at/chronik/niederoesterreich/leopoldi-alle-feiern-nicht-alle-haben-frei/400673546
127
131
  11-15:
128
132
  name:
129
- de-at: Leopold
133
+ de-at: Leopoldi-Tag
134
+ type: optional
135
+ note: In Wien haben nur Schüler frei
@@ -23,7 +23,7 @@ holidays:
23
23
  name:
24
24
  en: New Year
25
25
  substitute: true
26
- julian 12-25 and if saturday, sunday then next monday:
26
+ julian 12-25 and if saturday, sunday then next monday prior to 2023:
27
27
  _name: julian 12-25
28
28
  substitute: true
29
29
  03-08 and if saturday, sunday then next monday:
@@ -35,7 +35,7 @@ holidays:
35
35
  05-01 and if saturday, sunday then next tuesday:
36
36
  _name: 05-01
37
37
  substitute: true
38
- 05-02 and if saturday, sunday then next monday:
38
+ 05-02 and if saturday, sunday then next monday prior to 2018:
39
39
  _name: 05-01
40
40
  substitute: true
41
41
  05-09 and if saturday, sunday then next monday:
@@ -46,16 +46,29 @@ holidays:
46
46
  06-28 and if saturday, sunday then next monday:
47
47
  _name: Constitution Day
48
48
  substitute: true
49
+ 07-15 and if saturday, sunday then next monday since 2023:
50
+ name:
51
+ en: Statehood Day
52
+ uk: День Української Державності
53
+ 07-28 and if saturday, sunday then next monday prior to 2023:
54
+ name:
55
+ en: Statehood Day
56
+ uk: День Української Державності
49
57
  08-24 and if saturday, sunday then next monday:
50
58
  _name: Independence Day
51
59
  substitute: true
52
- 10-14 and if saturday, sunday then next monday:
60
+ 10-14 and if saturday, sunday then next monday since 2015 and prior to 2023:
53
61
  name:
54
62
  uk: День захисника України
55
- en: Defender of Ukraine Day
63
+ en: Defenders of Ukraine Day
64
+ substitute: true
65
+ 10-01 and if saturday, sunday then next monday since 2023:
66
+ name:
67
+ uk: День захисників і захисниць України
68
+ en: Defenders of Ukraine Day
56
69
  substitute: true
57
- active:
58
- - from: "2015-03-05"
70
+ 12-25 and if saturday, sunday then next monday since 2017:
71
+ _name: 12-25
59
72
  # states:
60
73
  # '05':
61
74
  # name: Vinnychchyna
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2023-08-25",
2
+ "version": "2023-09-14",
3
3
  "license": "CC-BY-SA-3",
4
4
  "holidays": {
5
5
  "AD": {
@@ -965,8 +965,10 @@
965
965
  "days": {
966
966
  "11-15": {
967
967
  "name": {
968
- "de-at": "Leopold"
969
- }
968
+ "de-at": "Leopoldi-Tag"
969
+ },
970
+ "type": "optional",
971
+ "note": "In Niederösterreich haben nur Schüler und Beamten frei"
970
972
  }
971
973
  }
972
974
  },
@@ -1034,8 +1036,10 @@
1034
1036
  "days": {
1035
1037
  "11-15": {
1036
1038
  "name": {
1037
- "de-at": "Leopold"
1038
- }
1039
+ "de-at": "Leopoldi-Tag"
1040
+ },
1041
+ "type": "optional",
1042
+ "note": "In Wien haben nur Schüler frei"
1039
1043
  }
1040
1044
  }
1041
1045
  }
@@ -21829,7 +21833,7 @@
21829
21833
  },
21830
21834
  "substitute": true
21831
21835
  },
21832
- "julian 12-25 and if saturday, sunday then next monday": {
21836
+ "julian 12-25 and if saturday, sunday then next monday prior to 2023": {
21833
21837
  "_name": "julian 12-25",
21834
21838
  "substitute": true
21835
21839
  },
@@ -21846,7 +21850,7 @@
21846
21850
  "_name": "05-01",
21847
21851
  "substitute": true
21848
21852
  },
21849
- "05-02 and if saturday, sunday then next monday": {
21853
+ "05-02 and if saturday, sunday then next monday prior to 2018": {
21850
21854
  "_name": "05-01",
21851
21855
  "substitute": true
21852
21856
  },
@@ -21861,21 +21865,38 @@
21861
21865
  "_name": "Constitution Day",
21862
21866
  "substitute": true
21863
21867
  },
21868
+ "07-15 and if saturday, sunday then next monday since 2023": {
21869
+ "name": {
21870
+ "en": "Statehood Day",
21871
+ "uk": "День Української Державності"
21872
+ }
21873
+ },
21874
+ "07-28 and if saturday, sunday then next monday prior to 2023": {
21875
+ "name": {
21876
+ "en": "Statehood Day",
21877
+ "uk": "День Української Державності"
21878
+ }
21879
+ },
21864
21880
  "08-24 and if saturday, sunday then next monday": {
21865
21881
  "_name": "Independence Day",
21866
21882
  "substitute": true
21867
21883
  },
21868
- "10-14 and if saturday, sunday then next monday": {
21884
+ "10-14 and if saturday, sunday then next monday since 2015 and prior to 2023": {
21869
21885
  "name": {
21870
21886
  "uk": "День захисника України",
21871
- "en": "Defender of Ukraine Day"
21887
+ "en": "Defenders of Ukraine Day"
21872
21888
  },
21873
- "substitute": true,
21874
- "active": [
21875
- {
21876
- "from": "2015-03-05"
21877
- }
21878
- ]
21889
+ "substitute": true
21890
+ },
21891
+ "10-01 and if saturday, sunday then next monday since 2023": {
21892
+ "name": {
21893
+ "uk": "День захисників і захисниць України",
21894
+ "en": "Defenders of Ukraine Day"
21895
+ },
21896
+ "substitute": true
21897
+ },
21898
+ "12-25 and if saturday, sunday then next monday since 2017": {
21899
+ "_name": "12-25"
21879
21900
  }
21880
21901
  }
21881
21902
  },
@@ -25152,8 +25173,9 @@
25152
25173
  "sr": "Католички Божић",
25153
25174
  "sv": "Juldagen",
25154
25175
  "sw": "Krismasi",
25155
- "vi": "Lễ Giáng Sinh",
25156
25176
  "ti": "ልደት",
25177
+ "uk": "Різдво Христове",
25178
+ "vi": "Lễ Giáng Sinh",
25157
25179
  "zh": "聖誕節"
25158
25180
  }
25159
25181
  },
package/data/names.yaml CHANGED
@@ -405,8 +405,9 @@ names:
405
405
  sr: Католички Божић
406
406
  sv: Juldagen
407
407
  sw: Krismasi
408
- vi: Lễ Giáng Sinh
409
408
  ti: ልደት
409
+ uk: Різдво Христове
410
+ vi: Lễ Giáng Sinh
410
411
  zh: 聖誕節
411
412
  12-26:
412
413
  name: