# HG changeset patch # User KUBOTA Yuji # Date 1432793612 -32400 # Node ID e6d8b7111e5c7068e7b45b64d4d2554d3a8a2b8d # Parent 02af7ec6063e37091e8ff445c5cf83ac7a0b6b9b Bump to 1.1.3 review-thread: http://icedtea.classpath.org/pipermail/heapstats/2015-May/000856.html diff -r 02af7ec6063e -r e6d8b7111e5c agent/AUTHORS --- a/agent/AUTHORS Thu May 28 15:12:11 2015 +0900 +++ b/agent/AUTHORS Thu May 28 15:13:32 2015 +0900 @@ -7,7 +7,7 @@ Yasumasa Suenaga Takahiro Jyoukou Shinji Hisano - Yuji Kubota + KUBOTA Yuji Shinji Takao ------------------------------------------------------------ diff -r 02af7ec6063e -r e6d8b7111e5c agent/ChangeLog --- a/agent/ChangeLog Thu May 28 15:12:11 2015 +0900 +++ b/agent/ChangeLog Thu May 28 15:13:32 2015 +0900 @@ -1,3 +1,7 @@ +2015-05-28 KUBOTA Yuji + + * Bump to 1.1.3 + 2015-05-28 KUBOTA Yuji * Bug 2382: Update Private Enterprise Number for SNMP. diff -r 02af7ec6063e -r e6d8b7111e5c agent/NEWS --- a/agent/NEWS Thu May 28 15:12:11 2015 +0900 +++ b/agent/NEWS Thu May 28 15:13:32 2015 +0900 @@ -1,3 +1,14 @@ +New in release 1.1.3 (2015-05-28) + +- Update official Private Enterprise Number for SNMP. + - Change the configured PEN from 123456 to 45156 if you use SNMP trap by your tools. +- Change default settings to resolve the below bugs. + - Bug 2017: JVM may crash with taking interval SnapShot when concurrent GC is occurred. + - snapshot_interval is set 0 forcibly if you use concurrent GC. + - Bug 2114: Default values are different from binary-builtin and heapstats.conf. + - Default values of binary-builtin are changed to same value as the default of heapstats.conf. +- And fixes some other bugs. + New in release 1.1.2 (2014-08-22) - HeapStats agent supports systemd/journald. diff -r 02af7ec6063e -r e6d8b7111e5c agent/configure --- a/agent/configure Thu May 28 15:12:11 2015 +0900 +++ b/agent/configure Thu May 28 15:13:32 2015 +0900 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for heapstats_agent 1.1.2. +# Generated by GNU Autoconf 2.69 for heapstats_agent 1.1.3. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='heapstats_agent' PACKAGE_TARNAME='heapstats_agent' -PACKAGE_VERSION='1.1.2' -PACKAGE_STRING='heapstats_agent 1.1.2' +PACKAGE_VERSION='1.1.3' +PACKAGE_STRING='heapstats_agent 1.1.3' PACKAGE_BUGREPORT='heapstats@icedtea.classpath.org' PACKAGE_URL='' @@ -1360,7 +1360,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures heapstats_agent 1.1.2 to adapt to many kinds of systems. +\`configure' configures heapstats_agent 1.1.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1430,7 +1430,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of heapstats_agent 1.1.2:";; + short | recursive ) echo "Configuration of heapstats_agent 1.1.3:";; esac cat <<\_ACEOF @@ -1563,7 +1563,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -heapstats_agent configure 1.1.2 +heapstats_agent configure 1.1.3 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2107,7 +2107,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by heapstats_agent $as_me 1.1.2, which was +It was created by heapstats_agent $as_me 1.1.3, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2975,7 +2975,7 @@ # Define the identity of the package. PACKAGE='heapstats_agent' - VERSION='1.1.2' + VERSION='1.1.3' cat >>confdefs.h <<_ACEOF @@ -19804,7 +19804,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by heapstats_agent $as_me 1.1.2, which was +This file was extended by heapstats_agent $as_me 1.1.3, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -19861,7 +19861,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -heapstats_agent config.status 1.1.2 +heapstats_agent config.status 1.1.3 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -r 02af7ec6063e -r e6d8b7111e5c agent/configure.ac --- a/agent/configure.ac Thu May 28 15:12:11 2015 +0900 +++ b/agent/configure.ac Thu May 28 15:13:32 2015 +0900 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.59]) -AC_INIT([heapstats_agent], [1.1.2], [heapstats@icedtea.classpath.org]) +AC_INIT([heapstats_agent], [1.1.3], [heapstats@icedtea.classpath.org]) AC_CONFIG_SRCDIR([./src]) AC_CONFIG_AUX_DIR([./m4]) AC_CONFIG_MACRO_DIR([./m4]) diff -r 02af7ec6063e -r e6d8b7111e5c agent/specs/heapstats_agent.spec --- a/agent/specs/heapstats_agent.spec Thu May 28 15:12:11 2015 +0900 +++ b/agent/specs/heapstats_agent.spec Thu May 28 15:13:32 2015 +0900 @@ -26,7 +26,7 @@ Summary: A Java programming language debugging tool. Name: heapstats_agent -Version: 1.1.2 +Version: 1.1.3 %define DIST_EXT %{?dist:%{dist}}%{!?dist:.el5} Release: 0%{?target_processor:%{target_processor}}%{DIST_EXT} License: GPLv2 @@ -52,7 +52,7 @@ %description this program analyzes running information in JVM. -Copyright (C) 2011-2014 Nippon Telegraph and Telephone Corporation. +Copyright (C) 2011-2015 Nippon Telegraph and Telephone Corporation. %prep %setup -q -n heapstats-1.1/agent @@ -105,6 +105,16 @@ /usr/share/snmp/mibs/HeapStatsMibs.txt %changelog +* Fri May 28 2015 KUBOTA Yuji 1.1.3 +- Update official Private Enterprise Number for SNMP. + - Change the configured PEN from 123456 to 45156 if you use SNMP trap by your tools. +- Change default settings to resolve the below bugs. + - Bug 2017: JVM may crash with taking interval SnapShot when concurrent GC is occurred. + - snapshot_interval is set 0 forcibly if you use concurrent GC. + - Bug 2114: Default values are different from binary-builtin and heapstats.conf. + - Default values of binary-builtin are changed to same value as the default of heapstats.conf. +- And fixes some other bugs. + * Fri Aug 22 2014 KUBOTA Yuji 1.1.2 - HeapStats agent supports systemd/journald. - Some bug fixes. diff -r 02af7ec6063e -r e6d8b7111e5c analyzer/build.properties --- a/analyzer/build.properties Thu May 28 15:12:11 2015 +0900 +++ b/analyzer/build.properties Thu May 28 15:13:32 2015 +0900 @@ -1,5 +1,5 @@ #Variable -version=1.1.2 +version=1.1.3 source=1.6 target=1.6 diff -r 02af7ec6063e -r e6d8b7111e5c analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java --- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java Thu May 28 15:12:11 2015 +0900 +++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java Thu May 28 15:13:32 2015 +0900 @@ -2,7 +2,7 @@ * GUIMain.java * Created on 2011/09/07 * - * Copyright (C) 2011-2014 Nippon Telegraph and Telephone Corporation + * Copyright (C) 2011-2015 Nippon Telegraph and Telephone Corporation * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -604,14 +604,14 @@ } else if (eventSource.equals(aboutHeapStats)) { // Version Dialog StringBuilder buf = new StringBuilder(); - buf.append("\n\n Version: 1.1.2\n\n"); + buf.append("\n\n Version: 1.1.3\n\n"); buf.append("HeapStats is licensed under the GNU General Public License version 2.\n\n"); buf.append("about:license\n"); buf.append(" JFreeChart : the GNU Lesser "); buf.append("General Public License\n"); buf.append(" JGraphX : the Berkeley Software "); buf.append("Distribution License\n\n"); - buf.append(" Copyright (C) 2011-2014 Nippon Telegraph and "); + buf.append(" Copyright (C) 2011-2015 Nippon Telegraph and "); buf.append("Telephone Corporation\n\n"); JLabel title = new JLabel(" HeapStats Analyzer\n\n\n");