Your message dated Thu, 03 Sep 2026 00:12:22 +0000
with message-id <[email protected]>
and subject line Bug#1145431: fixed in debian-codemods 0.185
has caused the Debian Bug report #1145431,
regarding debian-codemods: port to sqlx 0.9
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1145431: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1145431
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: debian-codemods
Version: 0.183
Severity: important
Tags: patch
User: [email protected]
Usertags: sqlx-0.9
X-Debbugs-Cc: [email protected]

Dear maintainer,

I am preparing a rust-sqlx transition, which will be uploaded soon.

debian-codemods needs a patch porting to sqlx 0.9.

I have attached a debdiff fixing this.

Best regards,
Simon Quigley
[email protected]
diff -Nru debian-codemods-0.183/Cargo.toml debian-codemods-0.183+nmu1/Cargo.toml
--- debian-codemods-0.183/Cargo.toml    2026-07-04 05:42:06.000000000 -0500
+++ debian-codemods-0.183+nmu1/Cargo.toml       2026-08-20 23:22:07.000000000 
-0500
@@ -40,7 +40,7 @@
 maplit = "1"
 buildlog-consultant = "0.0.43"
 upstream-ontologist = "0.3.13"
-sqlx = { version = "0.8", default-features = false }
+sqlx = { version = ">=0.8, <0.10", default-features = false }
 semver = "1"
 toml_edit = ">=0.22,<0.29"
 tokio = "1.39"
diff -Nru debian-codemods-0.183/debian/changelog 
debian-codemods-0.183+nmu1/debian/changelog
--- debian-codemods-0.183/debian/changelog      2026-07-04 05:42:06.000000000 
-0500
+++ debian-codemods-0.183+nmu1/debian/changelog 2026-08-24 20:48:42.000000000 
-0500
@@ -1,3 +1,10 @@
+debian-codemods (0.183+nmu1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Port to sqlx 0.9 (runtime-tokio-rustls became runtime-tokio).
+
+ -- Simon Quigley <[email protected]>  Mon, 24 Aug 2026 20:48:42 -0500
+
 debian-codemods (0.183) unstable; urgency=medium
 
   * Add fixer for alien-tag
diff -Nru debian-codemods-0.183/debian/control 
debian-codemods-0.183+nmu1/debian/control
--- debian-codemods-0.183/debian/control        2026-07-04 05:42:06.000000000 
-0500
+++ debian-codemods-0.183+nmu1/debian/control   2026-08-21 00:01:47.000000000 
-0500
@@ -96,10 +96,9 @@
                librust-serial-test+default-dev (>= 2),
                librust-sha1-0.11+default-dev,
                librust-shell-words-1+default-dev,
-               librust-sqlx-0.8+default-dev,
-               librust-sqlx-0.8+postgres-dev,
-               librust-sqlx-0.8+runtime-tokio-dev,
-               librust-sqlx-0.8+runtime-tokio-rustls-dev,
+               librust-sqlx-0.9+default-dev,
+               librust-sqlx-0.9+postgres-dev,
+               librust-sqlx-0.9+runtime-tokio-dev,
                librust-strsim-0.11+default-dev,
                librust-svp-client+default-dev (>= 0.1.0),
                librust-svp-client-0.2+default-dev,
@@ -258,10 +257,9 @@
          librust-serde-yaml+default-dev (>= 0.9),
          librust-sha1-0.11+default-dev,
          librust-shell-words-1+default-dev,
-         librust-sqlx-0.8+default-dev,
-         librust-sqlx-0.8+postgres-dev,
-         librust-sqlx-0.8+runtime-tokio-dev,
-         librust-sqlx-0.8+runtime-tokio-rustls-dev,
+         librust-sqlx-0.9+default-dev,
+         librust-sqlx-0.9+postgres-dev,
+         librust-sqlx-0.9+runtime-tokio-dev,
          librust-strsim-0.11+default-dev,
          librust-svp-client+default-dev (>= 0.1.0),
          librust-svp-client-0.2+default-dev,
diff -Nru debian-codemods-0.183/debianize/Cargo.toml 
debian-codemods-0.183+nmu1/debianize/Cargo.toml
--- debian-codemods-0.183/debianize/Cargo.toml  2026-07-04 05:42:06.000000000 
-0500
+++ debian-codemods-0.183+nmu1/debianize/Cargo.toml     2026-08-20 
23:22:07.000000000 -0500
@@ -38,7 +38,7 @@
 semver = "1"
 toml_edit = { workspace = true }
 serde = "1"
-sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-rustls"] }
+sqlx = { version = ">=0.8, <0.10", features = ["postgres", "runtime-tokio"] }
 svp-client = ">=0.1.0"
 chrono = "0.4"
 
diff -Nru debian-codemods-0.183/debianize/src/main.rs 
debian-codemods-0.183+nmu1/debianize/src/main.rs
--- debian-codemods-0.183/debianize/src/main.rs 2026-07-04 05:42:06.000000000 
-0500
+++ debian-codemods-0.183+nmu1/debianize/src/main.rs    2026-08-21 
00:09:17.000000000 -0500
@@ -641,7 +641,8 @@
                 false,
                 Some(Box::new(breezyshim::commit::ReportCommitToLog::new())),
             );
-            let fixers = ognibuild::debian::fixers::default_fixers(&context, 
&apt);
+            let fixers = ognibuild::debian::fixers::default_fixers(&context, 
&apt)
+                .map_err(IterateBuildError::Other)?;
             ognibuild::debian::fix_build::build_incrementally(
                 wt,
                 None,
@@ -650,7 +651,7 @@
                 &build_command.clone(),
                 fixers
                     .iter()
-                    .map(|f| f.as_ref())
+                    .map(|f| f.as_ref() as &dyn 
ognibuild::debian::fix_build::DebianBuildFixer)
                     .collect::<Vec<_>>()
                     .as_slice(),
                 None,

Attachment: OpenPGP_signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: debian-codemods
Source-Version: 0.185
Done: Jelmer Vernooij <[email protected]>

We believe that the bug you reported is fixed in the latest version of
debian-codemods, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jelmer Vernooij <[email protected]> (supplier of updated debian-codemods package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 25 Aug 2026 10:24:21 +0100
Source: debian-codemods
Architecture: source
Version: 0.185
Distribution: unstable
Urgency: medium
Maintainer: Jelmer Vernooij <[email protected]>
Changed-By: Jelmer Vernooij <[email protected]>
Closes: 1145431
Changes:
 debian-codemods (0.185) unstable; urgency=medium
 .
   [ Simon Quigley ]
   * Bump sqlx to 0.9. Closes: #1145431
 .
   [ Jelmer Vernooij ]
   * Bump yaml-edit to 0.3.
Checksums-Sha1:
 834e6338fdacdaf7eda41b3d1d68cfc66893583c 6631 debian-codemods_0.185.dsc
 322c7bfb7e23f98135ba18cd1c1d0a77a100fe2a 1368436 debian-codemods_0.185.tar.xz
 33bc1c78ecca74d198458cfaceb3903bc81c42fd 72631 
debian-codemods_0.185_source.buildinfo
Checksums-Sha256:
 0f377fd2c060768b917024d21495b26c9616247d49d96038c0a7b7a7662eb962 6631 
debian-codemods_0.185.dsc
 fac6867dea9045586b159ad9a9fe6f1bd9b9723ceb03310f746ed32dbbcfd0d2 1368436 
debian-codemods_0.185.tar.xz
 ed44112822c2c4ad2c1ceaac6c8524db032c50b5a5677b15559ddaf09943ed4e 72631 
debian-codemods_0.185_source.buildinfo
Files:
 4c1c17ac1f47a980d90cb51f12915d94 6631 devel optional debian-codemods_0.185.dsc
 844ca50ba9f49de7873054b6df1a355b 1368436 devel optional 
debian-codemods_0.185.tar.xz
 8943e489758ff173508957291841e585 72631 devel optional 
debian-codemods_0.185_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQEzBAEBCgAdFiEEgIoEfJX3ae+y722SMG8hYYBCUGYFAmqYs5EACgkQMG8hYYBC
UGYp4Af8ClNwa7R7VolkAf09/I57ZnHWdWoHweRSUV+CSrZC2u4f9HMXd8eMohGv
uROXVdla7WdNhGM1HKTdG+caFzg2u5NbPABQXKHyzKJUA9REJKZnY7r5c+VJAX/X
OMoENAtFEUywwtJ4/jMF9htjfuBHuPSXuyUeJ75TTNDHVYWVzCx0tRPrKKHEtZxz
hBR4Oj7Wd9WBuczOFL7xBlBpcGPJBlH3bFTQT7anT7Y3ivrT/X3ex7DUPj2NLdyx
BAtXc+lInSHxlwbcr1durkRvEzcgl5nl7KfiI0Y9oU/1PkoI9+/5cDS3uR+SnQb2
7T1k7QQ/+tXVZiLbPV+vekaWSC87/w==
=MtJl
-----END PGP SIGNATURE-----

Attachment: pgphZ0BqfsHur.pgp
Description: PGP signature


--- End Message ---

Reply via email to