Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B6CD18CAD for ; Mon, 5 Oct 2015 20:02:00 +0000 (UTC) Received: (qmail 16126 invoked by uid 500); 5 Oct 2015 20:02:00 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 16050 invoked by uid 500); 5 Oct 2015 20:02:00 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 16040 invoked by uid 99); 5 Oct 2015 20:02:00 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Oct 2015 20:02:00 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id AEC3D1A06A1 for ; Mon, 5 Oct 2015 20:01:59 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.99 X-Spam-Level: X-Spam-Status: No, score=0.99 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id L_1xDiYmHand for ; Mon, 5 Oct 2015 20:01:59 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTP id 0BB9C2031C for ; Mon, 5 Oct 2015 20:01:59 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id A4905E045B for ; Mon, 5 Oct 2015 20:01:58 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id A22B53A04B8 for ; Mon, 5 Oct 2015 20:01:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1706912 - /commons/proper/configuration/trunk/src/changes/changes.xml Date: Mon, 05 Oct 2015 20:01:58 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151005200158.A22B53A04B8@svn01-us-west.apache.org> Author: oheger Date: Mon Oct 5 20:01:58 2015 New Revision: 1706912 URL: http://svn.apache.org/viewvc?rev=1706912&view=rev Log: [CONFIGURATION-612] Added changes.xml. Modified: commons/proper/configuration/trunk/src/changes/changes.xml Modified: commons/proper/configuration/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/changes/changes.xml?rev=1706912&r1=1706911&r2=1706912&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/changes/changes.xml (original) +++ commons/proper/configuration/trunk/src/changes/changes.xml Mon Oct 5 20:01:58 2015 @@ -27,6 +27,11 @@ + + The return type of ConfigurationBuilder.getConfiguration() was changed + from Configuration to ImmutableConfiguration because this is the base + interface for all configuration objects. + Fixed a bug in PropertiesConfiguration related to the loading of include files. The FileHandler used for this purpose was not fully initialized.