feat(container): update ghcr.io/karakeep-app/karakeep ( 0.32.0 ➔ 0.33.1 ) #1946

Open
renovate-bot wants to merge 1 commit from renovate/ghcr.io-karakeep-app-karakeep-0.x into main
Collaborator

This PR contains the following updates:

Package Update Change
ghcr.io/karakeep-app/karakeep minor 0.32.00.33.1

Release Notes

karakeep-app/karakeep (ghcr.io/karakeep-app/karakeep)

v0.33.1: 0.33.1

Compare Source

0.33.1

Welcome to the 0.33 release of Karakeep! The headline of this release is semantic search. Karakeep can now generate embeddings for your bookmarks, letting you search by meaning instead of exact keywords (and making auto-tagging noticeably more consistent along the way). The mobile app gets offline reading, so you can save articles to your device and read them on a plane, along with new layouts, sorting, and one-tap clipboard saving. Cookie and GDPR consents should be something of the past with this release (finally). Plus a big batch of crawler, security and performance fixes.

Thanks to everyone who contributed to this release: @​esimkowitz, @​joestump, @​zerone0x, @​ElectricTea, @​optix2000, @​thiswillbeyourgithub, @​jcgoodwin86, @​InventorB, @​VrtxOmega, @​pike00, @​KayMi, @​TanishValesha, @​mahirhir, @​moduvoice, @​eviaaaaa, @​archit-goyal, @​CertStone, and everyone who shipped code, triaged bugs, or shared feedback.

Note: the changes mentioned here for the extension and mobile releases will need to go through the different store (apple, google, mozilla) reviews. So it might take a couple of days until all of them are released.

If you enjoy using Karakeep, consider supporting the project here or via GitHub here. Also share Karakeep's managed offering (☁️ link) with your friends who're not into selfhosting.

Buy Me A Coffee

New Features 🚀
  • Semantic Search (#​2959, #​2960) - Search is no longer limited to exact keyword matching. There are now three search modes, switchable from a dropdown in the search bar:
    • Full text - the existing keyword search (still the default).
    • Semantic [Experimental] - pure meaning-based search powered by embeddings. Searching for "how to make coffee" will find your espresso bookmarks even if they never use those words.
    • Hybrid [Experimental] - fuses the results of both.
    • The new mode is also available in the API, MCP and CLI which is going to be the most useful with agents.
    • Semantic search is still new and experimental, so results might not be super accurate yet, but it's a start.
    • ⚠️ Semantic search requires embeddings to be enabled, read the upgrade notes for details about how to enable them.
  • Smarter auto-tagging using embeddings (#​2858) - When tagging a new bookmark, Karakeep now looks up semantically similar bookmarks and feeds their existing tags into the LLM prompt as suggestions. The result is a lot less tag sprawl (no more k8s, kubernetes and Kubernetes all coexisting). This also requires embeddings to be enabled, read the upgrade notes for details about how them.
  • Cleaner saved pages (#​2973): the crawler now detects common consent dialogs (cookies and GDPR) and automatically opts out before capturing the article, screenshot and PDF.
  • Offline reading on mobile (#​2957) - The mobile app can now work without a connection:
    • Save articles for offline: from a bookmark's "…" menu, pick Make available offline. The full article is downloaded and kept on device until you remove it.
    • Recent cache: everything you browse (bookmark lists, tags, lists, highlights) is now persisted for 7 days, so recently visited screens still open when you're offline.
  • Mobile app improvements:
    • New layouts (#​2837): switch between the existing card layout and a new compact list layout. Note: the default is now the list layout.
    • Sorting (#​2777): sort your bookmarks newest-first or oldest-first (overdue, sorry!).
    • Save from clipboard (#​2868): a new Clipboard entry in the "+" menu saves whatever is in your clipboard in one tap. Thanks @​InventorB!
    • The manage bookmark sheet now has favourite, archive, share and highlights actions instead of just delete.
  • Karakeep for agentic usage - continuing where 0.32 left off:
    • MCP server went from 8 to 29 tools. Newly added: full list CRUD, full tag CRUD, highlights, delete-bookmark, and get-asset. Big thanks to @​joestump for the list/tag CRUD work (#​2917)!
    • New readable content API (#​2660): GET /api/v1/bookmarks/{bookmarkId}/content returns a bookmark's article content as markdown or plain text, cursor-paginated in LLM-friendly chunks that snap to paragraph boundaries.
  • Much faster bookmark metadata (#​2932): Karakeep's pre-flight http request to the website can now contribute to its metadata extraction. This results into some metadata (e.g. title) appearing much faster. A new CRAWLER_PREFLIGHT_USER_AGENT option lets you set a user agent for that probe request, and let's just say that a good user agent makes a huge difference.
  • The default OpenAI model has changed from gpt-4.1-mini to gpt-5.6-luna which is half as cheap, though a bit slower given that it's a reasoning model.
UX Improvements
  • Re-saving an existing bookmark now actually does something (#​2962) - Saving a link you've saved before used to just tell you "Bookmark already exists" and do nothing. Now it re-saves it: the bookmark is un-archived and bumped back to the top of your list.
  • Smarter bookmark previews (#​2975) - Newly crawled pages are now assessed for how well they work in Reader View. Articles continue to open in the clean reader, while homepages, search results, product pages and other non-article content default to a screenshot or a new page-overview panel instead of showing a poor text extraction. You can still switch among the overview, Reader View, screenshot, PDF and archived page from the preview selector.
  • Bulk edit is now one hover away: instead of first switching bulk edit on from the toolbar, a selection circle appears directly on a bookmark card when you hover it. Selecting one card puts you into bulk edit mode for the rest.
  • The sidebar is now wider on large screens, and its scrollbar only appears when you hover it instead of sitting there permanently.
  • Mobile polish: a proper loading state while an article is still being crawled, better reader contrast in dark mode, a rebuilt login screen with much clearer connection errors, faster Manage Tags page on large libraries (server-side search instead of loading every tag), iPad/tablet reader toolbar and FAB fixes by @​esimkowitz (#​2788, #​2793, #​2794), and a bunch of redundant success toasts removed.
  • Karakeep is now installable as a PWA in Chrome again, allowing you to use karakeep on your desktop as if it's one of the apps.
  • New Instagram renderer (#​2836): Instagram posts and reels now render as the actual embedded post in the bookmark preview, joining the existing YouTube, X, TikTok and Amazon renderers.
Fixes 🐛
  • Security fixes:
    • Fixed a DNS rebinding / TOCTOU hole in the crawler's SSRF protection (#​2945). Reported by @​celinke97 (GHSA-vc53-r298-c6h6).
    • API key and signed asset token verification now use timing-safe comparisons, reported by @​xancyber (GHSA-hjm9-gc55-5hgv).
    • Bookmark URLs are now restricted to http/https on create and update. Reported by @​therawdev and @​shukla304 (GHSA-6mfw-xrw2-h5x3).
    • Legacy bookmarks with unsafe schemes are filtered out of RSS feeds and Netscape HTML exports, and the exported URLs are HTML-escaped. Reported by @​karen93shieh and @​MuxiLyuLucy (GHSA-4vx2-9j8p-jg8v).
    • Tag names are now HTML-escaped in Netscape bookmark exports, preventing a crafted or AI-generated tag from breaking out of the TAGS attribute when the export is opened in a browser.
    • User-supplied names (user names, list names, inviter names) are HTML-escaped in outgoing emails, fixing HTML injection in the list invitation email. Reported by @​therawdev and @​shukla304 (GHSA-pvj2-rgwm-r7f8).
    • Password logins are now rate limited (10 attempts per 15 minutes per IP + email). Note that this requires RATE_LIMITING_ENABLED=true.
    • Closed account-enumeration side channels in login and password reset.
  • Much faster bookmark deletion (#​2669): added the missing indexes that should make deletions less IO intensive for large libraries.
  • Old completed import sessions are now archived after 30 days: their summary counts are kept, but the per-bookmark staging rows are deleted, which keeps the DB from growing unboundedly after big imports.
  • YouTube/video downloads work again - yt-dlp now uses the bundled node as its JS runtime, by @​pike00 (#​2805).
  • Fixed BROWSER_WEB_URL failing to resolve on IPv6-only Docker networks by @​VrtxOmega (#​2863).
  • Fixed the X/Twitter renderer, which broke after the API changed its response shape.
  • Inline images in SingleFile archives are no longer clobbered by the lazy-load normalization, by @​zerone0x (#​2928).
  • Banner/preview image extraction now works for SingleFile and precrawled archives that inline the image as a data URI.
  • Fixed summarization producing garbled output for users running with INFERENCE_OUTPUT_SCHEMA=json, by @​eviaaaaa (#​2926).
  • New OPENAI_TIMEOUT_SEC option to control the per-request inference timeout, useful for slow self-hosted providers, by @​optix2000 (#​2876).
  • Hardened the tagging prompt: tags are now capped to 1–3 words, and Karakeep explicitly returns no tags for error pages, Cloudflare/CAPTCHA interstitials, cookie banners and login walls - so no more just a moment or cloudflare tags on failed crawls.
  • Fixed the MCP get-bookmark-content tool crashing on bookmarks that haven't been crawled yet, by @​joestump (#​2915).
  • Fixed scrolling in the bookmark preview's screenshot view by @​VrtxOmega (#​2864).
  • The browser extension now requests host permissions at runtime for client-side crawling (#​2784), instead of asking for them up front.
  • Added missing Japanese translations by @​mahirhir (#​2903) and filled in the missing Korean translation keys by @​moduvoice (#​2938).
  • PDF previews now render via <embed> so they display in Safari, by @​KayMi (#​2806).
  • Import progress is now tracked per import job (#​2950), so running two imports at once no longer makes their progress bars fight each other. Thanks @​jcgoodwin86!
For Developers 🛠️
  • Docker healthchecks now respect a custom PORT by @​zerone0x (#​2948).
  • OAuth providers can now use a configurable ID token signing algorithm via OAUTH_ID_TOKEN_SIGNED_RESPONSE_ALG, by @​CertStone (#​2850).
Community Projects 💡

Checkout our community projects page here.

Screenshots 📸
Offline Reading
Screenshot 2026-08-01 at 7 41 17 PM
New Mobile List Layouts

Please don't judge my saved content

Screenshot 2026-08-01 at 7 38 55 PM
Upgrading 📦

To upgrade:

  • If you're using KARAKEEP_VERSION=release, run docker compose pull && docker compose up -d.
  • If you're pinning it to a specific version, upgrade the version and then run docker compose pull && docker compose up -d.
Enabling Embeddings
  1. Karakeep's embedding uses your existing meilisearch installation as the default vector store. If you're an OG, and running an old meilisearch version, you'll need to ensure you're on meilisearch version (1.13 or higher). Check this guide for info on how to update.
  2. If you're using the default OpenAI based configuration, auto embeddings of new bookmarks will be enabled automatically and will use the text-embedding-3-small model.
  3. If you're using a custom provider, you'll need to pass in the EMBEDDING_TEXT_MODEL=<your_mode>, the size of the dimension of the model via EMBEDDING_DIMENSIONS and then pass EMBEDDING_ENABLE_AUTO_INDEXING=true to enable embeddings. Check out our docs for example models and configurations.

Once you've enabled embeddings, you'll need to regenerate embeddings for all existing bookmarks. Head to the admin panel's Background Jobs page (new "Embeddings" card) and regenerate embeddings for all/pending bookmarks. This might take a while depending on how many bookmarks you have, and will cost you money (though embeddings are usually pretty cheap).

NOTE: Changing the model or its dimension after embedding even a single bookmark will require you to regenerate embeddings for all bookmarks.

All Commits

Configuration

📅 Schedule: (in timezone Europe/Rome)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/karakeep-app/karakeep](https://github.com/karakeep-app/karakeep) | minor | `0.32.0` → `0.33.1` | --- ### Release Notes <details> <summary>karakeep-app/karakeep (ghcr.io/karakeep-app/karakeep)</summary> ### [`v0.33.1`](https://github.com/karakeep-app/karakeep/releases/tag/v0.33.1): 0.33.1 [Compare Source](https://github.com/karakeep-app/karakeep/compare/v0.32.0...v0.33.1) ##### 0.33.1 Welcome to the `0.33` release of Karakeep! The headline of this release is **semantic search**. Karakeep can now generate embeddings for your bookmarks, letting you search by meaning instead of exact keywords (and making auto-tagging noticeably more consistent along the way). The mobile app gets **offline reading**, so you can save articles to your device and read them on a plane, along with new layouts, sorting, and one-tap clipboard saving. **Cookie and GDPR consents** should be something of the past with this release (finally). Plus a big batch of crawler, security and performance fixes. Thanks to everyone who contributed to this release: [@&#8203;esimkowitz](https://github.com/esimkowitz), [@&#8203;joestump](https://github.com/joestump), [@&#8203;zerone0x](https://github.com/zerone0x), [@&#8203;ElectricTea](https://github.com/ElectricTea), [@&#8203;optix2000](https://github.com/optix2000), [@&#8203;thiswillbeyourgithub](https://github.com/thiswillbeyourgithub), [@&#8203;jcgoodwin86](https://github.com/jcgoodwin86), [@&#8203;InventorB](https://github.com/InventorB), [@&#8203;VrtxOmega](https://github.com/VrtxOmega), [@&#8203;pike00](https://github.com/pike00), [@&#8203;KayMi](https://github.com/KayMi), [@&#8203;TanishValesha](https://github.com/TanishValesha), [@&#8203;mahirhir](https://github.com/mahirhir), [@&#8203;moduvoice](https://github.com/moduvoice), [@&#8203;eviaaaaa](https://github.com/eviaaaaa), [@&#8203;archit-goyal](https://github.com/archit-goyal), [@&#8203;CertStone](https://github.com/CertStone), and everyone who shipped code, triaged bugs, or shared feedback. *Note: the changes mentioned here for the extension and mobile releases will need to go through the different store (apple, google, mozilla) reviews. So it might take a couple of days until all of them are released.* > If you enjoy using Karakeep, consider supporting the project [here ☕️](https://buymeacoffee.com/mbassem) or via GitHub [here](https://github.com/sponsors/MohamedBassem). Also share Karakeep's managed offering (☁️ [link](https://cloud.karakeep.app)) with your friends who're not into selfhosting. <a href="https://www.buymeacoffee.com/mbassem" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" width="auto" height="50" ></a> ##### New Features 🚀 - **Semantic Search** ([#&#8203;2959](https://github.com/karakeep-app/karakeep/issues/2959), [#&#8203;2960](https://github.com/karakeep-app/karakeep/issues/2960)) - Search is no longer limited to exact keyword matching. There are now three search modes, switchable from a dropdown in the search bar: - `Full text` - the existing keyword search (still the default). - `Semantic` \[Experimental] - pure meaning-based search powered by embeddings. Searching for "how to make coffee" will find your espresso bookmarks even if they never use those words. - `Hybrid` \[Experimental] - fuses the results of both. - The new mode is also available in the API, MCP and CLI which is going to be the most useful with agents. - Semantic search is still new and experimental, so results might not be super accurate yet, but it's a start. - ⚠️ Semantic search requires embeddings to be enabled, read the upgrade notes for details about how to enable them. - **Smarter auto-tagging using embeddings** ([#&#8203;2858](https://github.com/karakeep-app/karakeep/issues/2858)) - When tagging a new bookmark, Karakeep now looks up semantically similar bookmarks and feeds their existing tags into the LLM prompt as suggestions. The result is a lot less tag sprawl (no more `k8s`, `kubernetes` and `Kubernetes` all coexisting). This also requires embeddings to be enabled, read the upgrade notes for details about how them. - **Cleaner saved pages** ([#&#8203;2973](https://github.com/karakeep-app/karakeep/issues/2973)): the crawler now detects common consent dialogs (cookies and GDPR) and automatically opts out before capturing the article, screenshot and PDF. - **Offline reading on mobile** ([#&#8203;2957](https://github.com/karakeep-app/karakeep/issues/2957)) - The mobile app can now work without a connection: - **Save articles for offline**: from a bookmark's "…" menu, pick *Make available offline*. The full article is downloaded and kept on device until you remove it. - **Recent cache**: everything you browse (bookmark lists, tags, lists, highlights) is now persisted for 7 days, so recently visited screens still open when you're offline. - **Mobile app improvements**: - **New layouts** ([#&#8203;2837](https://github.com/karakeep-app/karakeep/issues/2837)): switch between the existing card layout and a new compact list layout. *Note: the default is now the list layout.* - **Sorting** ([#&#8203;2777](https://github.com/karakeep-app/karakeep/issues/2777)): sort your bookmarks newest-first or oldest-first (overdue, sorry!). - **Save from clipboard** ([#&#8203;2868](https://github.com/karakeep-app/karakeep/issues/2868)): a new *Clipboard* entry in the "+" menu saves whatever is in your clipboard in one tap. Thanks [@&#8203;InventorB](https://github.com/InventorB)! - The manage bookmark sheet now has favourite, archive, share and highlights actions instead of just delete. - **Karakeep for agentic usage** - continuing where 0.32 left off: - **MCP server went from 8 to 29 tools**. Newly added: full list CRUD, full tag CRUD, highlights, `delete-bookmark`, and `get-asset`. Big thanks to [@&#8203;joestump](https://github.com/joestump) for the list/tag CRUD work ([#&#8203;2917](https://github.com/karakeep-app/karakeep/issues/2917))! - **New readable content API** ([#&#8203;2660](https://github.com/karakeep-app/karakeep/issues/2660)): `GET /api/v1/bookmarks/{bookmarkId}/content` returns a bookmark's article content as markdown or plain text, cursor-paginated in LLM-friendly chunks that snap to paragraph boundaries. - **Much faster bookmark metadata** ([#&#8203;2932](https://github.com/karakeep-app/karakeep/issues/2932)): Karakeep's pre-flight http request to the website can now contribute to its metadata extraction. This results into some metadata (e.g. title) appearing much faster. A new `CRAWLER_PREFLIGHT_USER_AGENT` option lets you set a user agent for that probe request, and let's just say that a good user agent makes a huge difference. - The default OpenAI model has changed from `gpt-4.1-mini` to `gpt-5.6-luna` which is half as cheap, though a bit slower given that it's a reasoning model. ##### UX Improvements ✨ - **Re-saving an existing bookmark now actually does something** ([#&#8203;2962](https://github.com/karakeep-app/karakeep/issues/2962)) - Saving a link you've saved before used to just tell you "Bookmark already exists" and do nothing. Now it re-saves it: the bookmark is un-archived and bumped back to the top of your list. - **Smarter bookmark previews** ([#&#8203;2975](https://github.com/karakeep-app/karakeep/issues/2975)) - Newly crawled pages are now assessed for how well they work in Reader View. Articles continue to open in the clean reader, while homepages, search results, product pages and other non-article content default to a screenshot or a new page-overview panel instead of showing a poor text extraction. You can still switch among the overview, Reader View, screenshot, PDF and archived page from the preview selector. - **Bulk edit is now one hover away**: instead of first switching bulk edit on from the toolbar, a selection circle appears directly on a bookmark card when you hover it. Selecting one card puts you into bulk edit mode for the rest. - The sidebar is now wider on large screens, and its scrollbar only appears when you hover it instead of sitting there permanently. - Mobile polish: a proper loading state while an article is still being crawled, better reader contrast in dark mode, a rebuilt login screen with much clearer connection errors, faster Manage Tags page on large libraries (server-side search instead of loading every tag), iPad/tablet reader toolbar and FAB fixes by [@&#8203;esimkowitz](https://github.com/esimkowitz) ([#&#8203;2788](https://github.com/karakeep-app/karakeep/issues/2788), [#&#8203;2793](https://github.com/karakeep-app/karakeep/issues/2793), [#&#8203;2794](https://github.com/karakeep-app/karakeep/issues/2794)), and a bunch of redundant success toasts removed. - Karakeep is now installable as a PWA in Chrome again, allowing you to use karakeep on your desktop as if it's one of the apps. - New **Instagram renderer** ([#&#8203;2836](https://github.com/karakeep-app/karakeep/issues/2836)): Instagram posts and reels now render as the actual embedded post in the bookmark preview, joining the existing YouTube, X, TikTok and Amazon renderers. ##### Fixes 🐛 - **Security fixes**: - Fixed a DNS rebinding / TOCTOU hole in the crawler's SSRF protection ([#&#8203;2945](https://github.com/karakeep-app/karakeep/issues/2945)). Reported by [@&#8203;celinke97](https://github.com/celinke97) (GHSA-vc53-r298-c6h6). - API key and signed asset token verification now use timing-safe comparisons, reported by [@&#8203;xancyber](https://github.com/xancyber) (GHSA-hjm9-gc55-5hgv). - Bookmark URLs are now restricted to `http`/`https` on create and update. Reported by [@&#8203;therawdev](https://github.com/therawdev) and [@&#8203;shukla304](https://github.com/shukla304) (GHSA-6mfw-xrw2-h5x3). - Legacy bookmarks with unsafe schemes are filtered out of RSS feeds and Netscape HTML exports, and the exported URLs are HTML-escaped. Reported by [@&#8203;karen93shieh](https://github.com/karen93shieh) and [@&#8203;MuxiLyuLucy](https://github.com/MuxiLyuLucy) (GHSA-4vx2-9j8p-jg8v). - Tag names are now HTML-escaped in Netscape bookmark exports, preventing a crafted or AI-generated tag from breaking out of the `TAGS` attribute when the export is opened in a browser. - User-supplied names (user names, list names, inviter names) are HTML-escaped in outgoing emails, fixing HTML injection in the list invitation email. Reported by [@&#8203;therawdev](https://github.com/therawdev) and [@&#8203;shukla304](https://github.com/shukla304) (GHSA-pvj2-rgwm-r7f8). - Password logins are now rate limited (10 attempts per 15 minutes per IP + email). Note that this requires `RATE_LIMITING_ENABLED=true`. - Closed account-enumeration side channels in login and password reset. - Much faster bookmark deletion ([#&#8203;2669](https://github.com/karakeep-app/karakeep/issues/2669)): added the missing indexes that should make deletions less IO intensive for large libraries. - Old completed import sessions are now archived after 30 days: their summary counts are kept, but the per-bookmark staging rows are deleted, which keeps the DB from growing unboundedly after big imports. - YouTube/video downloads work again - yt-dlp now uses the bundled node as its JS runtime, by [@&#8203;pike00](https://github.com/pike00) ([#&#8203;2805](https://github.com/karakeep-app/karakeep/issues/2805)). - Fixed `BROWSER_WEB_URL` failing to resolve on IPv6-only Docker networks by [@&#8203;VrtxOmega](https://github.com/VrtxOmega) ([#&#8203;2863](https://github.com/karakeep-app/karakeep/issues/2863)). - Fixed the X/Twitter renderer, which broke after the API changed its response shape. - Inline images in SingleFile archives are no longer clobbered by the lazy-load normalization, by [@&#8203;zerone0x](https://github.com/zerone0x) ([#&#8203;2928](https://github.com/karakeep-app/karakeep/issues/2928)). - Banner/preview image extraction now works for SingleFile and precrawled archives that inline the image as a data URI. - Fixed summarization producing garbled output for users running with `INFERENCE_OUTPUT_SCHEMA=json`, by [@&#8203;eviaaaaa](https://github.com/eviaaaaa) ([#&#8203;2926](https://github.com/karakeep-app/karakeep/issues/2926)). - New `OPENAI_TIMEOUT_SEC` option to control the per-request inference timeout, useful for slow self-hosted providers, by [@&#8203;optix2000](https://github.com/optix2000) ([#&#8203;2876](https://github.com/karakeep-app/karakeep/issues/2876)). - Hardened the tagging prompt: tags are now capped to 1–3 words, and Karakeep explicitly returns no tags for error pages, Cloudflare/CAPTCHA interstitials, cookie banners and login walls - so no more `just a moment` or `cloudflare` tags on failed crawls. - Fixed the MCP `get-bookmark-content` tool crashing on bookmarks that haven't been crawled yet, by [@&#8203;joestump](https://github.com/joestump) ([#&#8203;2915](https://github.com/karakeep-app/karakeep/issues/2915)). - Fixed scrolling in the bookmark preview's screenshot view by [@&#8203;VrtxOmega](https://github.com/VrtxOmega) ([#&#8203;2864](https://github.com/karakeep-app/karakeep/issues/2864)). - The browser extension now requests host permissions at runtime for client-side crawling ([#&#8203;2784](https://github.com/karakeep-app/karakeep/issues/2784)), instead of asking for them up front. - Added missing Japanese translations by [@&#8203;mahirhir](https://github.com/mahirhir) ([#&#8203;2903](https://github.com/karakeep-app/karakeep/issues/2903)) and filled in the missing Korean translation keys by [@&#8203;moduvoice](https://github.com/moduvoice) ([#&#8203;2938](https://github.com/karakeep-app/karakeep/issues/2938)). - PDF previews now render via `<embed>` so they display in Safari, by [@&#8203;KayMi](https://github.com/KayMi) ([#&#8203;2806](https://github.com/karakeep-app/karakeep/issues/2806)). - Import progress is now tracked per import job ([#&#8203;2950](https://github.com/karakeep-app/karakeep/issues/2950)), so running two imports at once no longer makes their progress bars fight each other. Thanks [@&#8203;jcgoodwin86](https://github.com/jcgoodwin86)! ##### For Developers 🛠️ - Docker healthchecks now respect a custom `PORT` by [@&#8203;zerone0x](https://github.com/zerone0x) ([#&#8203;2948](https://github.com/karakeep-app/karakeep/issues/2948)). - OAuth providers can now use a configurable ID token signing algorithm via `OAUTH_ID_TOKEN_SIGNED_RESPONSE_ALG`, by [@&#8203;CertStone](https://github.com/CertStone) ([#&#8203;2850](https://github.com/karakeep-app/karakeep/issues/2850)). ##### Community Projects 💡 *Checkout our community projects page [here](https://docs.karakeep.app/community-projects).* - [wdoc](https://github.com/thiswillbeyourgithub/wdoc): A RAG-powered document/knowledge querying tool with Karakeep support, by [@&#8203;thiswillbeyourgithub](https://github.com/thiswillbeyourgithub) ([#&#8203;2904](https://github.com/karakeep-app/karakeep/issues/2904)) ##### Screenshots 📸 ##### Offline Reading <img width="603" height="1311" alt="Screenshot 2026-08-01 at 7 41 17 PM" src="https://github.com/user-attachments/assets/15eca558-2fa9-44d2-9c75-c7e6042b44c1" /> ##### New Mobile List Layouts *Please don't judge my saved content* <img width="603" height="1258" alt="Screenshot 2026-08-01 at 7 38 55 PM" src="https://github.com/user-attachments/assets/bf5aa418-b80f-4d75-968a-2b99914df803" /> ##### Upgrading 📦 To upgrade: - If you're using `KARAKEEP_VERSION=release`, run `docker compose pull && docker compose up -d`. - If you're pinning it to a specific version, upgrade the version and then run `docker compose pull && docker compose up -d`. ##### Enabling Embeddings 1. Karakeep's embedding uses your existing meilisearch installation as the default vector store. If you're an OG, and running an old meilisearch version, you'll need to ensure you're on meilisearch version (1.13 or higher). Check [this guide](https://www.meilisearch.com/docs/resources/migration/updating#updating-a-self-hosted-meilisearch-instance) for info on how to update. 2. If you're using the default OpenAI based configuration, auto embeddings of new bookmarks will be enabled automatically and will use the `text-embedding-3-small` model. 3. If you're using a custom provider, you'll need to pass in the `EMBEDDING_TEXT_MODEL=<your_mode>`, the size of the dimension of the model via `EMBEDDING_DIMENSIONS` and then pass `EMBEDDING_ENABLE_AUTO_INDEXING=true` to enable embeddings. Check out [our docs](https://docs.karakeep.app/configuration/different-ai-providers) for example models and configurations. Once you've enabled embeddings, you'll need to regenerate embeddings for all existing bookmarks. Head to the admin panel's Background Jobs page (new "Embeddings" card) and regenerate embeddings for all/pending bookmarks. This might take a while depending on how many bookmarks you have, and will cost you money (though embeddings are usually pretty cheap). NOTE: Changing the model or its dimension after embedding even a single bookmark will require you to regenerate embeddings for *all* bookmarks. ##### All Commits - fix(tagging): loosen the captcha rejection in the prompt a bit - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8550eb0`](https://github.com/karakeep-app/karakeep/commit/8550eb09) - fix(workers): wait for autoconsent in parallel with page load - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`98c52b8`](https://github.com/karakeep-app/karakeep/commit/98c52b85) - fix(tests): fix failing test after changing default model - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f249307`](https://github.com/karakeep-app/karakeep/commit/f249307b) - feat: change default inference model to gpt-5.6-luna - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1bc351a`](https://github.com/karakeep-app/karakeep/commit/1bc351a7) - fix: enable auto embedding by default for default inference configuration ([#&#8203;2976](https://github.com/karakeep-app/karakeep/issues/2976)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`bcbb577`](https://github.com/karakeep-app/karakeep/commit/bcbb5776) - fix: enable auto embedding by default for default inference configurations - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`7722c6a`](https://github.com/karakeep-app/karakeep/commit/7722c6ae) - deps: upgrade docusaurus - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ccddfcf`](https://github.com/karakeep-app/karakeep/commit/ccddfcf3) - feat: Add support for configurable ID token signing algorithm in OAuth ([#&#8203;2850](https://github.com/karakeep-app/karakeep/issues/2850)) - [@&#8203;CertStone](https://github.com/CertStone) in [`b2b2579`](https://github.com/karakeep-app/karakeep/commit/b2b2579b) - feat(landing): 28k starts - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`385ec1d`](https://github.com/karakeep-app/karakeep/commit/385ec1df) - feat: add new article quality assessment ([#&#8203;2975](https://github.com/karakeep-app/karakeep/issues/2975)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`76b477c`](https://github.com/karakeep-app/karakeep/commit/76b477c4) - fix: make queue registration idempotent - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`6f12013`](https://github.com/karakeep-app/karakeep/commit/6f120133) - i18n: some translation fixes - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3b7982c`](https://github.com/karakeep-app/karakeep/commit/3b7982c1) - i18n: Sync weblate translations - Hosted Weblate in [`590c670`](https://github.com/karakeep-app/karakeep/commit/590c6700) - feat(web): some UX improvements in signin and password forms - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`b4b9474`](https://github.com/karakeep-app/karakeep/commit/b4b94740) - feat(workers): auto-dismiss consent dialogs with autoconsent ([#&#8203;2973](https://github.com/karakeep-app/karakeep/issues/2973)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c333f24`](https://github.com/karakeep-app/karakeep/commit/c333f240) - deps: upgrade nextjs to 16.2.12 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1148889`](https://github.com/karakeep-app/karakeep/commit/11488896) - fix(workers): fix workers in dev mode - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3a0421d`](https://github.com/karakeep-app/karakeep/commit/3a0421d0) - deps: bump a bunch of deps - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a90034d`](https://github.com/karakeep-app/karakeep/commit/a90034d1) - i18n: Sync weblate translations - Hosted Weblate in [`8b4b917`](https://github.com/karakeep-app/karakeep/commit/8b4b9170) - docs: hide the chat flags for now - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`36c36e3`](https://github.com/karakeep-app/karakeep/commit/36c36e3e) - fix(auth): close account enumeration oracles in login and password reset - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`036da4c`](https://github.com/karakeep-app/karakeep/commit/036da4c0) - fix(mobile): don't silently swallow mutations fired while offline - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`9188958`](https://github.com/karakeep-app/karakeep/commit/9188958c) - fix(plugins): don't cache a rejected init promise in the meilisearch providers - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`64ec6cb`](https://github.com/karakeep-app/karakeep/commit/64ec6cbc) - fix(export): escape tag names in the netscape bookmark export - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f0381b4`](https://github.com/karakeep-app/karakeep/commit/f0381b42) - feat: add support for resaving already existing bookmarks ([#&#8203;2962](https://github.com/karakeep-app/karakeep/issues/2962)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f2f6431`](https://github.com/karakeep-app/karakeep/commit/f2f6431d) - feat(web): move keyboard shortcuts inside the profile options menu - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a698724`](https://github.com/karakeep-app/karakeep/commit/a6987247) - fix(web): fix preview screenshot scrolling ([#&#8203;2864](https://github.com/karakeep-app/karakeep/issues/2864)) - [@&#8203;VrtxOmega](https://github.com/VrtxOmega) in [`595392a`](https://github.com/karakeep-app/karakeep/commit/595392a9) - feat(web): allow triggering bulk edit on hover - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`28a48ec`](https://github.com/karakeep-app/karakeep/commit/28a48ec5) - fix(workers): denoise the log messages coming from the feedWorker - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d155fa0`](https://github.com/karakeep-app/karakeep/commit/d155fa0e) - fix(ux): make the sidebar wider on larger screens - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f417b90`](https://github.com/karakeep-app/karakeep/commit/f417b900) - feat: make it possible to trigger admin jobs for a certain duration - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`0a1821b`](https://github.com/karakeep-app/karakeep/commit/0a1821ba) - release(mobile): release mobile v1.10.0-1 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`369f5a6`](https://github.com/karakeep-app/karakeep/commit/369f5a68) - fix(mobile): improve reader contrast in dark mode - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c007bc7`](https://github.com/karakeep-app/karakeep/commit/c007bc76) - feat(mobile): add semantic search mode selector - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8175539`](https://github.com/karakeep-app/karakeep/commit/8175539e) - feat(mobile): show offline storage usage - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ec81015`](https://github.com/karakeep-app/karakeep/commit/ec810158) - release(mobile): release mobile v1.10.0 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3a6f282`](https://github.com/karakeep-app/karakeep/commit/3a6f2822) - feat(web): add semantic search to the UI ([#&#8203;2960](https://github.com/karakeep-app/karakeep/issues/2960)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`2f740d0`](https://github.com/karakeep-app/karakeep/commit/2f740d00) - feat: add semantic search ([#&#8203;2959](https://github.com/karakeep-app/karakeep/issues/2959)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`71ea4d9`](https://github.com/karakeep-app/karakeep/commit/71ea4d9b) - feat(mcp): more MCP tools - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8de38d4`](https://github.com/karakeep-app/karakeep/commit/8de38d48) - feat(cli): expose assets and readable conent in the CLI - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a296871`](https://github.com/karakeep-app/karakeep/commit/a2968718) - feat(api): add an api for fetching readable content of a bookmark. [#&#8203;2660](https://github.com/karakeep-app/karakeep/issues/2660) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f391113`](https://github.com/karakeep-app/karakeep/commit/f3911139) - feat(mcp): add ability to fetch assets via signed URLs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`06d99bd`](https://github.com/karakeep-app/karakeep/commit/06d99bd6) - fix(mobile): better error message in the login page - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`e88a606`](https://github.com/karakeep-app/karakeep/commit/e88a606c) - fix(mobile): fix formsheet colors - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`b8fe26a`](https://github.com/karakeep-app/karakeep/commit/b8fe26ad) - feat(mobile): offline reading ([#&#8203;2957](https://github.com/karakeep-app/karakeep/issues/2957)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`2075c33`](https://github.com/karakeep-app/karakeep/commit/2075c33a) - feat(mobile): minor cleanups to the login page - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`9b1b2b7`](https://github.com/karakeep-app/karakeep/commit/9b1b2b73) - fix(mobile): add a loading indicator to article content - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`198ea1e`](https://github.com/karakeep-app/karakeep/commit/198ea1e5) - readme: drop heavy dev notice now that it's stable enough - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`bc50630`](https://github.com/karakeep-app/karakeep/commit/bc506307) - ci: fix failing trpc test - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`bf2749e`](https://github.com/karakeep-app/karakeep/commit/bf2749e8) - fix: add timeSafe checks for signed tokens and api keys - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`e8a138f`](https://github.com/karakeep-app/karakeep/commit/e8a138f1) - fix: drop redundant db indicies - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`7ced044`](https://github.com/karakeep-app/karakeep/commit/7ced044b) - feat: archive old completed sessions - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1717af8`](https://github.com/karakeep-app/karakeep/commit/1717af84) - fix: upgrade some packages - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f0d254d`](https://github.com/karakeep-app/karakeep/commit/f0d254d0) - fix: respect PORT in Docker healthchecks ([#&#8203;2948](https://github.com/karakeep-app/karakeep/issues/2948)) - [@&#8203;zerone0x](https://github.com/zerone0x) in [`7d703b8`](https://github.com/karakeep-app/karakeep/commit/7d703b8b) - fix: track import progress per-job ([#&#8203;2950](https://github.com/karakeep-app/karakeep/issues/2950)) - [@&#8203;jcgoodwin86](https://github.com/jcgoodwin86) in [`4224da4`](https://github.com/karakeep-app/karakeep/commit/4224da4f) - feat: prep for sub tier overrides - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`5e5692f`](https://github.com/karakeep-app/karakeep/commit/5e5692f7) - feat: add chat configuration and persistence schema - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`28cb149`](https://github.com/karakeep-app/karakeep/commit/28cb149d) - refactor(web): replace AI Elements message components with shadcn chat components - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4423da1`](https://github.com/karakeep-app/karakeep/commit/4423da19) - \[mobile] Upgrade mobile app to Expo SDK 56 ([#&#8203;2946](https://github.com/karakeep-app/karakeep/issues/2946)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`08fd866`](https://github.com/karakeep-app/karakeep/commit/08fd866b) - fix: rename root package to [@&#8203;karakeep/root](https://github.com/karakeep/root). fixes [#&#8203;2939](https://github.com/karakeep-app/karakeep/issues/2939) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`7ff5a46`](https://github.com/karakeep-app/karakeep/commit/7ff5a46f) - \[network] fix dns rebinding problems post internal hostname validation ([#&#8203;2945](https://github.com/karakeep-app/karakeep/issues/2945)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`978544d`](https://github.com/karakeep-app/karakeep/commit/978544df) - fix: add missing indicies needed for bookmark deletion. [#&#8203;2669](https://github.com/karakeep-app/karakeep/issues/2669) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`eb1f472`](https://github.com/karakeep-app/karakeep/commit/eb1f4727) - i18n: fill missing Korean (ko) translation keys ([#&#8203;2938](https://github.com/karakeep-app/karakeep/issues/2938)) - [@&#8203;moduvoice](https://github.com/moduvoice) in [`7b19b0d`](https://github.com/karakeep-app/karakeep/commit/7b19b0da) - fix(mobile): propagate error message in sharing screen - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1b7b247`](https://github.com/karakeep-app/karakeep/commit/1b7b2477) - revert: remove --headless=new flag from default chrome docker compose ([#&#8203;2936](https://github.com/karakeep-app/karakeep/issues/2936)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4af8bb2`](https://github.com/karakeep-app/karakeep/commit/4af8bb2f) - release(mcp): Bump mcp server to 0.32.1 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`aa78aa8`](https://github.com/karakeep-app/karakeep/commit/aa78aa8f) - feat(mcp): add list CRUD, tag CRUD, delete-bookmark ([#&#8203;2917](https://github.com/karakeep-app/karakeep/issues/2917)) - [@&#8203;joestump](https://github.com/joestump) in [`831d6bf`](https://github.com/karakeep-app/karakeep/commit/831d6bf5) - refactor: split crawler file into separate modules ([#&#8203;2933](https://github.com/karakeep-app/karakeep/issues/2933)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`b2c52c9`](https://github.com/karakeep-app/karakeep/commit/b2c52c9c) - feat: add extra metadata parse in the probe fetch ([#&#8203;2932](https://github.com/karakeep-app/karakeep/issues/2932)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8439928`](https://github.com/karakeep-app/karakeep/commit/84399288) - fix(crawler): preserve inline GIF data images ([#&#8203;2928](https://github.com/karakeep-app/karakeep/issues/2928)) - [@&#8203;zerone0x](https://github.com/zerone0x) in [`28d321c`](https://github.com/karakeep-app/karakeep/commit/28d321ce) - feat: add a script to adhocly test the crawler + improve chrome flags ([#&#8203;2929](https://github.com/karakeep-app/karakeep/issues/2929)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`5b0d7fe`](https://github.com/karakeep-app/karakeep/commit/5b0d7fe6) - fix(inference): only set JSON response\_format for schema requests ([#&#8203;2926](https://github.com/karakeep-app/karakeep/issues/2926)) - [@&#8203;eviaaaaa](https://github.com/eviaaaaa) in [`545e6f8`](https://github.com/karakeep-app/karakeep/commit/545e6f80) - fix: fix banner extraction of singlefile archives - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ba6adfc`](https://github.com/karakeep-app/karakeep/commit/ba6adfce) - fix: ratelimit password login attempts - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f7d0429`](https://github.com/karakeep-app/karakeep/commit/f7d04297) - fix: sanitize input url and list names - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ffd1058`](https://github.com/karakeep-app/karakeep/commit/ffd10589) - feat: tagging prompt hardening - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`9ceb077`](https://github.com/karakeep-app/karakeep/commit/9ceb077c) - fix(mcp): coerce null htmlContent before turndown in get-bookmark-content ([#&#8203;2915](https://github.com/karakeep-app/karakeep/issues/2915)) - [@&#8203;joestump](https://github.com/joestump) in [`1ebf5b0`](https://github.com/karakeep-app/karakeep/commit/1ebf5b08) - \[codex] Document browser extension dev port ([#&#8203;2918](https://github.com/karakeep-app/karakeep/issues/2918)) - [@&#8203;archit-goyal](https://github.com/archit-goyal) in [`fc1c127`](https://github.com/karakeep-app/karakeep/commit/fc1c127d) - fix: forget password workflow - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c3d6028`](https://github.com/karakeep-app/karakeep/commit/c3d60280) - feat(stripe): add a trpc command for force syncing customer detail - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a787ee4`](https://github.com/karakeep-app/karakeep/commit/a787ee47) - fix(billing): pick the latest active subscription when user has multiple subs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`9bcac9c`](https://github.com/karakeep-app/karakeep/commit/9bcac9cc) - ci: disable plugin tests - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`43425e1`](https://github.com/karakeep-app/karakeep/commit/43425e1d) - chore: drop jemalloc support - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`e862bf3`](https://github.com/karakeep-app/karakeep/commit/e862bf3b) - fix(restate): lower inactivity timeouts on dispatchers ([#&#8203;2911](https://github.com/karakeep-app/karakeep/issues/2911)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ac51b35`](https://github.com/karakeep-app/karakeep/commit/ac51b359) - feat(i18n): add missing Japanese (ja) translations (keyboard shortcuts, admin embeddings) ([#&#8203;2903](https://github.com/karakeep-app/karakeep/issues/2903)) - [@&#8203;mahirhir](https://github.com/mahirhir) in [`475483e`](https://github.com/karakeep-app/karakeep/commit/475483e3) - docs(community): add wdoc to community projects ([#&#8203;2904](https://github.com/karakeep-app/karakeep/issues/2904)) - [@&#8203;thiswillbeyourgithub](https://github.com/thiswillbeyourgithub) in [`c93cbc2`](https://github.com/karakeep-app/karakeep/commit/c93cbc2a) - feat(landing): 26k stars. Take 2 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`9879eb5`](https://github.com/karakeep-app/karakeep/commit/9879eb5d) - docker: fix monolith build in docker - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`05c4e04`](https://github.com/karakeep-app/karakeep/commit/05c4e04a) - feat(landing): 26k stars - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3afe675`](https://github.com/karakeep-app/karakeep/commit/3afe675a) - fix(inference): add OpenAI request timeout config ([#&#8203;2876](https://github.com/karakeep-app/karakeep/issues/2876)) - [@&#8203;optix2000](https://github.com/optix2000) in [`c0ac8a4`](https://github.com/karakeep-app/karakeep/commit/c0ac8a47) - feat(mobile): easy clipboard saving ([#&#8203;2868](https://github.com/karakeep-app/karakeep/issues/2868)) - [@&#8203;InventorB](https://github.com/InventorB) in [`207016e`](https://github.com/karakeep-app/karakeep/commit/207016e8) - fix(workers): Fix BROWSER\_WEB\_URL IPv6 host resolution ([#&#8203;2863](https://github.com/karakeep-app/karakeep/issues/2863)) - [@&#8203;VrtxOmega](https://github.com/VrtxOmega) in [`cf1964f`](https://github.com/karakeep-app/karakeep/commit/cf1964ff) - chore: AI assistant component prep ([#&#8203;2861](https://github.com/karakeep-app/karakeep/issues/2861)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`76cbbf3`](https://github.com/karakeep-app/karakeep/commit/76cbbf39) - fix(api): make metrics registration idempotent - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4ae50c5`](https://github.com/karakeep-app/karakeep/commit/4ae50c52) - fix: fast track tagging after embedding generation ([#&#8203;2860](https://github.com/karakeep-app/karakeep/issues/2860)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`6369416`](https://github.com/karakeep-app/karakeep/commit/63694167) - feat: add embeddings-based potentially relevant tags to LLM context d… ([#&#8203;2858](https://github.com/karakeep-app/karakeep/issues/2858)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`2fbd77b`](https://github.com/karakeep-app/karakeep/commit/2fbd77bd) - feat: add bookmark embedding support ([#&#8203;2857](https://github.com/karakeep-app/karakeep/issues/2857)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`84ab354`](https://github.com/karakeep-app/karakeep/commit/84ab354d) - deps: upgrade meilisearch client package - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`af3677a`](https://github.com/karakeep-app/karakeep/commit/af3677a1) - feat(cli): add --description flag to bookmarks update command ([#&#8203;2856](https://github.com/karakeep-app/karakeep/issues/2856)) - [@&#8203;TanishValesha](https://github.com/TanishValesha) in [`8463ad0`](https://github.com/karakeep-app/karakeep/commit/8463ad07) - fix: fix twitter renderer - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`dc26820`](https://github.com/karakeep-app/karakeep/commit/dc268202) - fix: fix plugin and stats registration in nextjs across reloads - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a043c88`](https://github.com/karakeep-app/karakeep/commit/a043c889) - fix(workers): fix misleading error message when rss import fails to create bookmark. fixes [#&#8203;2838](https://github.com/karakeep-app/karakeep/issues/2838) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`9651c79`](https://github.com/karakeep-app/karakeep/commit/9651c79c) - release(mobile): release mobile v1.9.5-2 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`78e012f`](https://github.com/karakeep-app/karakeep/commit/78e012f2) - fix(mobile): fix taglist skeleton - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8d9a015`](https://github.com/karakeep-app/karakeep/commit/8d9a0154) - release(mobile): release mobile v1.9.5-1 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a031d43`](https://github.com/karakeep-app/karakeep/commit/a031d433) - fix(mobile): remove redundant toasts in the bookmarks info page - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4e677c5`](https://github.com/karakeep-app/karakeep/commit/4e677c55) - fix(mobile): change default layout to be list layout - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`5332ca3`](https://github.com/karakeep-app/karakeep/commit/5332ca33) - fix(mobile): add bookmark grid settings to favs and archive pages - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c272037`](https://github.com/karakeep-app/karakeep/commit/c2720375) - release(mobile): release mobile v1.9.5 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`5d29229`](https://github.com/karakeep-app/karakeep/commit/5d292292) - feat(mobile): add mobile sorting support. fixes [#&#8203;2777](https://github.com/karakeep-app/karakeep/issues/2777) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d5ea3f5`](https://github.com/karakeep-app/karakeep/commit/d5ea3f5a) - fix(mobile): fix the padding of the tag pills - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`0fe7d70`](https://github.com/karakeep-app/karakeep/commit/0fe7d706) - feat(mobile): add different mobile layouts to the mobile app ([#&#8203;2837](https://github.com/karakeep-app/karakeep/issues/2837)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`bc29d61`](https://github.com/karakeep-app/karakeep/commit/bc29d61d) - feat(mobile): change tag colors - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`633016c`](https://github.com/karakeep-app/karakeep/commit/633016c7) - feat(mobile): add archive,fav,share and highlights to info page - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c32b7f9`](https://github.com/karakeep-app/karakeep/commit/c32b7f99) - refactor(mobile): use a composite component for the bookmark card - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`77c6523`](https://github.com/karakeep-app/karakeep/commit/77c6523c) - feat: instagram renderer ([#&#8203;2836](https://github.com/karakeep-app/karakeep/issues/2836)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3c1a020`](https://github.com/karakeep-app/karakeep/commit/3c1a0201) - fix(web): fix PWA installaiblity in chrome - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`95555f1`](https://github.com/karakeep-app/karakeep/commit/95555f1f) - fix(web): fix alignment of keyboard button in global actions - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`0893e51`](https://github.com/karakeep-app/karakeep/commit/0893e512) - fix(web): change sidebar collapse toggle to chevrons - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`e6756e0`](https://github.com/karakeep-app/karakeep/commit/e6756e05) - fix(mobile): remove unncessary toast from manage list actions on mobile - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`199d032`](https://github.com/karakeep-app/karakeep/commit/199d0327) - fix(docker): set yt-dlp to use bundled node as JS runtime ([#&#8203;2805](https://github.com/karakeep-app/karakeep/issues/2805)) - [@&#8203;pike00](https://github.com/pike00) in [`e92f2f0`](https://github.com/karakeep-app/karakeep/commit/e92f2f02) - fix(web): render PDFs via <embed> so Safari can display them ([#&#8203;2806](https://github.com/karakeep-app/karakeep/issues/2806)) - [@&#8203;KayMi](https://github.com/KayMi) in [`ff28861`](https://github.com/karakeep-app/karakeep/commit/ff288613) - chore: upgrade to pnpm 11 ([#&#8203;2833](https://github.com/karakeep-app/karakeep/issues/2833)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8f19963`](https://github.com/karakeep-app/karakeep/commit/8f199631) - build: stop update old personal docker images - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d10effa`](https://github.com/karakeep-app/karakeep/commit/d10effa2) - chore: pin github action deps ([#&#8203;2832](https://github.com/karakeep-app/karakeep/issues/2832)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`341f721`](https://github.com/karakeep-app/karakeep/commit/341f7217) - chore: Add seed snapshot generator ([#&#8203;2829](https://github.com/karakeep-app/karakeep/issues/2829)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`53da5e2`](https://github.com/karakeep-app/karakeep/commit/53da5e2b) - deps: upgrade nextjs to 16 ([#&#8203;2827](https://github.com/karakeep-app/karakeep/issues/2827)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ff57d9c`](https://github.com/karakeep-app/karakeep/commit/ff57d9c2) - chore: improve AGENTS.md ([#&#8203;2826](https://github.com/karakeep-app/karakeep/issues/2826)) - [@&#8203;ElectricTea](https://github.com/ElectricTea) in [`b45d41c`](https://github.com/karakeep-app/karakeep/commit/b45d41cc) - fix: fix error on admin user list due to react query hydration ([#&#8203;2824](https://github.com/karakeep-app/karakeep/issues/2824)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1997bd3`](https://github.com/karakeep-app/karakeep/commit/1997bd38) - chore: add a .ignore file to filter out noisy dirs from search - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`37b3712`](https://github.com/karakeep-app/karakeep/commit/37b37124) - docs: update SECURITY.md - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4b22229`](https://github.com/karakeep-app/karakeep/commit/4b22229d) - deps: upgrade nextjs to 15.5.18 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f823724`](https://github.com/karakeep-app/karakeep/commit/f8237243) - fix: serve unoptimized nextjs images - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`61a2bde`](https://github.com/karakeep-app/karakeep/commit/61a2bdeb) - release(mobile): release mobile v1.9.4 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`01d636f`](https://github.com/karakeep-app/karakeep/commit/01d636f2) - fix(mobile): improve perf of manage\_tags page - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`84dfea5`](https://github.com/karakeep-app/karakeep/commit/84dfea5e) - fix(mobile): fix color of list separator in recent searches list - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d426cdb`](https://github.com/karakeep-app/karakeep/commit/d426cdb2) - fix(mobile): fix formsheet padding in manage\_lists, manage\_tags and info sheets - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`41633c2`](https://github.com/karakeep-app/karakeep/commit/41633c2a) - feat(mobile): tablet/iPad UI polish for toolbar and FAB ([#&#8203;2788](https://github.com/karakeep-app/karakeep/issues/2788)) - [@&#8203;esimkowitz](https://github.com/esimkowitz) in [`d871f57`](https://github.com/karakeep-app/karakeep/commit/d871f57b) - fix(mobile): stack Upload Image Quality slider on two lines ([#&#8203;2794](https://github.com/karakeep-app/karakeep/issues/2794)) - [@&#8203;esimkowitz](https://github.com/esimkowitz) in [`75b6e91`](https://github.com/karakeep-app/karakeep/commit/75b6e910) - fix(mobile): fix insets on new iOS settings formSheet modal ([#&#8203;2793](https://github.com/karakeep-app/karakeep/issues/2793)) - [@&#8203;esimkowitz](https://github.com/esimkowitz) in [`7ce940a`](https://github.com/karakeep-app/karakeep/commit/7ce940a5) - docs: update screenshots in the docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`66a7ac4`](https://github.com/karakeep-app/karakeep/commit/66a7ac48) - release(extension): Release version 1.2.11 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f638064`](https://github.com/karakeep-app/karakeep/commit/f638064e) - feat(browser-extension): request host permission at runtime for client side crawling ([#&#8203;2784](https://github.com/karakeep-app/karakeep/issues/2784)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1a7a2fe`](https://github.com/karakeep-app/karakeep/commit/1a7a2fef) - docs: minor docs update to mention the skills and the new singlefile integration - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1c7872c`](https://github.com/karakeep-app/karakeep/commit/1c7872ce) - release(cli): release CLI 0.32.0 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ad9ef51`](https://github.com/karakeep-app/karakeep/commit/ad9ef514) - release: release cli, sdk, mobile and extension - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`58f9b30`](https://github.com/karakeep-app/karakeep/commit/58f9b302) - release(docs): release the 0.32 docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d28ff5f`](https://github.com/karakeep-app/karakeep/commit/d28ff5fd) </details> --- ### Configuration 📅 **Schedule**: (in timezone Europe/Rome) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4yLjEiLCJ1cGRhdGVkSW5WZXIiOiI0NC43LjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
feat(container): update ghcr.io/karakeep-app/karakeep ( 0.32.0 ➔ 0.33.1 )
Some checks failed
Labeler / Labeler (pull_request) Successful in 4s
Lint / actionlint (pull_request) Successful in 6s
AI PR Review / AI PR Review (pull_request) Failing after 9s
Lint / yamllint (pull_request) Successful in 46s
Konflate 2 resources changed
041934ca97
| datasource | package                       | from   | to     |
| ---------- | ----------------------------- | ------ | ------ |
| docker     | ghcr.io/karakeep-app/karakeep | 0.32.0 | 0.33.1 |
Collaborator

konflate — summary

+0 added · 2 changed · −0 removed — 2 resources · 2 apps

Routine — only container-image and chart-version changes; nothing else changed.

Image changes

image from to
ghcr.io/karakeep-app/karakeep sha256:64d6a9bbf2d3… sha256:5467873df817…

View the full rendered diff →

konflate · rendered 041934c · advisory, not a gate

<!-- konflate:pr-1946 --> ### konflate — summary **+0 added · 2 changed · −0 removed** — 2 resources · 2 apps **Routine** — only container-image and chart-version changes; nothing else changed. **Image changes** | image | from | to | |---|---|---| | `ghcr.io/karakeep-app/karakeep` | `sha256:64d6a9bbf2d3…` | `sha256:5467873df817…` | [View the full rendered diff →](https://konflate.aresu.eu/#/pr/1946) <sub>konflate · rendered `041934c` · advisory, not a gate</sub>
Some checks failed
Labeler / Labeler (pull_request) Successful in 4s
Lint / actionlint (pull_request) Successful in 6s
AI PR Review / AI PR Review (pull_request) Failing after 9s
Lint / yamllint (pull_request) Successful in 46s
Konflate 2 resources changed
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/ghcr.io-karakeep-app-karakeep-0.x:renovate/ghcr.io-karakeep-app-karakeep-0.x
git switch renovate/ghcr.io-karakeep-app-karakeep-0.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/ghcr.io-karakeep-app-karakeep-0.x
git switch renovate/ghcr.io-karakeep-app-karakeep-0.x
git rebase main
git switch main
git merge --ff-only renovate/ghcr.io-karakeep-app-karakeep-0.x
git switch renovate/ghcr.io-karakeep-app-karakeep-0.x
git rebase main
git switch main
git merge --no-ff renovate/ghcr.io-karakeep-app-karakeep-0.x
git switch main
git merge --squash renovate/ghcr.io-karakeep-app-karakeep-0.x
git switch main
git merge --ff-only renovate/ghcr.io-karakeep-app-karakeep-0.x
git switch main
git merge renovate/ghcr.io-karakeep-app-karakeep-0.x
git push origin main
Sign in to join this conversation.
No description provided.