Update ghcr.io/hoarder-app/hoarder Docker tag to v0.24.1 - autoclosed #195

Closed
renovate-bot wants to merge 1 commits from renovate/ghcr.io-hoarder-app-hoarder-0.x into main
Collaborator

This PR contains the following updates:

Package Update Change
ghcr.io/hoarder-app/hoarder minor 0.23.2 -> 0.24.1

Release Notes

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

v0.24.1: 0.24.1

Compare Source

This is a hotfix release for 0.24.0.

🐞 Fixes

  • Reverts the smart list expansion in list: and is:inlist qualifiers as it can cause Karakeep's server to OOM (#​1321).
  • Adds missing translations for the new features released in 0.24.0.

v0.24.0: 0.24.0

Compare Source

0.24.0 – Riding the MCP hype

Welcome to the 0.24.0 release of Karakeep! This release packs a ton of new stuff (we're back to shipping folks!). This release introduces a new MCP server for interacting with Karakeep through LLMs, a new rule generic rule engine for more control over organizing your bookmarks, new search qualifiers for feeds and bookmark age, overdue edit dialog for bookmark details, some UI polishing and more! This release also welcomes a TON of new contributors, @​brandonw3612, @​yorch, @​Summon528, @​dotvhs, @​YTKme, @​hasansino, @​gomnitrix, @​adripo, @​meysam81, @​SteffoSpieler, @​jkywalker (And I probably missed some).

If you enjoy using Karakeep, consider supporting the project here or via GitHub here.

New Features 🚀

MCP Server

Unless you've been living under a rock recently, you've heard about the recent explosion of MCP servers all over the internet.
We're not going to miss the hype. This release ships a new MCP server (docs) that allows you to interact with your Karakeep instance and bookmarks through extrenal LLMs.
You can ask the LLM to summarize your bookmarks, search the web and send what it finds to Karakeep, or archive your recent chat as a text note in karakeep.
It can create new lists, attach tags and more to help you organize your bookmarks.

CleanShot 2025-04-27 at 7  39 35@​2x

More demos in the screenshot section.

Generic Rule Engine ⚙️

Karakeep was born because I don't want to spend time organizing what I hoard. I just throw stuff in there and karakeep's tagging and search will help me retrieve it later.
However, turns out that not everyone is in the same camp. If you're one of those people who enjoy organizing their bookmarks, this feature is for you.
This release introduces a new generic rule engine that allows you to define arbitrary processing rules for organizing your bookmarks.

Some examples:

  1. If a bookmark is added, and it's coming from youtube, tag it with "#youtube" and "#video".
  2. If a bookmark is favourited, download an offline archive for it.
  3. If the tag "#fashion" is added to a bookmark, and this bookmark is an image, then add it my "Inspiration" list (You're better off using a smart list for this though).

CleanShot 2025-04-27 at 7  35 55@​2x

⚠️ The firefox extension is back under a new name (Action Required) ⚠️

After the rebranding unfortunatly we couldn't get the old Firefox extension back, so we had to publish a new one (link).
If you're using the old "firefox" extension, you MUST migrate to the new one manually otherwise you won't be getting future updates.

And more!
  • gpt-4.1-mini is the new default text model: The default OpenAI text model changed to the new 4.1-mini. It's slightly more expensive than 4o-mini, but is supposed to be much smarter. The image model remains as 4o-mini as 4.1-mini is more expensive for images.
  • New Search & Smart list Qualifiers:
    • New “age:” search qualifier to show bookmarks older or newer than a given duration (by @​brandonw3612).
    • New "feed:" search qualifier to find bookmarks imported from certain RSS feeds.
    • You can find the full query language here.
  • Edit Bookmark Details: You can now edit almost all the details of bookmarks. The URL, summary, creation date, everything. This is obviously very overdue.
  • List Merging: You can now merge lists together thanks to @​gomnitrix.
  • Import Tab Session Manager Sessions: Bulk-import your Chrome/Firefox Tab Session Manager session files as Karakeep bookmarks by @​yorch.
  • Configuring other AI providers: We added documentations for how to configure other AI providers beside OpenAI (link). This includes providers like Google AI Studio, OpenRouter, Perplexity, etc.
  • Karakeep on TrueNAS: People using TrueNAS can now find Karakeep in TrueNAS' app store thanks to @​stavros-k.

UX Improvements

  • Some UI polish
    – Reduced shadows, lighter font weights, smaller editor box following the suggestions of @​dotvhs in #​1261!
    – Removed focus rings where they don't matter much, fix popovers to the emoji picker (by @​Mxrk), and list items in the sidebar now get truncated if they're long.
    – Fixed margins of the “New List” button, and fixed spinner visibility during AI summarization
  • Cached content is now called “Reader Mode” content.
  • There's now a nice looking "No bookmarks" banner for search and empty smart lists.
  • Lists now can have a short description beside their name (by @​ekambains).
  • A new monochrome icon for android builds by @​SteffoSpieler.
  • Copy link button now gets greyed out when on a non-secure context by @​ekambains.
  • The github link in the sidebar now works correctly for people on the nightly build thanks to @​hasansino.

For Developers 🛠️

  • Added includeContent to the API endpoints that return bookmarks (Listing, search, etc) to control whether the endpoint should include the content of the bookmark (which can be huge or not).
    • ⚠️ For backward compatibility, this defaults to true, but starting from the next release, this will default to false. So if your tool relies on the content of the bookmarks, start passing this to true now.
  • The API docs have a new look. The new look also fixes the enum-like requests types (like the one in createBookmark).

Fixes 🐛

  • Smart lists in search: Smart lists are now correctly resolved in the search qualifiers list: and is:inlist.
  • A much faster homepage loading times: If you've been a user for the SingleFile extension, Karakeep's homepage might have started getting slower recently. The UI was accidently downloading a big chunk of the archive in the homepage when it's not needed. This is now fixed.
  • Faster Imports: Importing bookmarks used to be extremely slow, now it's done with much higher parallelism and should be significantly faster.
  • Dark-mode icons for the firefox extension @​L-K-M
  • Fixed the list getting opened when editing it from the sidebar.
  • Added a new INFERENCE_OUTPUT_SCHEMA configuration to restore support for models that only works with JSON mode (instead of the newer structured output mode).
  • Passwords stored in the database are now salted. For backward compatibility, existing users will continue using an empty salt until they change their password.
  • Karakeep now closes the browser after it's done crawling in "on demand" mode by @​Summon528.
  • Fixed a bug in content extraction that might result in a suboptimal "cached content" being shown.
  • Triggering a search re-index now drops all the documents first to avoid dangling documents.

Community Projects 💡

Github 2 Karakeep Importer

By @​hasansino

Exports your github stars automatically to Karakeep! Get it here.

Screenshots 📸

MCP Demo

CleanShot 2025-04-27 at 6  57 47
CleanShot 2025-04-27 at 6  59 25
CleanShot 2025-04-27 at 7  08 38

The new "No Bookmarks banner"

CleanShot 2025-04-27 at 7  41 54@​2x

Bookmark Editing Dialog

CleanShot 2025-04-27 at 7  42 52@​2x

Upgrading 📦

If you’re using KARAKEEP_VERSION=release:

docker compose pull && docker compose up -d

If you pin to a specific version, update KARAKEEP_VERSION, then:

docker compose pull && docker compose up -d

All Commits


Configuration

📅 Schedule: Branch creation - "* */1 * * *" in timezone US/Central, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/hoarder-app/hoarder](https://github.com/karakeep-app/karakeep) | minor | `0.23.2` -> `0.24.1` | --- ### Release Notes <details> <summary>karakeep-app/karakeep (ghcr.io/hoarder-app/hoarder)</summary> ### [`v0.24.1`](https://github.com/karakeep-app/karakeep/releases/tag/v0.24.1): 0.24.1 [Compare Source](https://github.com/karakeep-app/karakeep/compare/v0.24.0...v0.24.1) This is a hotfix release for [0.24.0](https://github.com/karakeep-app/karakeep/releases/tag/v0.24.0). #### 🐞 Fixes - Reverts the smart list expansion in `list:` and `is:inlist` qualifiers as it can cause Karakeep's server to OOM ([#&#8203;1321](https://github.com/karakeep-app/karakeep/issues/1321)). - Adds missing translations for the new features released in `0.24.0`. ### [`v0.24.0`](https://github.com/karakeep-app/karakeep/releases/tag/v0.24.0): 0.24.0 [Compare Source](https://github.com/karakeep-app/karakeep/compare/v0.23.2...v0.24.0) ### 0.24.0 – Riding the MCP hype Welcome to the 0.24.0 release of Karakeep! This release packs a ton of new stuff (we're back to shipping folks!). This release introduces a new MCP server for interacting with Karakeep through LLMs, a new rule generic rule engine for more control over organizing your bookmarks, new search qualifiers for feeds and bookmark age, overdue edit dialog for bookmark details, some UI polishing and more! This release also welcomes a TON of new contributors, [@&#8203;brandonw3612](https://github.com/brandonw3612), [@&#8203;yorch](https://github.com/yorch), [@&#8203;Summon528](https://github.com/Summon528), [@&#8203;dotvhs](https://github.com/dotvhs), [@&#8203;YTKme](https://github.com/YTKme), [@&#8203;hasansino](https://github.com/hasansino), [@&#8203;gomnitrix](https://github.com/gomnitrix), [@&#8203;adripo](https://github.com/adripo), [@&#8203;meysam81](https://github.com/meysam81), [@&#8203;SteffoSpieler](https://github.com/SteffoSpieler), [@&#8203;jkywalker](https://github.com/jkywalker) (And I probably missed some). > If you enjoy using Karakeep, consider supporting the project [here ☕️](https://buymeacoffee.com/mbassem) or via GitHub [here](https://github.com/sponsors/MohamedBassem). #### New Features 🚀 ##### ✨ MCP Server ✨ Unless you've been living under a rock recently, you've heard about the recent explosion of MCP servers all over the internet. We're not going to miss the hype. This release ships a new MCP server ([docs](https://docs.karakeep.app/mcp)) that allows you to interact with your Karakeep instance and bookmarks through extrenal LLMs. You can ask the LLM to summarize your bookmarks, search the web and send what it finds to Karakeep, or archive your recent chat as a text note in karakeep. It can create new lists, attach tags and more to help you organize your bookmarks. ![CleanShot 2025-04-27 at 7  39 35@&#8203;2x](https://github.com/user-attachments/assets/837fb6f6-2878-49e2-af92-a5526687b94a) More demos in the screenshot section. ##### Generic Rule Engine ⚙️ Karakeep was born because I don't want to spend time organizing what I hoard. I just throw stuff in there and karakeep's tagging and search will help me retrieve it later. However, turns out that not everyone is in the same camp. If you're one of those people who enjoy organizing their bookmarks, this feature is for you. This release introduces a new generic rule engine that allows you to define arbitrary processing rules for organizing your bookmarks. Some examples: 1. If a bookmark is added, and it's coming from youtube, tag it with "#youtube" and "#video". 2. If a bookmark is favourited, download an offline archive for it. 3. If the tag "#fashion" is added to a bookmark, and this bookmark is an image, then add it my "Inspiration" list (You're better off using a smart list for this though). ![CleanShot 2025-04-27 at 7  35 55@&#8203;2x](https://github.com/user-attachments/assets/b052451b-4a8e-4042-83e8-90abf657332d) ##### ⚠️ The firefox extension is back under a new name (Action Required) ⚠️ After the rebranding unfortunatly we couldn't get the old Firefox extension back, so we had to publish a new one ([link](https://addons.mozilla.org/en-US/firefox/addon/karakeep/)). If you're using the old "firefox" extension, you MUST migrate to the new one manually otherwise you won't be getting future updates. ##### And more! - **gpt-4.1-mini is the new default text model**: The default OpenAI text model changed to the new 4.1-mini. It's slightly more expensive than 4o-mini, but is supposed to be much smarter. The image model remains as 4o-mini as 4.1-mini is more expensive for images. - **New Search & Smart list Qualifiers**: - New “age:” search qualifier to show bookmarks older or newer than a given duration (by [@&#8203;brandonw3612](https://github.com/brandonw3612)). - New "feed:" search qualifier to find bookmarks imported from certain RSS feeds. - You can find the full query language [here](https://docs.karakeep.app/Guides/search-query-language). - **Edit Bookmark Details**: You can now edit almost all the details of bookmarks. The URL, summary, creation date, everything. This is obviously very overdue. - **List Merging**: You can now merge lists together thanks to [@&#8203;gomnitrix](https://github.com/gomnitrix). - **Import Tab Session Manager Sessions**: Bulk-import your Chrome/Firefox Tab Session Manager session files as Karakeep bookmarks by [@&#8203;yorch](https://github.com/yorch). - **Configuring other AI providers**: We added documentations for how to configure other AI providers beside OpenAI ([link](https://docs.karakeep.app/next/Guides/different-ai-providers)). This includes providers like Google AI Studio, OpenRouter, Perplexity, etc. - **Karakeep on TrueNAS**: People using TrueNAS can now find Karakeep in TrueNAS' app store thanks to [@&#8203;stavros-k](https://github.com/stavros-k). #### UX Improvements ✨ - Some UI polish – Reduced shadows, lighter font weights, smaller editor box following the suggestions of [@&#8203;dotvhs](https://github.com/dotvhs) in [#&#8203;1261](https://github.com/karakeep-app/karakeep/issues/1261)! – Removed focus rings where they don't matter much, fix popovers to the emoji picker (by [@&#8203;Mxrk](https://github.com/Mxrk)), and list items in the sidebar now get truncated if they're long. – Fixed margins of the “New List” button, and fixed spinner visibility during AI summarization - Cached content is now called “Reader Mode” content. - There's now a nice looking "No bookmarks" banner for search and empty smart lists. - Lists now can have a short description beside their name (by [@&#8203;ekambains](https://github.com/ekambains)). - A new monochrome icon for android builds by [@&#8203;SteffoSpieler](https://github.com/SteffoSpieler). - Copy link button now gets greyed out when on a non-secure context by [@&#8203;ekambains](https://github.com/ekambains). - The github link in the sidebar now works correctly for people on the nightly build thanks to [@&#8203;hasansino](https://github.com/hasansino). #### For Developers 🛠️ - Added `includeContent` to the API endpoints that return bookmarks (Listing, search, etc) to control whether the endpoint should include the content of the bookmark (which can be huge or not). - ⚠️ For backward compatibility, this defaults to `true`, but starting from the next release, this will default to `false`. So if your tool relies on the content of the bookmarks, start passing this to `true` now. - The API docs have a new look. The new look also fixes the enum-like requests types (like the one in createBookmark). #### Fixes 🐛 - **Smart lists in search**: Smart lists are now correctly resolved in the search qualifiers `list:` and `is:inlist`. - **A much faster homepage loading times**: If you've been a user for the SingleFile extension, Karakeep's homepage might have started getting slower recently. The UI was accidently downloading a big chunk of the archive in the homepage when it's not needed. This is now fixed. - **Faster Imports**: Importing bookmarks used to be extremely slow, now it's done with much higher parallelism and should be significantly faster. - Dark-mode icons for the firefox extension [@&#8203;L-K-M](https://github.com/L-K-M) - Fixed the list getting opened when editing it from the sidebar. - Added a new `INFERENCE_OUTPUT_SCHEMA` configuration to restore support for models that only works with JSON mode (instead of the newer structured output mode). - Passwords stored in the database are now [salted](https://en.wikipedia.org/wiki/Salt_\(cryptography\)). For backward compatibility, existing users will continue using an empty salt until they change their password. - Karakeep now closes the browser after it's done crawling in "on demand" mode by [@&#8203;Summon528](https://github.com/Summon528). - Fixed a bug in content extraction that might result in a suboptimal "cached content" being shown. - Triggering a search re-index now drops all the documents first to avoid dangling documents. #### Community Projects 💡 ##### Github 2 Karakeep Importer *By [@&#8203;hasansino](https://github.com/hasansino)* Exports your github stars automatically to Karakeep! Get it [here](https://github.com/hasansino/github2karakeep). #### Screenshots 📸 ##### MCP Demo ![CleanShot 2025-04-27 at 6  57 47](https://github.com/user-attachments/assets/2a3e90f0-6ffe-4154-9cbf-0d56c5c9fd25) ![CleanShot 2025-04-27 at 6  59 25](https://github.com/user-attachments/assets/599138ad-ebf0-41d0-b544-874769e67675) ![CleanShot 2025-04-27 at 7  08 38](https://github.com/user-attachments/assets/df34efc9-d6a3-44ff-9cdd-195fcd87f773) ##### The new "No Bookmarks banner" ![CleanShot 2025-04-27 at 7  41 54@&#8203;2x](https://github.com/user-attachments/assets/9b503698-9b3c-41e1-b01d-9ce76eb4644b) ##### Bookmark Editing Dialog ![CleanShot 2025-04-27 at 7  42 52@&#8203;2x](https://github.com/user-attachments/assets/1c562229-8c15-44a9-b653-980521132a81) #### Upgrading 📦 If you’re using `KARAKEEP_VERSION=release`: `docker compose pull && docker compose up -d` If you pin to a specific version, update `KARAKEEP_VERSION`, then: `docker compose pull && docker compose up -d` #### All Commits - fix: Fix smart lists not working in list search qualifiers. Fixes [#&#8203;845](https://github.com/karakeep-app/karakeep/issues/845) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`6178736`](https://github.com/karakeep-app/karakeep/commit/6178736d) - docs: Update the API docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`28ca9d5`](https://github.com/karakeep-app/karakeep/commit/28ca9d5f) - fix: When triggering a re-index, drop all the documents first - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3dd98b4`](https://github.com/karakeep-app/karakeep/commit/3dd98b47) - fix(mcp): Remove extra new line in bookmark listing - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`b63366a`](https://github.com/karakeep-app/karakeep/commit/b63366a4) - fix(mcp): Fix spacing around the bookmarks - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1568fe9`](https://github.com/karakeep-app/karakeep/commit/1568fe90) - fix(mcp): Ditch JSON and respond in plain text - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1a24eb6`](https://github.com/karakeep-app/karakeep/commit/1a24eb69) - fix(web): Hide smart lists from list selectors - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d3cf3e4`](https://github.com/karakeep-app/karakeep/commit/d3cf3e4d) - feat: Implement generic rule engine ([#&#8203;1318](https://github.com/karakeep-app/karakeep/issues/1318)) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`136f126`](https://github.com/karakeep-app/karakeep/commit/136f1262) - tests: Run trpc tests in CI - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ca47be7`](https://github.com/karakeep-app/karakeep/commit/ca47be7f) - build: Provide a docker container for the MCP server - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c239634`](https://github.com/karakeep-app/karakeep/commit/c239634d) - landing: Update Homepage and Hero Image ([#&#8203;1304](https://github.com/karakeep-app/karakeep/issues/1304)) - [@&#8203;YTKme](https://github.com/YTKme) in [`1880a59`](https://github.com/karakeep-app/karakeep/commit/1880a59f) - fix(landing): all external links open in new tab ([#&#8203;1292](https://github.com/karakeep-app/karakeep/issues/1292)) - [@&#8203;ekambains](https://github.com/ekambains) in [`5ff470b`](https://github.com/karakeep-app/karakeep/commit/5ff470b4) - chore: rename missing files/conf from Hoarder to Karakeep ([#&#8203;1280](https://github.com/karakeep-app/karakeep/issues/1280)) - [@&#8203;adripo](https://github.com/adripo) in [`4296e7f`](https://github.com/karakeep-app/karakeep/commit/4296e7f4) - fix(workers): Fix dompurify to run on readability's input not output - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`86728d7`](https://github.com/karakeep-app/karakeep/commit/86728d7f) - deps: Upgrade readability to 0.6 & adblocker to 2.5.1 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f257a5b`](https://github.com/karakeep-app/karakeep/commit/f257a5ba) - fix(web): Fix margins of the new list button - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`2870332`](https://github.com/karakeep-app/karakeep/commit/2870332d) - fix(web): Fix the spinner getting hidden during AI summarization - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`6310d45`](https://github.com/karakeep-app/karakeep/commit/6310d456) - fix(web): Fix sidebar lists getting opened on edit - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1e2b2df`](https://github.com/karakeep-app/karakeep/commit/1e2b2df4) - fix: Rename cached content into reader mode - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`c42c2c3`](https://github.com/karakeep-app/karakeep/commit/c42c2c3d) - ui(web): Reduce shadows, lighten some fonts, and a smaller editor. [#&#8203;1261](https://github.com/karakeep-app/karakeep/issues/1261) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`cd632f2`](https://github.com/karakeep-app/karakeep/commit/cd632f29) - docs: Add a small doc about truenas installation - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ca58d68`](https://github.com/karakeep-app/karakeep/commit/ca58d68f) - fix: Take 2: Attempt to fix darkmode icon for extensions - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1ff9d1d`](https://github.com/karakeep-app/karakeep/commit/1ff9d1db) - fix: Attempt to fix darkmode icon for extensions - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1d9fc9b`](https://github.com/karakeep-app/karakeep/commit/1d9fc9bb) - fix: Fix server side error on clipboard check - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8c4df0f`](https://github.com/karakeep-app/karakeep/commit/8c4df0ff) - docs: Add docs for how to configure differnt AI providers - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`bd5f85f`](https://github.com/karakeep-app/karakeep/commit/bd5f85f5) - fix: FIxed sidebar link to github for nightly builds ([#&#8203;1274](https://github.com/karakeep-app/karakeep/issues/1274)) - [@&#8203;hasansino](https://github.com/hasansino) in [`06284d2`](https://github.com/karakeep-app/karakeep/commit/06284d28) - docs: Add robots.txt to prevent indexing versioned docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4008541`](https://github.com/karakeep-app/karakeep/commit/40085413) - fix(mcp): Reduce number of MCP tools and add support for pagination - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`6bae119`](https://github.com/karakeep-app/karakeep/commit/6bae1196) - fix(mcp): Fix mixed es module issue - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`293a4a0`](https://github.com/karakeep-app/karakeep/commit/293a4a0d) - release(mcp): Release mcp 0.23.5 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`7584c1f`](https://github.com/karakeep-app/karakeep/commit/7584c1f4) - tests: Add some simple crawler tests - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d732acd`](https://github.com/karakeep-app/karakeep/commit/d732acd4) - tests: Add tests for various trpc endpoints - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1d78048`](https://github.com/karakeep-app/karakeep/commit/1d780485) - docs: Refresh the API docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`812354d`](https://github.com/karakeep-app/karakeep/commit/812354de) - fix: Add includeContent to search endpoint and document it in the docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ba89a86`](https://github.com/karakeep-app/karakeep/commit/ba89a864) - feat: Add import support for Tab Session Manager ([#&#8203;1246](https://github.com/karakeep-app/karakeep/issues/1246)) - [@&#8203;yorch](https://github.com/yorch) in [`5e0f4de`](https://github.com/karakeep-app/karakeep/commit/5e0f4de1) - build: Take over the build command in the installation script - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`2328dc3`](https://github.com/karakeep-app/karakeep/commit/2328dc34) - feat(web): Add support for merging lists ([#&#8203;1231](https://github.com/karakeep-app/karakeep/issues/1231)) - [@&#8203;gomnitrix](https://github.com/gomnitrix) in [`71a4742`](https://github.com/karakeep-app/karakeep/commit/71a47426) - fix(workers): Close browser if connect on demand ([#&#8203;1151](https://github.com/karakeep-app/karakeep/issues/1151)) - [@&#8203;Summon528](https://github.com/Summon528) in [`dd990b5`](https://github.com/karakeep-app/karakeep/commit/dd990b51) - docs: Fix docs build - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`209573e`](https://github.com/karakeep-app/karakeep/commit/209573ee) - feat: Change default text model to 4.1-mini - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`adc22a7`](https://github.com/karakeep-app/karakeep/commit/adc22a76) - fix: Add password salt to the user table - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`7e39afa`](https://github.com/karakeep-app/karakeep/commit/7e39afa2) - docs: Add documentation for the new rss feed search qualifier - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d724497`](https://github.com/karakeep-app/karakeep/commit/d7244978) - feat: add support for filtering by bookmark age ([#&#8203;1228](https://github.com/karakeep-app/karakeep/issues/1228)) - [@&#8203;brandonw3612](https://github.com/brandonw3612) in [`95f504c`](https://github.com/karakeep-app/karakeep/commit/95f504c0) - fix: Dont download html content by default in the bookmark grid. Fixes [#&#8203;1198](https://github.com/karakeep-app/karakeep/issues/1198) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`5bdb2d9`](https://github.com/karakeep-app/karakeep/commit/5bdb2d94) - fix: Allow using JSON mode for ollama users. Fixes [#&#8203;1160](https://github.com/karakeep-app/karakeep/issues/1160) - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1373a7b`](https://github.com/karakeep-app/karakeep/commit/1373a7b2) - docs: Revert 0.23.2 docs and just update 0.23.1 instead - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`f3c525b`](https://github.com/karakeep-app/karakeep/commit/f3c525b7) - docs: Release the new API docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`ae76f94`](https://github.com/karakeep-app/karakeep/commit/ae76f946) - docs: Replace the OpenAPI rendering library - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`969e774`](https://github.com/karakeep-app/karakeep/commit/969e774a) - fix(landing): Add missing title tag - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`98ac31c`](https://github.com/karakeep-app/karakeep/commit/98ac31c3) - chore: hoarder-linux.sh > karakeep-linux.sh v2.1 ([#&#8203;1219](https://github.com/karakeep-app/karakeep/issues/1219)) - [@&#8203;vhsdream](https://github.com/vhsdream) in [`f072663`](https://github.com/karakeep-app/karakeep/commit/f0726635) - build: Allow auto deployment of MCP package to npm - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`bc5c1a1`](https://github.com/karakeep-app/karakeep/commit/bc5c1a1b) - fix(mcp): Allow accessing asset extracted content in MCP - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`7853096`](https://github.com/karakeep-app/karakeep/commit/7853096c) - feat: Allow editing the extracted content of an asset bookmark - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a4d5be3`](https://github.com/karakeep-app/karakeep/commit/a4d5be3a) - fix(mcp): compact the response of get bookmark lists - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8c6cfc8`](https://github.com/karakeep-app/karakeep/commit/8c6cfc8f) - ui(web): Copy link button greyed out when clipboard not available ([#&#8203;1209](https://github.com/karakeep-app/karakeep/issues/1209)) - [@&#8203;ekambains](https://github.com/ekambains) in [`46277c7`](https://github.com/karakeep-app/karakeep/commit/46277c74) - fix(mcp): Reduce token usage of the MCP server - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`e5bacda`](https://github.com/karakeep-app/karakeep/commit/e5bacda6) - feat(mobile/android): Add monochrome app icon ([#&#8203;1258](https://github.com/karakeep-app/karakeep/issues/1258)) - [@&#8203;SteffoSpieler](https://github.com/SteffoSpieler) in [`1f92ced`](https://github.com/karakeep-app/karakeep/commit/1f92ced3) - docs: replace hoarder with karakeep in CONTRIBUTING.md and FAQ ([#&#8203;1256](https://github.com/karakeep-app/karakeep/issues/1256)) - [@&#8203;Mxrk](https://github.com/Mxrk) in [`eeff55f`](https://github.com/karakeep-app/karakeep/commit/eeff55f8) - fix(web): fit popover content box to emoji picker size ([#&#8203;1257](https://github.com/karakeep-app/karakeep/issues/1257)) - [@&#8203;Mxrk](https://github.com/Mxrk) in [`6c0638b`](https://github.com/karakeep-app/karakeep/commit/6c0638be) - feat: Add an MCP server for karakeep - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`cf97bac`](https://github.com/karakeep-app/karakeep/commit/cf97bace) - feat(web): Optionally add short description to lists ([#&#8203;1225](https://github.com/karakeep-app/karakeep/issues/1225)) - [@&#8203;ekambains](https://github.com/ekambains) in [`a39cd5f`](https://github.com/karakeep-app/karakeep/commit/a39cd5f3) - docs: add Arch Linux karakeep migration instructions ([#&#8203;1218](https://github.com/karakeep-app/karakeep/issues/1218)) - [@&#8203;devome](https://github.com/devome) in [`56e6795`](https://github.com/karakeep-app/karakeep/commit/56e67956) - fix(landing): Made the year in footer dynamic ([#&#8203;1223](https://github.com/karakeep-app/karakeep/issues/1223)) - [@&#8203;ekambains](https://github.com/ekambains) in [`3364148`](https://github.com/karakeep-app/karakeep/commit/33641489) - chore: Replace hoarder with karakeep in github issue templates ([#&#8203;1247](https://github.com/karakeep-app/karakeep/issues/1247)) - [@&#8203;Mxrk](https://github.com/Mxrk) in [`8ffef68`](https://github.com/karakeep-app/karakeep/commit/8ffef681) - chore: Rename hoarder packages to karakeep - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`755fc36`](https://github.com/karakeep-app/karakeep/commit/755fc36e) - chrore: Update meilisearch version to 13.3 in both docker compose files ([#&#8203;1244](https://github.com/karakeep-app/karakeep/issues/1244)) - [@&#8203;Mxrk](https://github.com/Mxrk) in [`7f56904`](https://github.com/karakeep-app/karakeep/commit/7f569042) - i18n: Add Korean language ([#&#8203;1239](https://github.com/karakeep-app/karakeep/issues/1239)) - [@&#8203;jkywalker](https://github.com/jkywalker) in [`60a0df0`](https://github.com/karakeep-app/karakeep/commit/60a0df0b) - docs: Remove hoarder references for docusaurus config preventing the indexing - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`1608804`](https://github.com/karakeep-app/karakeep/commit/1608804f) - build: Regenerate the openapi specs and sdk - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a013a33`](https://github.com/karakeep-app/karakeep/commit/a013a338) - fix: Deprecate the updateBookmarkText trpc endpoint and replace it with updateBookmark - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`0b769c3`](https://github.com/karakeep-app/karakeep/commit/0b769c35) - feat: Allow editing bookmark details - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3207264`](https://github.com/karakeep-app/karakeep/commit/3207264f) - docs: update Arch Linux installation ([#&#8203;1216](https://github.com/karakeep-app/karakeep/issues/1216)) - [@&#8203;devome](https://github.com/devome) in [`817eb58`](https://github.com/karakeep-app/karakeep/commit/817eb588) - chore: update repo release url to karakeep ([#&#8203;1210](https://github.com/karakeep-app/karakeep/issues/1210)) - [@&#8203;meysam81](https://github.com/meysam81) in [`d1a814f`](https://github.com/karakeep-app/karakeep/commit/d1a814fb) - fix: Do clientside import dedup and parallelize import calls - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`af631eb`](https://github.com/karakeep-app/karakeep/commit/af631eb2) - feat: Add a search matcher for rss feed bookmarks - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`af6774f`](https://github.com/karakeep-app/karakeep/commit/af6774fa) - feat(web): A slightly better looking banner when no bookmarks are found - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d86628d`](https://github.com/karakeep-app/karakeep/commit/d86628df) - fix(web): Get rid of focus rings for ghost buttons - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`b17bf7d`](https://github.com/karakeep-app/karakeep/commit/b17bf7d5) - refactor: Migrate the landing page from nextjs to vite - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`3f2d356`](https://github.com/karakeep-app/karakeep/commit/3f2d3560) - fix(web): Line clamp sidebar items to a single line - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4e32b40`](https://github.com/karakeep-app/karakeep/commit/4e32b409) - fix(installation): Fix the baremetal installation script after the rebrand - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`27e5693`](https://github.com/karakeep-app/karakeep/commit/27e5693a) - release(extension): Release version 1.2.4 - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`d17eb8c`](https://github.com/karakeep-app/karakeep/commit/d17eb8c5) - fix(extenion): Added white icon for dark mode users ([#&#8203;1176](https://github.com/karakeep-app/karakeep/issues/1176)) - [@&#8203;L-K-M](https://github.com/L-K-M) in [`2753b82`](https://github.com/karakeep-app/karakeep/commit/2753b822) - fix(extension): Update extension logo and name - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4ab5a18`](https://github.com/karakeep-app/karakeep/commit/4ab5a189) - fix(mobile): Revert mobile app slug name - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`019c135`](https://github.com/karakeep-app/karakeep/commit/019c1353) - fix(mobile): Update karakeep logo and splash screen - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`49efe14`](https://github.com/karakeep-app/karakeep/commit/49efe141) - docs: Release the 0.23.1 docs - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`27324a9`](https://github.com/karakeep-app/karakeep/commit/27324a96) - chore: Rename mobile and pwa manifests to karakeep - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8a2b890`](https://github.com/karakeep-app/karakeep/commit/8a2b8902) - docs: Update installation docs with karakeep - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`4e6d314`](https://github.com/karakeep-app/karakeep/commit/4e6d3142) - build: Update image source label in the dockerfile - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`abcb9f2`](https://github.com/karakeep-app/karakeep/commit/abcb9f26) - fix: Drop the rebranding banner - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`8f470b3`](https://github.com/karakeep-app/karakeep/commit/8f470b32) - build: Build the new karakeep docker images - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a5c3db1`](https://github.com/karakeep-app/karakeep/commit/a5c3db1e) - readme: More readme fixes for the new name - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`14b85a3`](https://github.com/karakeep-app/karakeep/commit/14b85a3b) - readme: Update readme and docs for the new name - [@&#8203;MohamedBassem](https://github.com/MohamedBassem) in [`a386406`](https://github.com/karakeep-app/karakeep/commit/a3864065) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* */1 * * *" in timezone US/Central, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIxMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJpbWFnZSJdfQ==-->
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from 4349fa3cdb to a4410b4dc1 2025-04-28 00:31:41 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from a4410b4dc1 to 331a66f7ef 2025-04-28 01:01:39 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from 331a66f7ef to a566cb57bc 2025-04-28 03:01:00 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from a566cb57bc to 405e1eea9a 2025-04-28 09:02:06 +00:00 Compare
renovate-bot changed title from Update ghcr.io/hoarder-app/hoarder Docker tag to v0.24.0 to Update ghcr.io/hoarder-app/hoarder Docker tag to v0.24.1 2025-04-28 09:02:07 +00:00
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from 405e1eea9a to c3a9615927 2025-04-28 19:37:27 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from c3a9615927 to 2997591fc0 2025-04-28 20:01:12 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from 2997591fc0 to 5595276761 2025-04-29 09:31:59 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from 5595276761 to fbfa11b4e0 2025-04-29 19:01:18 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from fbfa11b4e0 to ba699cba44 2025-04-29 19:31:24 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from ba699cba44 to c73640a607 2025-04-29 21:31:39 +00:00 Compare
renovate-bot force-pushed renovate/ghcr.io-hoarder-app-hoarder-0.x from 3e67f544ab to beff84fd3a 2025-04-29 23:32:04 +00:00 Compare
renovate-bot changed title from Update ghcr.io/hoarder-app/hoarder Docker tag to v0.24.1 to Update ghcr.io/hoarder-app/hoarder Docker tag to v0.24.1 - autoclosed 2025-04-30 01:31:18 +00:00
renovate-bot closed this pull request 2025-04-30 01:31:18 +00:00
All checks were successful
lint-and-test-charts / lint-test (pull_request) Successful in 13s

Pull request closed

Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: alexlebens/infrastructure#195
No description provided.