You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gi...@apache.org on 2020/12/30 00:35:57 UTC

[commons-configuration] branch dependabot/github_actions/actions/checkout-v2.3.4 updated (71a6d83 -> 75589f6)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/github_actions/actions/checkout-v2.3.4
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git.


 discard 71a6d83  Bump actions/checkout from v2.3.3 to v2.3.4
     add d005ee4  Add elements of a collections without a loop.
     add 4731a53  Use a switch instead of a cascading if-else.
     add 4b411bc  Remove redundant calls to super().
     add a723678  Initialize Map on instantiation.
     add 4935545  No need to initialize to default value.
     add 9599b57  Travis: Replace Java 14 with 15. No need for a PPC build. One Java 11 build.
     add aeaac81  Use final.
     add 9633f81  Use try-with-resource.
     add e11f0b5  Remove redundant modifiers like private on enum constructors.
     add 0b72df8  Remove redundant modifiers like static on enums.
     add 0de93ef  Use for-each.
     add 86bf7e0  Use final.
     add ffb85ec  Redundant return.
     add f2cb1a3  Use a String instead of building one.
     add 2587dc0  Update commons.japicmp.version 0.14.3 -> 0.14.4.
     add 49b7250  Add Java 17-EA to the GitHub build.
     add 75589f6  Bump actions/checkout from v2.3.3 to v2.3.4

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (71a6d83)
            \
             N -- N -- N   refs/heads/dependabot/github_actions/actions/checkout-v2.3.4 (75589f6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml                        |  2 +
 .travis.yml                                        |  8 +--
 pom.xml                                            |  2 +-
 src/changes/changes.xml                            |  2 +-
 .../configuration2/BaseConfigurationXMLReader.java |  1 -
 .../configuration2/ConfigurationXMLReader.java     |  1 -
 .../DynamicCombinedConfiguration.java              |  2 -
 .../HierarchicalConfigurationXMLReader.java        |  1 -
 .../commons/configuration2/INIConfiguration.java   |  1 -
 .../commons/configuration2/JSONConfiguration.java  |  1 -
 .../configuration2/PropertiesConfiguration.java    | 68 +++++++++++-----------
 .../commons/configuration2/XMLConfiguration.java   |  1 -
 .../configuration2/XMLPropertiesConfiguration.java |  2 -
 .../commons/configuration2/YAMLConfiguration.java  |  1 -
 .../beanutils/ConfigurationDynaClass.java          |  1 -
 .../ReloadingCombinedConfigurationBuilder.java     |  1 -
 .../configuration2/ex/ConfigurationException.java  |  1 -
 .../ex/ConfigurationRuntimeException.java          |  1 -
 .../configuration2/ex/ConversionException.java     |  1 -
 .../configuration2/interpol/DefaultLookups.java    |  2 +-
 .../configuration2/interpol/ExprLookup.java        |  1 -
 .../interpol/StringLookupAdapter.java              |  1 -
 .../configuration2/io/DefaultFileSystem.java       | 16 ++---
 .../commons/configuration2/io/FileLocator.java     |  6 +-
 .../reloading/VFSFileHandlerReloadingDetector.java |  1 -
 .../configuration2/resolver/CatalogResolver.java   |  1 -
 .../commons/configuration2/tree/MergeCombiner.java |  3 +-
 .../configuration2/tree/NodeTreeWalker.java        |  5 +-
 .../org/apache/commons/configuration2/Logging.java |  1 -
 .../configuration2/SynchronizerTestImpl.java       |  2 +-
 .../configuration2/TestBaseNullConfiguration.java  |  4 +-
 .../configuration2/TestINIConfiguration.java       |  7 +--
 .../TestNullCompositeConfiguration.java            |  3 +-
 .../TestPropertiesConfiguration.java               | 16 +----
 .../configuration2/TestXMLConfiguration.java       | 11 +---
 .../builder/TestFileBasedConfigurationBuilder.java |  4 +-
 ...adingCombinedConfigurationBuilderFileBased.java | 11 +---
 .../commons/configuration2/io/TestFileHandler.java | 14 +----
 .../plist/TestXMLPropertyListConfiguration.java    |  7 +--
 39 files changed, 64 insertions(+), 150 deletions(-)