[openstreetmap/openstreetmap-website] Bump the dependencies group with 2 updates (PR #6801)
dependabot[bot]
notifications at github.com
Wed Feb 11 23:15:48 UTC 2026
Bumps the dependencies group with 2 updates: [dalli](https://github.com/petergoldstein/dalli) and [herb](https://github.com/marcoroth/herb).
Updates `dalli` from 4.3.0 to 5.0.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/petergoldstein/dalli/blob/main/CHANGELOG.md">dalli's changelog</a>.</em></p>
<blockquote>
<h1>5.0.0</h1>
<p><strong>Breaking Changes:</strong></p>
<ul>
<li>
<p><strong>Removed binary protocol</strong> - The meta protocol is now the only supported protocol</p>
<ul>
<li>The <code>:protocol</code> option is no longer used</li>
<li>Requires memcached 1.6+ (for meta protocol support)</li>
<li>Users on older memcached versions must upgrade or stay on Dalli 4.x</li>
</ul>
</li>
<li>
<p><strong>Removed SASL authentication</strong> - The meta protocol does not support authentication</p>
<ul>
<li>Use network-level security (firewall rules, VPN) or memcached's TLS support instead</li>
<li>Users requiring SASL authentication must stay on Dalli 4.x with binary protocol</li>
</ul>
</li>
<li>
<p><strong>Ruby 3.3+ required</strong> - Dropped support for Ruby 3.1 and 3.2</p>
<ul>
<li>Ruby 3.2 reached end-of-life in March 2026</li>
<li>JRuby remains supported</li>
</ul>
</li>
</ul>
<p>Performance:</p>
<ul>
<li><strong>~7% read performance improvement</strong> (CRuby only)
<ul>
<li>Use native <code>IO#read</code> instead of custom <code>readfull</code> implementation</li>
<li>Enabled by Ruby 3.3's <code>IO#timeout=</code> support</li>
<li>JRuby continues to use <code>readfull</code> for compatibility</li>
</ul>
</li>
</ul>
<p>OpenTelemetry:</p>
<ul>
<li>Migrate to stable OTel semantic conventions (<a href="https://redirect.github.com/petergoldstein/dalli/issues/1070">#1070</a>)
<ul>
<li><code>db.system</code> renamed to <code>db.system.name</code></li>
<li><code>db.operation</code> renamed to <code>db.operation.name</code></li>
<li><code>server.address</code> now contains hostname only; <code>server.port</code> is a separate integer attribute</li>
<li><code>get_with_metadata</code> and <code>fetch_with_lock</code> now include <code>server.address</code>/<code>server.port</code></li>
</ul>
</li>
<li>Add <code>db.query.text</code> span attribute with configurable modes
<ul>
<li><code>:otel_db_statement</code> option: <code>:include</code>, <code>:obfuscate</code>, or <code>nil</code> (default: omitted)</li>
</ul>
</li>
<li>Add <code>peer.service</code> span attribute
<ul>
<li><code>:otel_peer_service</code> option for logical service naming</li>
</ul>
</li>
</ul>
<p>Internal:</p>
<ul>
<li>Simplified protocol directory structure: moved <code>lib/dalli/protocol/meta/*</code> to <code>lib/dalli/protocol/</code></li>
<li>Removed deprecated binary protocol files and SASL authentication code</li>
<li>Removed <code>require 'set'</code> (autoloaded in Ruby 3.3+)</li>
</ul>
<h1>4.3.1</h1>
<p>Bug Fixes:</p>
<ul>
<li>Fix socket compatibility with gems that monkey-patch TCPSocket (<a href="https://redirect.github.com/petergoldstein/dalli/issues/996">#996</a>, <a href="https://redirect.github.com/petergoldstein/dalli/issues/1012">#1012</a>)
<ul>
<li>Gems like <code>socksify</code> and <code>resolv-replace</code> modify <code>TCPSocket#initialize</code>, breaking Ruby 3.0+'s <code>connect_timeout:</code> keyword argument</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/petergoldstein/dalli/commit/2fbf03cb6784120ff10b1ab8d2f2493fbcd45f48"><code>2fbf03c</code></a> Merge pull request <a href="https://redirect.github.com/petergoldstein/dalli/issues/1064">#1064</a> from petergoldstein/feature/v5.0.0</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/fe2fa64185e0eaa442545303f7bfbad54e93b48f"><code>fe2fa64</code></a> Align OTel instrumentation with stable semantic conventions (<a href="https://redirect.github.com/petergoldstein/dalli/issues/1070">#1070</a>)</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/395dcb79613ed138dd27108864b2faa1014d0212"><code>395dcb7</code></a> Fix Ruby version note in upgrade guide</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/b1f092045d98787763c965c0b49605090678e87c"><code>b1f0920</code></a> Release Dalli 5.0.0 - Remove binary protocol and SASL authentication</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/ab534ffd16f8f2445be4b26b440985276f662961"><code>ab534ff</code></a> Merge pull request <a href="https://redirect.github.com/petergoldstein/dalli/issues/1066">#1066</a> from petergoldstein/fix/socket-compatibility-996-1012</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/1ce4cae1c9eda3c623d4ae2e49088f11ba693ed1"><code>1ce4cae</code></a> Update CHANGELOG for PR <a href="https://redirect.github.com/petergoldstein/dalli/issues/1069">#1069</a></li>
<li><a href="https://github.com/petergoldstein/dalli/commit/46a34a43705f68644a2d61d16d629215b6620c6a"><code>46a34a4</code></a> Fix double recording of exceptions on OTel spans (<a href="https://redirect.github.com/petergoldstein/dalli/issues/1069">#1069</a>)</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/b0a9506658fae405d5a6277cfe1b79bebf36a1af"><code>b0a9506</code></a> fix: stop double recording exceptions on spans</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/052ac00a720a66d79a249c4deb39c3f06d18d3ac"><code>052ac00</code></a> Skip SSL error stub test on JRuby</li>
<li><a href="https://github.com/petergoldstein/dalli/commit/a968aa6ecd637aaaf3d1ca4d228159ec9ab0061f"><code>a968aa6</code></a> Skip MRI-specific socket test on TruffleRuby and JRuby</li>
<li>Additional commits viewable in <a href="https://github.com/petergoldstein/dalli/compare/v4.3.0...v5.0.0">compare view</a></li>
</ul>
</details>
<br />
Updates `herb` from 0.8.9 to 0.8.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/marcoroth/herb/releases">herb's releases</a>.</em></p>
<blockquote>
<h2>v0.8.10</h2>
<h3>Parser</h3>
<ul>
<li>Upgrade Prism to v1.9.0 by <a href="https://github.com/marcoroth"><code>@marcoroth</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1110">marcoroth/herb#1110</a></li>
<li>Add error for case/when in same ERB tag by <a href="https://github.com/tvararu"><code>@tvararu</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1112">marcoroth/herb#1112</a></li>
</ul>
<h3>Engine</h3>
<ul>
<li>Handle trailing comments in ERB output tags by <a href="https://github.com/marcoroth"><code>@marcoroth</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1083">marcoroth/herb#1083</a></li>
<li>Show component names in <code>DebugVisitor</code> by <a href="https://github.com/marcoroth"><code>@marcoroth</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1132">marcoroth/herb#1132</a></li>
</ul>
<h3>Linter</h3>
<ul>
<li>Allow nested parens in <code>erb-strict-locals-comment-syntax</code> rule by <a href="https://github.com/marcoroth"><code>@marcoroth</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1141">marcoroth/herb#1141</a></li>
</ul>
<h3>Formatter</h3>
<ul>
<li>Fix heredoc formatting by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1142">marcoroth/herb#1142</a></li>
</ul>
<h3>Dev Tools</h3>
<ul>
<li>Show colored outlines in Herb Debug Menu by <a href="https://github.com/marcoroth"><code>@marcoroth</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1133">marcoroth/herb#1133</a></li>
</ul>
<h3>Language Server</h3>
<ul>
<li>Don't add <code>\n</code> when formatting ranges by <a href="https://github.com/marcoroth"><code>@marcoroth</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1126">marcoroth/herb#1126</a></li>
</ul>
<h3>libherb</h3>
<ul>
<li>Mark certain targets as <code>.PHONY</code> in Makefile by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1118">marcoroth/herb#1118</a></li>
<li>Change LLVM detection on macOS by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1123">marcoroth/herb#1123</a></li>
<li>Add test for <code>herb_read_file</code> by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1127">marcoroth/herb#1127</a></li>
<li>Remove old <code>visit</code> subcommand by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1129">marcoroth/herb#1129</a></li>
<li>Add <code>free</code> calls to <code>prism</code> command by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1128">marcoroth/herb#1128</a></li>
<li>Add default language case in <code>herb_extract</code> by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1131">marcoroth/herb#1131</a></li>
<li>Introduce <code>string_equals</code> utility function by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1130">marcoroth/herb#1130</a></li>
<li>Simplify <code>main.c</code> by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1134">marcoroth/herb#1134</a></li>
<li>Add support for <code>.envrc.local</code> by <a href="https://github.com/citizen428"><code>@citizen428</code></a> in <a href="https://redirect.github.com/marcoroth/herb/pull/1120">marcoroth/herb#1120</a></li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Bump <code>@typescript-eslint/parser</code> from 8.53.1 to 8.54.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1104">marcoroth/herb#1104</a></li>
<li>Bump zod from 4.3.5 to 4.3.6 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1105">marcoroth/herb#1105</a></li>
<li>Bump playwright from 1.57.0 to 1.58.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1103">marcoroth/herb#1103</a></li>
<li>Bump <code>@typescript-eslint/eslint-plugin</code> from 8.53.1 to 8.54.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1106">marcoroth/herb#1106</a></li>
<li>Bump <code>@shikijs/vitepress-twoslash</code> from 3.21.0 to 3.22.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1117">marcoroth/herb#1117</a></li>
<li>Bump nx from 22.3.3 to 22.4.4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1116">marcoroth/herb#1116</a></li>
<li>Bump rollup from 4.55.2 to 4.57.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1115">marcoroth/herb#1115</a></li>
<li>Bump playwright from 1.58.0 to 1.58.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1114">marcoroth/herb#1114</a></li>
<li>Bump vitepress from 2.0.0-alpha.15 to 2.0.0-alpha.16 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/marcoroth/herb/pull/1113">marcoroth/herb#1113</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/marcoroth/herb/commit/124d1cf0fe9ee420b0ee31a5a98a039cd67f126b"><code>124d1cf</code></a> <code>v0.8.10</code></li>
<li><a href="https://github.com/marcoroth/herb/commit/c0f0df78bc5df229f85d6f2cd8dbfaddc3845df4"><code>c0f0df7</code></a> Formatter: Fix heredoc formatting (<a href="https://redirect.github.com/marcoroth/herb/issues/1142">#1142</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/7b187fa8be953fbab7f299508a5953277939b5e6"><code>7b187fa</code></a> Linter: Allow nested parens in <code>erb-strict-locals-comment-syntax</code> rule (<a href="https://redirect.github.com/marcoroth/herb/issues/1141">#1141</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/c9d044ef10d92643200ead3b7a19115c9dbb4451"><code>c9d044e</code></a> Bump <code>@typescript-eslint/eslint-plugin</code> from 8.54.0 to 8.55.0 (<a href="https://redirect.github.com/marcoroth/herb/issues/1139">#1139</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/a6b924975d01b6582b7edbde3372d23cc7d2ebfd"><code>a6b9249</code></a> Bump eslint from 9.39.2 to 10.0.0 in /javascript/packages/vscode (<a href="https://redirect.github.com/marcoroth/herb/issues/1135">#1135</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/85799cfe79ac8c1bf183e00827559f53c9b026ff"><code>85799cf</code></a> Bump oxlint from 1.39.0 to 1.43.0 (<a href="https://redirect.github.com/marcoroth/herb/issues/1136">#1136</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/e27a1ad241a796bdeb22b85806d4c769effba1e9"><code>e27a1ad</code></a> Bump <code>@types/node</code> from 25.0.10 to 25.2.2 (<a href="https://redirect.github.com/marcoroth/herb/issues/1137">#1137</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/e8e09d9bbf98a6874623b952a54dcaa4640e3365"><code>e8e09d9</code></a> Bump prettier from 3.8.0 to 3.8.1 (<a href="https://redirect.github.com/marcoroth/herb/issues/1140">#1140</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/73f3e52234e56fe410c5dfe25fc1eb771a176826"><code>73f3e52</code></a> Bump <code>@types/vscode</code> from 1.108.1 to 1.109.0 (<a href="https://redirect.github.com/marcoroth/herb/issues/1138">#1138</a>)</li>
<li><a href="https://github.com/marcoroth/herb/commit/54f374018176028d75d84096890a3c0a70df432a"><code>54f3740</code></a> C: Simplify <code>main.c</code> (<a href="https://redirect.github.com/marcoroth/herb/issues/1134">#1134</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/marcoroth/herb/compare/v0.8.9...v0.8.10">compare view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions
</details>
You can view, comment on, or merge this pull request online at:
https://github.com/openstreetmap/openstreetmap-website/pull/6801
-- Commit Summary --
* Bump the dependencies group with 2 updates
-- File Changes --
M Gemfile.lock (4)
-- Patch Links --
https://github.com/openstreetmap/openstreetmap-website/pull/6801.patch
https://github.com/openstreetmap/openstreetmap-website/pull/6801.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/6801
You are receiving this because you are subscribed to this thread.
Message ID: <openstreetmap/openstreetmap-website/pull/6801 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20260211/663316c7/attachment-0001.htm>
More information about the rails-dev
mailing list