Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package typesafe-config for openSUSE:Factory
checked in at 2021-04-21 20:59:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/typesafe-config (Old)
and /work/SRC/openSUSE:Factory/.typesafe-config.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "typesafe-config"
Wed Apr 21 20:59:48 2021 rev:3 rq:886896 version:1.4.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/typesafe-config/typesafe-config.changes
2021-04-19 21:06:47.380100462 +0200
+++
/work/SRC/openSUSE:Factory/.typesafe-config.new.12324/typesafe-config.changes
2021-04-21 21:00:06.470268292 +0200
@@ -1,0 +2,50 @@
+Mon Apr 19 17:56:42 UTC 2021 - Ferdinand Thiessen <[email protected]>
+
+- Update to 1.4.1:
+ * Add a helper method for parsing only application overrides
+ * Remove unmodifiable collection wrappers in ResolveContext
+ * Added support for memory units which don't fit in a long when
+ transformed to bytes
+ * Inherit optional and getter evaluation
+ * A few other bug fixes
+- Update to 1.4.0:
+ * application.conf variables can now override variables in
+ reference.conf
+ * Performance improvement through capacity hint for ArrayList
+
+-------------------------------------------------------------------
+Fri Apr 16 22:09:22 UTC 2021 - Ferdinand Thiessen <[email protected]>
+
+- Update to 1.3.4:
+ * It is now possible to override any configuration setting from
+ environment variables
+ * Added support for integer keys that are longer than Int
+ * Missing exception now has a reference to the origin Config
+ * Performance improvements to resolve()
+ * Config file syntax is now resolved when parsing InputStream
+ * It is now possible to use @Optional on keys that are reserved words
+ * ValidationProblem is now serializable
+- Update to 1.3.3:
+ * Minor issue fix
+- Update to 1.3.2:
+ * Environment variables are now able to be resolved to lists in the
+ same fashion as system properties.
+ * Added getPeriod() which returns time units as java.time.Period.
+ Currently supported periods are days, weeks, months and years.
+ * ConfigResolveOptions now has appendResolver(...) which allows
+ having custom behavior when unresolved substitutions are
+ encountered during resolution.
+ * Config Beans now support Set collection.
+ * A few other small bugfixes.
+- Update 1.3.1:
+ * Added include required("foo") syntax to specify includes that fail
+ if not present support for more kinds of property in
+ ConfigBeanFactory:
+ enumerations
+ optional fields
+ lists of beans
+ * numbers can now start with a decimal (".33" vs. "0.33"), these
+ are still parsed as strings but Config.getDouble() etc. will
+ convert them to numbers a few other small bugfixes
+
+-------------------------------------------------------------------
Old:
----
config-1.3.0.pom
config-1.3.0.tar.gz
New:
----
config-1.4.1.pom
config-1.4.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ typesafe-config.spec ++++++
--- /var/tmp/diff_new_pack.GrM3Wd/_old 2021-04-21 21:00:06.942269035 +0200
+++ /var/tmp/diff_new_pack.GrM3Wd/_new 2021-04-21 21:00:06.942269035 +0200
@@ -17,7 +17,7 @@
Name: typesafe-config
-Version: 1.3.0
+Version: 1.4.1
Release: 0
Summary: Configuration library for JVM languages
License: Apache-2.0
@@ -45,11 +45,20 @@
%build
pushd config
mkdir -p target/classes
-javac -d target/classes -source 8 -target 8 \
+javac -d target/classes \
+ -source 8 \
+ -target 8 \
+ -g \
+ -Xlint:unchecked \
$(find src/main/java -name \*.java | xargs)
jar -cf target/config.jar -C target/classes .
+
mkdir -p target/api
-javadoc -d target/api -source 8 -notimestamp \
+javadoc -d target/api \
+ -source 8 \
+ -notimestamp \
+ -group "Public API (version %{version})"
"com.typesafe.config:com.typesafe.config.parser" \
+ -group "Internal Implementation - Not ABI Stable" "com.typesafe.config.impl"
\
$(find src/main/java -name \*.java | xargs)
%install
++++++ config-1.3.0.pom -> config-1.4.1.pom ++++++
--- /work/SRC/openSUSE:Factory/typesafe-config/config-1.3.0.pom 2021-04-19
21:06:47.364100438 +0200
+++ /work/SRC/openSUSE:Factory/.typesafe-config.new.12324/config-1.4.1.pom
2021-04-21 21:00:06.374268140 +0200
@@ -4,42 +4,51 @@
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<packaging>bundle</packaging>
- <description>config</description>
- <version>1.3.0</version>
- <name>config</name>
- <organization>
- <name>com.typesafe</name>
- </organization>
- <url>https://github.com/typesafehub/config</url>
+ <description>configuration library for JVM languages using HOCON
files</description>
+ <url>https://github.com/lightbend/config</url>
+ <version>1.4.1</version>
<licenses>
<license>
- <name>Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
+ <name>Apache-2.0</name>
+ <url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
+ <name>config</name>
+ <organization>
+ <name>com.typesafe</name>
+ <url>https://github.com/lightbend/config</url>
+ </organization>
<scm>
- <url>git://github.com/typesafehub/config.git</url>
-
<connection>scm:git:git://github.com/typesafehub/config.git</connection>
+ <url>https://github.com/lightbend/config</url>
+ <connection>scm:[email protected]:lightbend/config.git</connection>
</scm>
<developers>
<developer>
<id>havocp</id>
<name>Havoc Pennington</name>
+ <email>@havocp</email>
<url>http://ometer.com/</url>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.typesafe</groupId>
- <artifactId>config-test-lib_2.10</artifactId>
- <version>1.3.0</version>
+ <artifactId>config-test-lib_2.12</artifactId>
+ <version>1.4.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jacoco</groupId>
+ <artifactId>org.jacoco.agent</artifactId>
+ <version>0.7.9</version>
<scope>test</scope>
+ <classifier>runtime</classifier>
</dependency>
<dependency>
<groupId>net.liftweb</groupId>
- <artifactId>lift-json_2.10</artifactId>
- <version>2.5</version>
+ <artifactId>lift-json_2.12</artifactId>
+ <version>3.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
++++++ config-1.3.0.tar.gz -> config-1.4.1.tar.gz ++++++
++++ 7266 lines of diff (skipped)