Release 1.10.0

This commit is contained in:
Sebastian Dröge 2016-11-01 18:06:46 +02:00
parent 7508442292
commit 3af697e777
5 changed files with 1214 additions and 23 deletions

View file

@ -1,9 +1,76 @@
=== release 1.9.90 ===
=== release 1.10.0 ===
2016-09-30 Sebastian Dröge <slomo@coaxion.net>
2016-11-01 Sebastian Dröge <slomo@coaxion.net>
* configure.ac:
releasing 1.9.90
releasing 1.10.0
2016-10-28 18:38:01 +0100 Tim-Philipp Müller <tim@centricular.com>
* tests/check/gst/rtspserver.c:
* tests/check/gst/stream.c:
tests: try to avoid using the same ports in different tests
Causes problems with client multicast tests otherwise if
tests are run in parallel.
https://bugzilla.gnome.org/show_bug.cgi?id=773640
2016-10-28 17:50:59 +0100 Tim-Philipp Müller <tim@centricular.com>
* tests/check/gst/client.c:
tests: client: use fail_unless_equals_foo() for better failure reporting
2016-09-26 11:16:04 +0200 Göran Jönsson <goranjn@axis.com>
* gst/rtsp-server/rtsp-client.c:
rtsp-client: Session filter in unwatch session
Call session filter with filter_session_media as paramer in
client_unwatch_session if using drop_backlog = FALSE.
In client_unwatch_session its allowed to grow the watchs backlog.
If using drop_backlog = FALSE and the backlog is full it will cause
a deadlock when setting session media state to NULL
if the backlog is not allowed to grow.
https://bugzilla.gnome.org/show_bug.cgi?id=771983
2016-10-20 21:40:18 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
meson: add fallbacks for gst modules
For gst-all.
2016-09-14 17:48:39 +0300 Nikita Bobkov <NikitaDBobkov@gmail.com>
* gst/rtsp-server/rtsp-client.c:
rtsp-client: Fix factory leaking in find_media() in error cases
https://bugzilla.gnome.org/show_bug.cgi?id=771488
2016-10-06 11:47:50 -0400 Xavier Claessens <xavier.claessens@collabora.com>
* gst/rtsp-server/rtsp-stream.c:
stream: Fix randomly missing streams from SDP with dynamic elements
When using dynamic elements, gst_rtsp_stream_join_bin() is called from
"pad-added" signal. In that case priv->srcpad could already have its caps,
and they'll be sent to priv->send_src[0] pad. That means that when it
connects "notify::caps" signal, that pad could already have received its
caps and the signal won't be emitted anymore.
In that case priv->caps stay to NULL and when building the SDP that stream
gets ignored. Leading to missing video or audio when playing in client side.
https://bugzilla.gnome.org/show_bug.cgi?id=772478
2016-09-30 11:42:08 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
meson: update version
=== release 1.9.90 ===
2016-09-30 13:04:12 +0300 Sebastian Dröge <sebastian@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-rtsp-server.doap:
Release 1.9.90
2016-09-17 13:17:19 +0100 Ian Jamison <ian.dev@arkver.com>

1115
NEWS

File diff suppressed because it is too large Load diff

27
RELEASE
View file

@ -1,21 +1,23 @@
Release notes for GStreamer RTSP Server Library 1.9.90
Release notes for GStreamer RTSP Server Library 1.10.0
The GStreamer team is pleased to announce the first release candidate of the
stable 1.10 release series. The 1.10 release series is adding new features on
top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and
ABI-stable 1.x release series of the GStreamer multimedia framework.
The GStreamer team is pleased to announce the first release of the new stable
1.10 release series. The 1.10 release series is adding new features on top of
the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and ABI-stable 1.x
release series of the GStreamer multimedia framework.
Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days.
Binaries for Android, iOS, Mac OS X and Windows will be provided shortly after
the source release by the GStreamer project during the stable 1.10 release
series.
Bugs fixed in this release
* 750544 : RTSP server: crashes when accessing freed session in keep alive callback on shutdown
* 766612 : Does not take address pool configuration into account for sending unicast UDP
* 771983 : Deadlock when closing session and backlog is full.
* 772478 : Missing video stream from SDP
* 773640 : rtspclient unit test failures
==== Download ====
@ -52,9 +54,8 @@ subscribe to the gstreamer-devel list.
Contributors to this release
* Ian Jamison
* Jan Schmidt
* Kseniia
* Sebastian Dröge
* Göran Jönsson
* Nikita Bobkov
* Tim-Philipp Müller
* Xavier Claessens
 

View file

@ -2,7 +2,7 @@ AC_PREREQ(2.69)
dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too
AC_INIT([GStreamer RTSP Server Library], [1.9.90],
AC_INIT([GStreamer RTSP Server Library], [1.10.0],
[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],
[gst-rtsp-server])
AG_GST_INIT
@ -53,13 +53,13 @@ dnl 1.2.5 => 205
dnl 1.10.9 (who knows) => 1009
dnl
dnl sets GST_LT_LDFLAGS
AS_LIBTOOL(GST, 990, 0, 990)
AS_LIBTOOL(GST, 1000, 0, 1000)
dnl *** required versions of GStreamer stuff ***
GST_REQ=1.9.90
GSTPB_REQ=1.9.90
GSTPG_REQ=1.9.90
GSTPD_REQ=1.9.90
GST_REQ=1.10.0
GSTPB_REQ=1.10.0
GSTPG_REQ=1.10.0
GSTPD_REQ=1.10.0
dnl *** autotools stuff ****

View file

@ -30,6 +30,16 @@ RTSP server library based on GStreamer
</GitRepository>
</repository>
<release>
<Version>
<revision>1.10.0</revision>
<branch>master</branch>
<name></name>
<created>2016-11-01</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.10.0.tar.xz" />
</Version>
</release>
<release>
<Version>
<revision>1.9.90</revision>