public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Fabio Valentini <decathorpe@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/asciinema] f44: Patch for tokio-tungstenite 0.29
Date: Thu, 11 Jun 2026 15:45:25 GMT [thread overview]
Message-ID: <178119272595.1.5082523553791600014.rpms-asciinema-c5edc16d900a@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/asciinema
Branch : f44
Commit : c5edc16d900a9127e75215eb2e947a9d42e0dea3
Author : Fabio Valentini <decathorpe@gmail.com>
Date : 2026-06-11T17:45:11+02:00
Stats : +35/-35 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/asciinema/c/c5edc16d900a9127e75215eb2e947a9d42e0dea3?branch=f44
Log:
Patch for tokio-tungstenite 0.29
---
diff --git a/0001-Update-tokio-tungstenite-from-0.26-to-0.28.patch b/0001-Update-tokio-tungstenite-from-0.26-to-0.28.patch
deleted file mode 100644
index bef9d0f..0000000
--- a/0001-Update-tokio-tungstenite-from-0.26-to-0.28.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 2dd64f8110c09829d6f6d433058406917a8062bd Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Mon, 20 Oct 2025 11:14:11 +0100
-Subject: [PATCH] Update tokio-tungstenite from 0.26 to 0.28
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This matches the verison used by the latest axum, 0.8.6.
-
-This was proposed upstream as part of a larger set of updates, “chore:
-update dependencies” at https://github.com/asciinema/asciinema/pull/698.
----
- Cargo.toml | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Cargo.toml b/Cargo.toml
-index 6aaba8f..6b4afc0 100644
---- a/Cargo.toml
-+++ b/Cargo.toml
-@@ -35,7 +35,7 @@ tracing = { version = "0.1", default-features = false }
- tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt", "env-filter"] }
- rgb = { version = "0.8", default-features = false }
- url = "2.5"
--tokio-tungstenite = { version = "0.26", default-features = false, features = ["connect", "rustls-tls-native-roots"] }
-+tokio-tungstenite = { version = "0.28", default-features = false, features = ["connect", "rustls-tls-native-roots"] }
- rustls = { version = "0.23", default-features = false, features = ["ring"] }
- tokio-util = { version = "0.7", features = ["rt"] }
- rand = "0.9"
---
-2.51.0
-
diff --git a/0001-Update-tokio-tungstenite-from-0.26-to-0.29.patch b/0001-Update-tokio-tungstenite-from-0.26-to-0.29.patch
new file mode 100644
index 0000000..3857ffd
--- /dev/null
+++ b/0001-Update-tokio-tungstenite-from-0.26-to-0.29.patch
@@ -0,0 +1,32 @@
+From 2dd64f8110c09829d6f6d433058406917a8062bd Mon Sep 17 00:00:00 2001
+From: "Benjamin A. Beasley" <code@musicinmybrain.net>
+Date: Mon, 20 Oct 2025 11:14:11 +0100
+Subject: [PATCH] Update tokio-tungstenite from 0.26 to 0.29
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+This matches the verison used by the latest axum, 0.8.9.
+
+This was proposed upstream as part of a larger set of updates, “chore:
+update dependencies” at https://github.com/asciinema/asciinema/pull/698.
+---
+ Cargo.toml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Cargo.toml b/Cargo.toml
+index 6aaba8f..6b4afc0 100644
+--- a/Cargo.toml
++++ b/Cargo.toml
+@@ -35,7 +35,7 @@ tracing = { version = "0.1", default-features = false }
+ tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt", "env-filter"] }
+ rgb = { version = "0.8", default-features = false }
+ url = "2.5"
+-tokio-tungstenite = { version = "0.26", default-features = false, features = ["connect", "rustls-tls-native-roots"] }
++tokio-tungstenite = { version = "0.29", default-features = false, features = ["connect", "rustls-tls-native-roots"] }
+ rustls = { version = "0.23", default-features = false, features = ["ring"] }
+ tokio-util = { version = "0.7", features = ["rt"] }
+ rand = "0.9"
+--
+2.51.0
+
diff --git a/asciinema.spec b/asciinema.spec
index 50c5935..8775f9b 100644
--- a/asciinema.spec
+++ b/asciinema.spec
@@ -47,15 +47,15 @@ License: %{shrink:
URL: https://asciinema.org
Source: https://github.com/asciinema/asciinema/archive/v%{version}/asciinema-%{version}.tar.gz
-# Update tokio-tungstenite from 0.26 to 0.28
+# Update tokio-tungstenite from 0.26 to 0.29
#
-# This matches the verison used by the latest axum, 0.8.6.
+# This matches the verison used by the latest axum, 0.8.9.
#
# This was proposed upstream as part of a larger set of updates, “chore:
# update dependencies” at https://github.com/asciinema/asciinema/pull/698.
#
# In this minimal downstream patch, only Cargo.toml is adjusted.
-Patch: 0001-Update-tokio-tungstenite-from-0.26-to-0.28.patch
+Patch: 0001-Update-tokio-tungstenite-from-0.26-to-0.29.patch
BuildRequires: cargo-rpm-macros
reply other threads:[~2026-06-11 15:45 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178119272595.1.5082523553791600014.rpms-asciinema-c5edc16d900a@fedoraproject.org \
--to=decathorpe@gmail.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox