Skip to content

Commit b89ce22

Browse files
authored
Merge pull request #271 from Sherpard/feature/publicTransactionLogger
Set AbstractTransactionManager to protected.
2 parents 98888d8 + 1ab151c commit b89ce22

File tree

23 files changed

+26
-22
lines changed

23 files changed

+26
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 3.9.2 (????)
2+
3+
* [chg] `AbstractTransactionManager` is now scoped as package.
4+
15
# Version 3.9.1 (2019-11-30)
26

37
* [new] Support for programmatic login through `SecuritySupport` interface (no need for Shiro-specific code anymore).

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.9.1-SNAPSHOT</version>
17+
<version>3.9.2-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.9.1-SNAPSHOT</version>
17+
<version>3.9.2-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>seed-core</artifactId>

core/src/main/java/org/seedstack/seed/core/internal/transaction/AbstractTransactionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
/**
3333
* Base class for common transaction manager behavior.
3434
*/
35-
public abstract class AbstractTransactionManager implements TransactionManager {
35+
abstract class AbstractTransactionManager implements TransactionManager {
3636
private final MethodInterceptorImplementation methodInterceptorImplementation = new
3737
MethodInterceptorImplementation();
3838
@Inject

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

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

2525
<properties>

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.9.1-SNAPSHOT</version>
17+
<version>3.9.2-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.9.1-SNAPSHOT</version>
17+
<version>3.9.2-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.9.1-SNAPSHOT</version>
16+
<version>3.9.2-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.9.1-SNAPSHOT</version>
16+
<version>3.9.2-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.9.1-SNAPSHOT</version>
17+
<version>3.9.2-SNAPSHOT</version>
1818
</parent>
1919

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

0 commit comments

Comments
 (0)