Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare central deployment #221

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Jul 8, 2021

  1. - update ci.yaml

    robertoschwald committed Jul 8, 2021
    Configuration menu
    Copy the full SHA
    e017fc4 View commit details
    Browse the repository at this point in the history
  2. - update ci.yaml

    robertoschwald committed Jul 8, 2021
    Configuration menu
    Copy the full SHA
    04f5c73 View commit details
    Browse the repository at this point in the history
  3. - update ci.yaml

    robertoschwald committed Jul 8, 2021
    Configuration menu
    Copy the full SHA
    31c9a09 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2021

  1. Fix createdBy and lastUpdatedBy was not write to domain correctly on …

    …certain condition
    
    Fix #224
    
    When the Stampable is inheriting from a super class, for example
    
    1. The super class `WithDynamicFields` implements Stampable
    ```
    abstract class WithDynamicFields<D> implements Auditable, Stampable<D> {
    
    }
    ```
    
    2. The actual class extends the super class `WithDynamicFields`
    
    ```
    class Article extends WithDynamicFields<Article> {
    
    }
    ```
    
    Currently under this condition, createdBy and lastUpdatedBy value saved to database is always 'N/A', it doesn't happen when class `Article` implements `Stampable` directly.
    
    This commit fixes the above issue
    xqliu authored and robertoschwald committed Dec 31, 2021
    Configuration menu
    Copy the full SHA
    137edbc View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2022

  1. Configuration menu
    Copy the full SHA
    fae68c8 View commit details
    Browse the repository at this point in the history