<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/tmux, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2025-12-05T22:00:29Z</updated>
<entry>
<title>tmux: update to 3.6a</title>
<updated>2025-12-05T22:00:29Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2025-12-03T17:54:52Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=57242e5db35fe14a66ef7928596457704d5da974'/>
<id>urn:sha1:57242e5db35fe14a66ef7928596457704d5da974</id>
<content type='text'>
changes: https://raw.githubusercontent.com/tmux/tmux/3.6a/CHANGES

Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.5a</title>
<updated>2024-10-09T14:21:17Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2024-10-08T09:17:30Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=9ab9560be68df119552cdae898a5216922589366'/>
<id>urn:sha1:9ab9560be68df119552cdae898a5216922589366</id>
<content type='text'>
Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.5</title>
<updated>2024-10-02T21:01:59Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2024-10-02T17:47:16Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=d21bdeb4c1254e139a91b5d85ea9da8064cc39ce'/>
<id>urn:sha1:d21bdeb4c1254e139a91b5d85ea9da8064cc39ce</id>
<content type='text'>
Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.4</title>
<updated>2024-02-25T00:29:51Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2024-02-24T22:32:21Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=c554f6266db05ef74d575f94d2a4c3cad54c556f'/>
<id>urn:sha1:c554f6266db05ef74d575f94d2a4c3cad54c556f</id>
<content type='text'>
Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>utils/tmux: fix PKG_CPE_ID</title>
<updated>2024-02-04T23:58:12Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2024-02-02T19:50:37Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=c42dcc5fd69a6f5d8cfe2aba9af0c5dccdd73e05'/>
<id>urn:sha1:c42dcc5fd69a6f5d8cfe2aba9af0c5dccdd73e05</id>
<content type='text'>
tmux_project:tmux is a better CPE ID than nicholas_marriott:tmux as this
CPE ID has the latest CVE (whereas nicholas_marriott:tmux only has a CVE
from 2011):
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:tmux_project:tmux

Fixes: 299e5b0a9bce19d6e96cb9ff217028b36ee2dd36 (treewide: add PKG_CPE_ID for better cvescanner coverage)

Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.3a</title>
<updated>2022-07-01T10:19:02Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2022-06-28T12:33:00Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=547cbcfd14a7cf05cdb07dda25da97406bc87b3f'/>
<id>urn:sha1:547cbcfd14a7cf05cdb07dda25da97406bc87b3f</id>
<content type='text'>
Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.2a</title>
<updated>2021-06-14T23:33:39Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2021-06-14T23:30:59Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=61a1a37e877e7e0855c837ecc349e99167adc260'/>
<id>urn:sha1:61a1a37e877e7e0855c837ecc349e99167adc260</id>
<content type='text'>
Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.2</title>
<updated>2021-04-21T21:16:19Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2021-04-21T21:05:36Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=c5aa2fe3bada09a7dbcc2532595ec4edfb7cf989'/>
<id>urn:sha1:c5aa2fe3bada09a7dbcc2532595ec4edfb7cf989</id>
<content type='text'>
- switch to $(AUTORELEASE)
- change dependency from libevent2 to libevent2-core

Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
<entry>
<title>tmux: update to 3.1c</title>
<updated>2020-11-04T17:47:02Z</updated>
<author>
<name>Maxim Storchak</name>
</author>
<published>2020-11-04T17:47:02Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=6b1cdcaee85d9a852c9dc68d33349778cc993387'/>
<id>urn:sha1:6b1cdcaee85d9a852c9dc68d33349778cc993387</id>
<content type='text'>
Signed-off-by: Maxim Storchak &lt;m.storchak@gmail.com&gt;
</content>
</entry>
</feed>
