ircd: update ghcr.io/ergochat/ergo Docker tag to v2.18.0#396
Open
renovate[bot] wants to merge 1 commit intomasterfrom
Open
ircd: update ghcr.io/ergochat/ergo Docker tag to v2.18.0#396renovate[bot] wants to merge 1 commit intomasterfrom
renovate[bot] wants to merge 1 commit intomasterfrom
Conversation
Infro diff for 7fc9993
Detailstime="2026-03-22T12:58:54Z" level=warning msg="Failed to invoke grpc call. Use flag --grpc-web in grpc calls. To avoid this warning message, use flag --grpc-web."
time="2026-03-22T12:59:01Z" level=warning msg="Failed to invoke grpc call. Use flag --grpc-web in grpc calls. To avoid this warning message, use flag --grpc-web."
===== coordination.k8s.io/Lease /db9c8771.cnpg.io ======
--- /tmp/argocd-diff1887613352/db9c8771.cnpg.io-live.yaml
+++ /tmp/argocd-diff1887613352/db9c8771.cnpg.io
@@ -0,0 +1,11 @@
+apiVersion: coordination.k8s.io/v1
+kind: Lease
+metadata:
+ annotations:
+ argocd.argoproj.io/tracking-id: cloudnative-pg:coordination.k8s.io/Lease:cloudnative-pg/db9c8771.cnpg.io
+ labels:
+ app.kubernetes.io/component: manager
+ app.kubernetes.io/instance: cloudnative-pg
+ app.kubernetes.io/name: cloudnative-pg
+ name: db9c8771.cnpg.io
+spec: {}
Detailstime="2026-03-22T12:59:03Z" level=warning msg="Failed to invoke grpc call. Use flag --grpc-web in grpc calls. To avoid this warning message, use flag --grpc-web."
time="2026-03-22T12:59:06Z" level=warning msg="Failed to invoke grpc call. Use flag --grpc-web in grpc calls. To avoid this warning message, use flag --grpc-web."
===== apps/Deployment external-dns/external-dns ======
--- /tmp/argocd-diff200970166/external-dns-live.yaml
+++ /tmp/argocd-diff200970166/external-dns
@@ -172,11 +172,6 @@
- --provider=aws
- --txt-owner-id=digitalocean-hashbang
- --txt-prefix=_owner.
- - --source=crd
- - --domain-filter=hashbang.sh
- - --managed-record-types=A
- - --managed-record-types=CNAME
- - --managed-record-types=TXT
env:
- name: AWS_REGION
value: us-west-2
Detailstime="2026-03-22T12:59:11Z" level=warning msg="Failed to invoke grpc call. Use flag --grpc-web in grpc calls. To avoid this warning message, use flag --grpc-web."
time="2026-03-22T12:59:14Z" level=warning msg="Failed to invoke grpc call. Use flag --grpc-web in grpc calls. To avoid this warning message, use flag --grpc-web."
===== apps/Deployment ircd/irc-deployment ======
--- /tmp/argocd-diff1569866930/irc-deployment-live.yaml
+++ /tmp/argocd-diff1569866930/irc-deployment
@@ -29,7 +29,7 @@
app: irc
spec:
containers:
- - image: ghcr.io/ergochat/ergo:v2.17.0@sha256:81a68808a824066e5dfafa9d90792a07ee77889954402024af49a27c00e2b3dc
+ - image: ghcr.io/ergochat/ergo:v2.18.0@sha256:8e2eae935b59f5bd6c0cb567c94d8ab4f825e4c62c532e94ef09a7bbfcef30e6
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
@@ -77,7 +77,7 @@
echo "Exiting.";
command:
- /bin/sh
- image: ghcr.io/ergochat/ergo:v2.17.0@sha256:81a68808a824066e5dfafa9d90792a07ee77889954402024af49a27c00e2b3dc
+ image: ghcr.io/ergochat/ergo:v2.18.0@sha256:8e2eae935b59f5bd6c0cb567c94d8ab4f825e4c62c532e94ef09a7bbfcef30e6
imagePullPolicy: IfNotPresent
name: config-reloader
resources: {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.17.0→v2.18.0Release Notes
ergochat/ergo (ghcr.io/ergochat/ergo)
v2.18.0Compare Source
We're pleased to be publishing v2.18.0, a new stable release. This release adds support for PostgreSQL and SQLite as history backends, expands the HTTP API, and includes bug fixes and minor improvements.
This release includes changes to the config file format, all of which are fully backwards-compatible and do not require updating the file before upgrading. It includes no changes to the database file format.
Due to the additional database drivers included in the default build, the size of the Ergo executable binary has increased since v2.17.0 (for example, the Linux binary for x86-64 has increased from 16.2 MiB to 26.1 MiB). See docs/BUILD.md if you need to build a smaller binary. Conversely, if you were already building from source, you may need to adjust your build commands in order to maintain parity; consult that file for details.
Many thanks to @clbm87, @emersion, @felix, flurry, @furudean, @k4ct0, @mauropcorrea, @NyaaaWhatsUpDoc, @poVoq, @progval, @rys, Stryker, and th0th for helpful discussions, contributing patches, reporting issues, and helping test.
Config changes
server.postgresqlblock to configure a PostgreSQL history backend. (#2322, #2347)server.sqliteblock to configure a SQLite history backend. (#2352)metadata.operator-only-modificationto restrict metadata changes to IRC operators with themetadatacapability (#2287, #2369, thanks @clbm87!)server.initial-noticeto send a configurable notice to clients immediately after they connect, which can be used for open proxy detection (e.g., with HOPM) (#2317, thanks Stryker!)Added
/v1/listto list channels (#2358)/v1/defconto view or modify the DEFCON level (#2359)/v1/ns/passwdto change account passwords (#2329)draft/ACCOUNTREQUIREDin005ISUPPORT tokens whenaccounts.require-saslis enabled (#2341)Fixed
msgidtag, as required by the specification (#2350)opersblock) (#2275, #2362, thanks th0th!)CS DEOPandEXTJWTcausing client disconnection (#2345, #2346, thanks @k4ct0!)REDACTresponses (#2319, #2320)FAILresponses toWEBPUSH(#2351)+l(user limit) channel mode now rejects non-positive values with an appropriate error (#2325, thanks @progval!)METADATAnotifications for that user even without theextended-monitorcapability (#2309, #2310)proxy: truelisteners (#2334)accounts.bcrypt-costconfig value is now validated at config load time (#2311, #2312, thanks @rys!)Changed
/v1/ns/prefix (/v1/ns/info,/v1/ns/list,/v1/ns/passwd). The previous endpoint names (/v1/account_details,/v1/account_list) are retained as aliases for backwards compatibility. (#2329)/v1/check_authAPI endpoint now supports certificate fingerprint authentication (#2354, thanks flurry!)proxy: truelisteners to read the PROXY protocol header from 1 minute to 5 seconds (#2334)Internal
Configuration
📅 Schedule: 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 this update again.
This PR was generated by Mend Renovate. View the repository job log.