Skip to content

Commit 764bbfe

Browse files
committed
Bump version to 3.1.0-S
1 parent 8ab3d54 commit 764bbfe

File tree

18 files changed

+25
-20
lines changed

18 files changed

+25
-20
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
# Version 3.0.4 (2017-??-??)
1+
# Version 3.1.0 (2017-02-16)
22

33
* [new] Configuration can be sourced from properties files (`application.properties` and `META-INF/configuration/*.properties`).
44
* [new] The `effective-config` tool dumps the aggregated global configuration tree of the application.
55
* [new] The `crypt` tool crypts values using the master key store.
6-
* [fix] Fix mishandling of override scanned configuration files.
6+
* [new] Support for configuration profiles (specify profiles with system property `seedstack.profiles`).
7+
* [new] Sensitive information is hidden in configuration dumps (properties named `passwd`, `password`, `pwd`, system properties and environment variables)
8+
* [new] Ported security cache from version 2.3.4.
9+
* [new] Ported Jersey2 cache control from version 2.3.3.
10+
* [fix] Fix mishandling of override scanned configuration files.
11+
* [fix] Configuration was incorrectly refreshed at every access.
712
* [chg] coffig: **[2.0.0](https://github.com/seedstack/shed/releases/tag/v2.0.0)**
813

914
# Version 3.0.3 (2017-01-16)

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-cli</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-core</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919

2020
<groupId>org.seedstack.seed</groupId>
2121
<artifactId>seed</artifactId>
22-
<version>3.0.4-SNAPSHOT</version>
22+
<version>3.1.0-SNAPSHOT</version>
2323
<packaging>pom</packaging>
2424

2525
<properties>
2626
<poms.version>3.0.0</poms.version>
2727
<nuun-kernel.version>1.0.M9</nuun-kernel.version>
2828
<shed.version>1.0.1</shed.version>
29-
<coffig.version>2.0.0-SNAPSHOT</coffig.version>
29+
<coffig.version>2.0.0</coffig.version>
3030
<commons-cli.version>1.3.1</commons-cli.version>
3131
<guice.version>4.0</guice.version>
3232
<shiro.version>1.2.4</shiro.version>

rest/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-rest</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-rest-core</artifactId>

rest/jersey2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-rest</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-rest-jersey2</artifactId>

rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed</artifactId>
16-
<version>3.0.4-SNAPSHOT</version>
16+
<version>3.1.0-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-rest</artifactId>

rest/specs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed-rest</artifactId>
16-
<version>3.0.4-SNAPSHOT</version>
16+
<version>3.1.0-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-rest-specs</artifactId>

security/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-security</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-security-core</artifactId>

security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-security</artifactId>

security/specs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed-security</artifactId>
16-
<version>3.0.4-SNAPSHOT</version>
16+
<version>3.1.0-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-security-specs</artifactId>

specs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-specs</artifactId>

testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-testing</artifactId>

web/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-web</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-web-core</artifactId>

web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-web</artifactId>

web/security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-web</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-web-security</artifactId>

web/specs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.seedstack.seed</groupId>
1515
<artifactId>seed-web</artifactId>
16-
<version>3.0.4-SNAPSHOT</version>
16+
<version>3.1.0-SNAPSHOT</version>
1717
</parent>
1818

1919
<artifactId>seed-web-specs</artifactId>

web/undertow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.seedstack.seed</groupId>
1616
<artifactId>seed-web</artifactId>
17-
<version>3.0.4-SNAPSHOT</version>
17+
<version>3.1.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-web-undertow</artifactId>

0 commit comments

Comments
 (0)