opening_hours 3.8.0 → 3.9.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.rst +65 -6
- package/LICENSES/AGPL-3.0-only.txt +149 -517
- package/LICENSES/CC0-1.0.txt +121 -0
- package/LICENSES/LGPL-3.0-only.txt +304 -0
- package/Makefile +28 -32
- package/README.md +55 -27
- package/build/opening_hours.js +4491 -2277
- package/package.json +43 -31
- package/site/js/helpers.js +17 -11
- package/site/js/i18n-resources.js +211 -60
- package/site/js/opening_hours_table.js +121 -114
- package/types/index.d.ts +3 -3
package/CHANGELOG.rst
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.. SPDX-FileCopyrightText: 2016
|
|
1
|
+
.. SPDX-FileCopyrightText: © 2016 Robin Schneider <ypid@riseup.net>
|
|
2
2
|
..
|
|
3
3
|
.. SPDX-License-Identifier: LGPL-3.0-only
|
|
4
4
|
|
|
@@ -7,8 +7,8 @@ Changelog
|
|
|
7
7
|
|
|
8
8
|
All notable changes to opening_hours.js will be documented in this file.
|
|
9
9
|
|
|
10
|
-
This project adheres to `Semantic Versioning <
|
|
11
|
-
and `human-readable changelog <
|
|
10
|
+
This project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`__
|
|
11
|
+
and `human-readable changelog <https://keepachangelog.com/en/0.3.0/>`__.
|
|
12
12
|
|
|
13
13
|
Note that most of the v2.X.Z releases have not been added to the changelog yet.
|
|
14
14
|
|
|
@@ -164,10 +164,67 @@ Thanks for helping by allowing employees to work on the project during work hour
|
|
|
164
164
|
master_ - unreleased
|
|
165
165
|
--------------------
|
|
166
166
|
|
|
167
|
-
.. _master: https://github.com/opening-hours/opening_hours.js/compare/v3.
|
|
167
|
+
.. _master: https://github.com/opening-hours/opening_hours.js/compare/v3.9.0...master
|
|
168
|
+
|
|
169
|
+
v3.9.0_ - 2025-05-31
|
|
170
|
+
--------------------
|
|
171
|
+
|
|
172
|
+
.. _v3.9.0: https://github.com/opening-hours/opening_hours.js/compare/v3.8.0...v3.9.0
|
|
168
173
|
|
|
169
174
|
`v3.9.0 milestone <https://github.com/opening-hours/opening_hours.js/issues?q=milestone%3Av3.9.0+is%3Aclosed>`__
|
|
170
175
|
|
|
176
|
+
Added
|
|
177
|
+
~~~~~
|
|
178
|
+
|
|
179
|
+
* Public holiday definitions added:
|
|
180
|
+
|
|
181
|
+
* Chinese (#406)
|
|
182
|
+
* Croatian
|
|
183
|
+
* Luxembourg (#460)
|
|
184
|
+
* Namibian (#452)
|
|
185
|
+
|
|
186
|
+
* School holiday definitions added:
|
|
187
|
+
|
|
188
|
+
* Croatian
|
|
189
|
+
* France
|
|
190
|
+
* Luxembourg (#460)
|
|
191
|
+
|
|
192
|
+
Changed
|
|
193
|
+
~~~~~~~
|
|
194
|
+
|
|
195
|
+
* Public holiday definitions updated:
|
|
196
|
+
|
|
197
|
+
* Argentina (#456)
|
|
198
|
+
* Swedish and Finnish (#465)
|
|
199
|
+
|
|
200
|
+
* School holiday definitions updated:
|
|
201
|
+
|
|
202
|
+
* Belgium (#457)
|
|
203
|
+
* German (#468)
|
|
204
|
+
* Hungarian (#466)
|
|
205
|
+
|
|
206
|
+
* [Evaluation tool] Optimize "Error and warning messages" layout
|
|
207
|
+
* [chore] Update CI in `ci.yml` (#468)
|
|
208
|
+
* Replace deprecated `set-output`
|
|
209
|
+
* Test with maintained node versions
|
|
210
|
+
* Update actions
|
|
211
|
+
* [chore] Upgrade `colors`, `husky` and `eslint` (#468)
|
|
212
|
+
* [chore] Update dependencies (#468)
|
|
213
|
+
* [chore] Move minification into rollup and remove `esbuild` (#468)
|
|
214
|
+
* [chore] Also build sourcemap to minified files (#468)
|
|
215
|
+
* [chore] Add code-style-check to CI (#468)
|
|
216
|
+
* [chore] Change benchmark script to esm (#468)
|
|
217
|
+
* [ci] switch to LTS Node.js version for code style check in workflow (#488)
|
|
218
|
+
* [ci] update supported Node.js versions in CI workflow (#488)
|
|
219
|
+
|
|
220
|
+
Fixed
|
|
221
|
+
~~~~~
|
|
222
|
+
|
|
223
|
+
* JOSM remote control was not working because it was trying to be accessed as https://localhost:8111/. Switch to HTTP.
|
|
224
|
+
* [Evaluation tool] Fix timebar wrap on certain zoom levels in Firefox (issue #419)
|
|
225
|
+
* [Evaluation tool] Fix Russian and Ukrainian pluralization by updating `i18next` and using API version V4 (#468)
|
|
226
|
+
* [chore] Drop `yamlToJson.mjs` (#468) - There are better tools like https://mikefarah.gitbook.io/yq that do this. No need to maintain our own.
|
|
227
|
+
* [chore] Fix `make list` (#468)
|
|
171
228
|
|
|
172
229
|
v3.8.0_ - 2022-05-18
|
|
173
230
|
--------------------
|
|
@@ -180,10 +237,12 @@ Added
|
|
|
180
237
|
* Public holiday definitions added:
|
|
181
238
|
|
|
182
239
|
* Argentina
|
|
240
|
+
* Japanese
|
|
183
241
|
|
|
184
242
|
* Localizations added:
|
|
185
243
|
|
|
186
244
|
* Vietnamese
|
|
245
|
+
* Japanese
|
|
187
246
|
|
|
188
247
|
Changed
|
|
189
248
|
~~~~~~~
|
|
@@ -312,8 +371,8 @@ Changed
|
|
|
312
371
|
* Change directory layout of the project. [napei_, ypid_]
|
|
313
372
|
* Switch from i18next-client to i18next dependency (no longer as peer dependency). [fodor0205_, ypid_]
|
|
314
373
|
|
|
315
|
-
.. _ES2015 modules:
|
|
316
|
-
.. _rollup:
|
|
374
|
+
.. _ES2015 modules: https://exploringjs.com/es6/ch_modules.html
|
|
375
|
+
.. _rollup: https://rollupjs.org/
|
|
317
376
|
|
|
318
377
|
Fixed
|
|
319
378
|
~~~~~
|