Emmanuel Bourg pushed to branch master at Debian Java Maintainers / jmdns
Commits: 5205be74 by Emmanuel Bourg at 2019-01-11T12:20:16Z Standards-Version updated to 4.3.0 - - - - - 61a1d2a9 by Emmanuel Bourg at 2019-01-11T12:20:48Z New upstream version 3.5.5 - - - - - 155eb22a by Emmanuel Bourg at 2019-01-11T12:20:49Z Update upstream source from tag 'upstream/3.5.5' Update to upstream version '3.5.5' with Debian dir b8ffad3c94f671e5d26b813586fa42e83df414f2 - - - - - 29cad89a by Emmanuel Bourg at 2019-01-11T12:26:33Z New upstream release (3.5.5) - - - - - 13 changed files: - README.md - debian/changelog - debian/control - p2/features/org.jmdns.feature/feature.xml - p2/features/org.jmdns.feature/pom.xml - p2/features/pom.xml - p2/pom.xml - p2/repository/pom.xml - p2/targetplatform/pom.xml - pom.xml - + setversion.sh - src/main/java/javax/jmdns/impl/DNSIncoming.java - src/main/java/javax/jmdns/impl/JmDNSImpl.java Changes: ===================================== README.md ===================================== @@ -1,4 +1,4 @@ - + [](https://maven-badges.herokuapp.com/maven-central/org.jmdns/jmdns) [](http://www.javadoc.io/doc/org.jmdns/jmdns) ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +jmdns (3.5.5-1) unstable; urgency=medium + + * Team upload. + * New upstream release + * Standards-Version updated to 4.3.0 + + -- Emmanuel Bourg <[email protected]> Fri, 11 Jan 2019 13:26:20 +0100 + jmdns (3.5.4-2) unstable; urgency=medium * Team upload. ===================================== debian/control ===================================== @@ -12,7 +12,7 @@ Build-Depends: libmaven-javadoc-plugin-java, libslf4j-java, maven-debian-helper -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Vcs-Git: https://salsa.debian.org/java-team/jmdns.git Vcs-Browser: https://salsa.debian.org/java-team/jmdns Homepage: https://github.com/jmdns/jmdns ===================================== p2/features/org.jmdns.feature/feature.xml ===================================== @@ -1,7 +1,7 @@ <feature id="org.jmdns.feature" label="JmDNS" - version="3.5.4" + version="3.5.5" provider-name="JmDNS.org"> <description> ===================================== p2/features/org.jmdns.feature/pom.xml ===================================== @@ -5,7 +5,7 @@ <parent> <groupId>org.jmdns.p2</groupId> <artifactId>features</artifactId> - <version>3.5.4</version> + <version>3.5.5</version> </parent> <artifactId>org.jmdns.feature</artifactId> ===================================== p2/features/pom.xml ===================================== @@ -7,7 +7,7 @@ <parent> <groupId>org.jmdns.p2</groupId> <artifactId>pom</artifactId> - <version>3.5.4</version> + <version>3.5.5</version> </parent> <artifactId>features</artifactId> ===================================== p2/pom.xml ===================================== @@ -6,7 +6,7 @@ <groupId>org.jmdns.p2</groupId> <artifactId>pom</artifactId> - <version>3.5.4</version> + <version>3.5.5</version> <packaging>pom</packaging> <name>JmDNS p2</name> @@ -39,7 +39,7 @@ <my.encoding>UTF-8</my.encoding> <tycho.groupId>org.eclipse.tycho</tycho.groupId> <tycho.extras.groupId>org.eclipse.tycho.extras</tycho.extras.groupId> - <tycho.version>0.23.1</tycho.version> + <tycho.version>1.1.0</tycho.version> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> ===================================== p2/repository/pom.xml ===================================== @@ -5,7 +5,7 @@ <parent> <groupId>org.jmdns.p2</groupId> <artifactId>pom</artifactId> - <version>3.5.4</version> + <version>3.5.5</version> </parent> <artifactId>org.jmdns.repository</artifactId> ===================================== p2/targetplatform/pom.xml ===================================== @@ -5,7 +5,7 @@ <parent> <groupId>org.jmdns.p2</groupId> <artifactId>pom</artifactId> - <version>3.5.4</version> + <version>3.5.5</version> </parent> <artifactId>targetplatform</artifactId> ===================================== pom.xml ===================================== @@ -3,7 +3,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.jmdns</groupId> <artifactId>jmdns</artifactId> - <version>3.5.4</version> + <version>3.5.5</version> <name>JmDNS</name> <packaging>jar</packaging> <description>JmDNS is a Java implementation of multi-cast DNS and can be used for service registration and discovery in local area networks. JmDNS is fully compatible with Apple's Bonjour. ===================================== setversion.sh ===================================== @@ -0,0 +1,6 @@ +#!/bin/sh + +mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$1 +cd p2 +mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$1 +cd .. ===================================== src/main/java/javax/jmdns/impl/DNSIncoming.java ===================================== @@ -268,6 +268,12 @@ public final class DNSIncoming extends DNSMessage { IOException ioe = new IOException("DNSIncoming corrupted message"); ioe.initCause(e); throw ioe; + } finally { + try { + _messageInputStream.close(); + } catch (Exception e) { + logger.warn("MessageInputStream close error"); + } } } ===================================== src/main/java/javax/jmdns/impl/JmDNSImpl.java ===================================== @@ -1018,15 +1018,12 @@ public class JmDNSImpl extends JmDNS implements DNSStatefulObject, DNSTaskStarte info.addAddress(_localHost.getInet4Address()); info.addAddress(_localHost.getInet6Address()); - this.waitForAnnounced(DNSConstants.SERVICE_INFO_TIMEOUT); - this.makeServiceNameUnique(info); while (_services.putIfAbsent(info.getKey(), info) != null) { this.makeServiceNameUnique(info); } this.startProber(); - info.waitForAnnounced(DNSConstants.SERVICE_INFO_TIMEOUT); logger.debug("registerService() JmDNS registered service as {}", info); } View it on GitLab: https://salsa.debian.org/java-team/jmdns/compare/f1937f967d28f381f864e0de31b77528367075bd...29cad89ac0fc222ffb47afc75076f27291b97b5a -- View it on GitLab: https://salsa.debian.org/java-team/jmdns/compare/f1937f967d28f381f864e0de31b77528367075bd...29cad89ac0fc222ffb47afc75076f27291b97b5a You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

