Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
App Blocks
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Genesys PGR
App Blocks
Commits
40081aea
Commit
40081aea
authored
Jan 24, 2019
by
Matija Obreza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[maven-release-plugin] prepare release application-blocks-1.5
parent
b22a782b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
50 additions
and
12 deletions
+50
-12
CHANGELOG.md
CHANGELOG.md
+38
-0
README.md
README.md
+3
-3
auditlog/pom.xml
auditlog/pom.xml
+3
-3
core/pom.xml
core/pom.xml
+1
-1
parent/pom.xml
parent/pom.xml
+1
-1
pom.xml
pom.xml
+2
-2
security/pom.xml
security/pom.xml
+2
-2
No files found.
CHANGELOG.md
View file @
40081aea
# Changelog
## 1.5 Release
January 24, 2019.
-
394bf92 Using a
`ThreadLocal`
stack for audit logs entries for individual (sub) transactions
-
25f2518 added listClientDetails by Page, fixed Json for
`OAuthClient#scopes`
-
431f9c7
`SpringSecurityAuditorAware`
: Reduce logging level when security principal not available
-
4d0de99 createdDate, lastModifiedDate marked with Public JsonView
-
ab895bc Fix: Auth failure listener -- apparently it can be a String
-
c074fd8 Fix: Auth failure listener
-
967826d ES: Set createdBy, lastModifiedBy to not_analyzed string type
-
222e045 Do not deserialize Audited properties createdBy, lastModifiedBy from JSON
-
7ef27f2 Fix:
`AclObjectIdentityExt`
cannot serialize
`OAuthClient#roles`
-
ce45ba7
`AclObjectIdentityExt`
provides extended information on Object Identity
-
f70eb99 ACL removePermission for SID
-
c161f60 Introduced ClassAclOid as AclAwareModel
-
e136701 Serialize Audited
`lastModifiedBy`
and
`createdBy`
using JsonSidConverter
-
a3c4dfd SpringSecurityAuditorAware fetches AclSid#id directly with getSidId()
-
bd408e8 added clearing Acl cache after updating permissions
-
f5163f3 Extend ACL service
-
a05c655 Fix:
`Permissions.public = false`
when EVERYONE's permissions cannot be read
-
b89154b Fix: SecurityContextUtil should re-check context for
`permissionEvaluator`
-
f1e08ed mvn surefire plugin problem
-
a16fb36 Include VersionedModel#version in default serialization
-
40f0a90 ACL: Added support for #aclParentObjectIdentity()
-
6f25333 Fix:
`CurrentPermissionsWriter`
for ADMIN
-
cd95da7 Added
`Permissions#isPublic`
= EVERYONE can read the object
-
c091982 Update core filters
-
de9e43d Better logging for ACL cleanUp
-
6ac18d8 Stddev function for HSQL
-
9b43f46 hasRole and hasPermission added to SecurityContextUtil
-
b38eb76 Updated UuidModel class
-
2791bd6 Updated
`AclSid`
class: serialize the identity of the SID
-
9fa5496 FIX: Properly handle Hibernate proxy classes
-
7099be8 FIX: only set ownerSid if it is persisted
-
9f21c3d FIX: creatorPermission ensures objectIdentity entry even if owner is null
## 1.4 Release
September 19, 2018.
...
...
README.md
View file @
40081aea
...
...
@@ -21,7 +21,7 @@ The **core** provides common data models: `BasicModel`, `VersionedModel`, `Audit
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-core
</artifactId>
<version>
1.
4
</version>
<version>
1.
5
</version>
</dependency>
```
...
...
@@ -33,7 +33,7 @@ The **security** module provides generic `User` declaration, ACL model and servi
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-security
</artifactId>
<version>
1.
4
</version>
<version>
1.
5
</version>
</dependency>
```
...
...
@@ -45,6 +45,6 @@ The **auditlog** provides the model and services to capture changes to JPA entit
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-auditlog
</artifactId>
<version>
1.
4
</version>
<version>
1.
5
</version>
</dependency>
```
auditlog/pom.xml
View file @
40081aea
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-parent
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
<relativePath>
../parent/pom.xml
</relativePath>
</parent>
<artifactId>
application-blocks-auditlog
</artifactId>
...
...
@@ -79,13 +79,13 @@
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-security
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
</dependency>
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-core
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
</dependency>
<dependency>
...
...
core/pom.xml
View file @
40081aea
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-parent
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
<relativePath>
../parent/pom.xml
</relativePath>
</parent>
<artifactId>
application-blocks-core
</artifactId>
...
...
parent/pom.xml
View file @
40081aea
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
</parent>
<artifactId>
application-blocks-parent
</artifactId>
<packaging>
pom
</packaging>
...
...
pom.xml
View file @
40081aea
...
...
@@ -18,7 +18,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
<packaging>
pom
</packaging>
<name>
Application Building Blocks
</name>
<description>
This is the shared project pom.
</description>
...
...
@@ -49,7 +49,7 @@
<connection>
scm:https://gitlab.croptrust.org/genesys-pgr/application-blocks
</connection>
<developerConnection>
scm:git:git@gitlab.croptrust.org:genesys-pgr/application-blocks.git
</developerConnection>
<url>
git@gitlab.croptrust.org:genesys-pgr/application-blocks.git
</url>
<tag>
HEAD
</tag>
<tag>
application-blocks-1.5
</tag>
</scm>
<issueManagement>
...
...
security/pom.xml
View file @
40081aea
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-parent
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
<relativePath>
../parent/pom.xml
</relativePath>
</parent>
<artifactId>
application-blocks-security
</artifactId>
...
...
@@ -80,7 +80,7 @@
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-core
</artifactId>
<version>
1.5
-SNAPSHOT
</version>
<version>
1.5
</version>
</dependency>
<dependency>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment