shabbat-gate 0.2.0 → 0.2.1

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
@@ -3,7 +3,17 @@
3
3
  All notable changes to this package are documented here. Format loosely follows
4
4
  [Keep a Changelog](https://keepachangelog.com/).
5
5
 
6
- ## [0.2.0] - Unreleased
6
+ ## [0.2.1] - Unreleased
7
+
8
+ ### Fixed
9
+
10
+ - README cross-links 404'd on the npm package page. The "קריאה בעברית" / "English README"
11
+ links and the CHANGELOG link were relative paths (`README.he.md`, `README.md`,
12
+ `CHANGELOG.md`); npm resolves those against `npmjs.com/package/`, not the GitHub repo, so they
13
+ led to a "package not found" page. Switched all four to absolute `github.com/...` URLs, which
14
+ work correctly on both npm and GitHub. (Docs-only change; no code affected.)
15
+
16
+ ## [0.2.0] - 2026-07-19
7
17
 
8
18
  ### Added
9
19
 
package/README.he.md CHANGED
@@ -4,7 +4,7 @@ Middleware ל-Cloudflare Pages / Workers שסוגר אתר לגולשים אנו
4
4
  המרכזיים (לפי כללי שמירת שבת בישראל) - תוך מתן גישה תמידית למנועי חיפוש ולסורקי AI, כך
5
5
  שה-SEO לא נפגע.
6
6
 
7
- [English README](README.md)
7
+ [English README](https://github.com/eyal-meshulam/shabbat-gate/blob/master/README.md)
8
8
 
9
9
  ## למה זה עובד ככה
10
10
 
@@ -182,7 +182,7 @@ buffer משלכם), כדאי להשתמש במפתח אחר - שימוש חוז
182
182
 
183
183
  ## היסטוריית שינויים
184
184
 
185
- ב-[CHANGELOG.md](CHANGELOG.md) (באנגלית) מתועד מה השתנה בכל גרסה, כולל הסבר לשורש כל
185
+ ב-[CHANGELOG.md](https://github.com/eyal-meshulam/shabbat-gate/blob/master/CHANGELOG.md) (באנגלית) מתועד מה השתנה בכל גרסה, כולל הסבר לשורש כל
186
186
  באג שתוקן.
187
187
 
188
188
  ## רישיון
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # shabbat-gate
2
2
 
3
- [קריאה בעברית](README.he.md)
3
+ [קריאה בעברית](https://github.com/eyal-meshulam/shabbat-gate/blob/master/README.he.md)
4
4
 
5
5
  Cloudflare Pages / Workers middleware that automatically closes a site to human visitors
6
6
  during Shabbat and major Jewish holidays (Israel-observance rules) - while always letting
@@ -186,7 +186,7 @@ silently serve stale, unprocessed data for up to 24h.
186
186
 
187
187
  ## Changelog
188
188
 
189
- See [CHANGELOG.md](CHANGELOG.md) for what changed in each release, including root-cause
189
+ See [CHANGELOG.md](https://github.com/eyal-meshulam/shabbat-gate/blob/master/CHANGELOG.md) for what changed in each release, including root-cause
190
190
  explanations for fixed bugs.
191
191
 
192
192
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shabbat-gate",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Cloudflare Pages/Workers middleware that closes a site to human visitors during Shabbat and major Jewish holidays (Israel-observance rules), while always letting search engines and AI crawlers through.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",