The branch, v4-13-test has been updated via b30c0416390 VERSION: Bump version up to 4.13.6... via 6df178003a3 VERSION: Disable GIT_SNAPSHOT for the 4.13.5 release. via 7eb253a4221 Revert "wscript: use --as-needed only if tested successfully" via 5d765d7358d WHATSNEW: Add release notes for Samba 4.13.5. from 6c5e6046345 g_lock: Fix uninitalized variable reads
https://git.samba.org/?p=samba.git;a=shortlog;h=v4-13-test - Log ----------------------------------------------------------------- commit b30c0416390ce4151a6bf97ea44e18e9d668e596 Author: Karolin Seeger <ksee...@samba.org> Date: Tue Mar 9 09:16:21 2021 +0100 VERSION: Bump version up to 4.13.6... and re-enable GIT_SNAPSHOT. Signed-off-by: Karolin Seeger <ksee...@samba.org> commit 6df178003a32483a4d98785806c716a942213f21 Author: Karolin Seeger <ksee...@samba.org> Date: Tue Mar 9 09:15:02 2021 +0100 VERSION: Disable GIT_SNAPSHOT for the 4.13.5 release. Signed-off-by: Karolin Seeger <ksee...@samba.org> commit 7eb253a42217ab7cde72e5216efbdb4a6ec1725b Author: Karolin Seeger <ksee...@samba.org> Date: Tue Mar 9 09:10:12 2021 +0100 Revert "wscript: use --as-needed only if tested successfully" This reverts commit eebf510fbd8847077c7bec72a1cda674b5a02714. commit 5d765d7358d5d7bbe03b19aa6c00da520435a19e Author: Karolin Seeger <ksee...@samba.org> Date: Mon Mar 8 09:02:43 2021 +0100 WHATSNEW: Add release notes for Samba 4.13.5. Signed-off-by: Karolin Seeger <ksee...@samba.org> ----------------------------------------------------------------------- Summary of changes: VERSION | 2 +- WHATSNEW.txt | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- wscript | 3 +-- 3 files changed, 79 insertions(+), 5 deletions(-) Changeset truncated at 500 lines: diff --git a/VERSION b/VERSION index 9efcef67b3a..2a2707bfcf2 100644 --- a/VERSION +++ b/VERSION @@ -25,7 +25,7 @@ ######################################################## SAMBA_VERSION_MAJOR=4 SAMBA_VERSION_MINOR=13 -SAMBA_VERSION_RELEASE=5 +SAMBA_VERSION_RELEASE=6 ######################################################## # If a official release has a serious bug # diff --git a/WHATSNEW.txt b/WHATSNEW.txt index 544f4377bfd..8b8c349eaa5 100644 --- a/WHATSNEW.txt +++ b/WHATSNEW.txt @@ -1,3 +1,79 @@ + ============================== + Release Notes for Samba 4.13.5 + March 09, 2021 + ============================== + + +This is the latest stable release of the Samba 4.13 release series. + + +Changes since 4.13.4 +-------------------- + +o Trever L. Adams <trever.ad...@gmail.com> + * BUG 14634: s3:modules:vfs_virusfilter: Recent talloc changes cause infinite + start-up failure. + +o Jeremy Allison <j...@samba.org> + * BUG 13992: s3: libsmb: Add missing cli_tdis() in error path if encryption + setup failed on temp proxy connection. + * BUG 14604: smbd: In conn_force_tdis_done() when forcing a connection closed + force a full reload of services. + +o Andrew Bartlett <abart...@samba.org> + * BUG 14593: dbcheck: Check Deleted Objects and reduce noise in reports about + expired tombstones. + +o Ralph Boehme <s...@samba.org + * BUG 14503: s3: Fix fcntl waf configure check. + * BUG 14602: s3/auth: Implement "winbind:ignore domains". + * BUG 14617: smbd: Use fsp->conn->session_info for the initial + delete-on-close token. + +o Peter Eriksson <p...@lysator.liu.se> + * BUG 14648: s3: VFS: nfs4_acls. Add missing TALLOC_FREE(frame) in error + path. + +o Björn Jacke <b...@sernet.de> + * BUG 14624: classicupgrade: Treat old never expires value right. + +o Volker Lendecke <v...@samba.org> + * BUG 14636: g_lock: Fix uninitalized variable reads. + +o Stefan Metzmacher <me...@samba.org> + * BUG 13898: s3:pysmbd: Fix fd leak in py_smbd_create_file(). + +o Andreas Schneider <a...@samba.org> + * BUG 14625: lib:util: Avoid free'ing our own pointer. + +o Paul Wise <pa...@bonedaddy.net> + * BUG 12505: HEIMDAL: krb5_storage_free(NULL) should work. + + +####################################### +Reporting bugs & Development Discussion +####################################### + +Please discuss this release on the samba-technical mailing list or by +joining the #samba-technical IRC channel on irc.freenode.net. + +If you do report problems then please try to send high quality +feedback. If you don't provide vital information to help us track down +the problem then you will probably be ignored. All bug reports should +be filed under the Samba 4.1 and newer product in the project's Bugzilla +database (https://bugzilla.samba.org/). + + +====================================================================== +== Our Code, Our Bugs, Our Responsibility. +== The Samba Team +====================================================================== + + +Release notes for older releases follow: +---------------------------------------- + + ============================== Release Notes for Samba 4.13.4 January 26, 2021 @@ -65,8 +141,7 @@ database (https://bugzilla.samba.org/). ====================================================================== -Release notes for older releases follow: ----------------------------------------- +---------------------------------------------------------------------- ============================== diff --git a/wscript b/wscript index 7c13e29bffa..e50aba255a7 100644 --- a/wscript +++ b/wscript @@ -340,8 +340,7 @@ def configure(conf): # allows us to find problems on our development hosts faster. # It also results in faster load time. - conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True) - + conf.add_as_needed() if not conf.CHECK_NEED_LC("-lc not needed"): conf.ADD_LDFLAGS('-lc', testflags=False) -- Samba Shared Repository