You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by ta...@apache.org on 2019/07/31 08:21:54 UTC

[deltaspike] branch master updated (7909fc4 -> 0f201c7)

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

tandraschko pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/deltaspike.git.


    from 7909fc4  DELTASPIKE-1377 also fix issue with nested arrays
     new 2f7e0c4  [Refactor] Move full property fetching to AuditProvider.
     new 50f9fa1  Implement @CreatedBy.
     new 360f67e  Extend unit test for new @ModifiedBy.onCreate flag .
     new b830ec8  Implement and extend unit tests for @CreatedBy.
     new e874ef1  Fix typo in @ModifiedOn's JavaDoc.
     new 88c9367  Deprecate the onCreate flag on ModifiedOn.
     new 0f201c7  Merge pull request #93 from j-be/data-audit-createdBy

The 2358 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../api/audit/{CreatedOn.java => CreatedBy.java}   |   4 +-
 .../deltaspike/data/api/audit/ModifiedBy.java      |   3 +
 .../deltaspike/data/api/audit/ModifiedOn.java      |   7 +-
 .../deltaspike/data/impl/audit/AuditProvider.java  |  24 ++++
 .../data/impl/audit/PrincipalProvider.java         |  37 ++++--
 .../data/impl/audit/TimestampsProvider.java        |  17 +--
 .../data/impl/audit/AuditEntityListenerTest.java   |  32 +++++-
 .../data/impl/audit/PrincipalProviderTest.java     | 128 +++++++++++++++++++++
 .../deltaspike/data/test/domain/AuditedEntity.java |  31 +++++
 9 files changed, 251 insertions(+), 32 deletions(-)
 copy deltaspike/modules/data/api/src/main/java/org/apache/deltaspike/data/api/audit/{CreatedOn.java => CreatedBy.java} (92%)
 create mode 100644 deltaspike/modules/data/impl/src/test/java/org/apache/deltaspike/data/impl/audit/PrincipalProviderTest.java