aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMateusz Piotrowski <0mp@FreeBSD.org>2023-06-30 16:27:54 +0000
committerMateusz Piotrowski <0mp@FreeBSD.org>2023-07-12 14:19:10 +0000
commit349b11cfc82b530ac7ee36cd927732269ca67997 (patch)
tree3e061db2d446d9115fa4f64fa8c8a7a4633df2b9 /CHANGES
parent5457f710e8b827281d83bbba17db0868389205b4 (diff)
downloadports-349b11cfc82b530ac7ee36cd927732269ca67997.tar.gz
ports-349b11cfc82b530ac7ee36cd927732269ca67997.zip
framework: Implement fetch-url-recursive-list and fetch-urlall-recursive-list
The recursive variants of fetch-url-list and fetch-urlall-list provide a stable interface to a list of all the to-be-accessed URLs. That is quite handy, e.g., when a list like that is necessary to implement security policies. Reviewed by: pizzamig Approved by: portmgr (pizzamig) Sponsored by: Klara Inc. Differential Revision: https://reviews.freebsd.org/D40810
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 6d6da021c969..5e98b3ee86a4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,16 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20230712:
+AUTHOR: 0mp@FreeBSD.org
+
+ Two new targets are now available: fetch-url-recursive-list
+ and fetch-urlall-recursive-list. They are the recursive variants
+ of the well-established targets fetch-url-list and fetch-urlall-list,
+ which allow for listing the complete URLs of DISTFILES and PATCHFILES
+ of a port. The recursive variants add the URLs of the port's dependencies
+ to the output.
+
20230430:
AUTHOR: zirias@FreeBSD.org