You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by wa...@apache.org on 2022/09/07 03:38:23 UTC

[incubator-devlake] branch main updated (7110aaf7 -> 7ecc28e1)

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

warren pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


    from 7110aaf7 fix: fix bug on update time (#2980)
     add 7ecc28e1 fix:Encrypting blueprint.settings blueprint.plan and pipeline.plan in the database #2868

No new revisions were added by this update.

Summary of changes:
 models/blueprint.go                                |  21 ++-
 .../migrationscripts/20220903_modify_blueprint.go  | 125 +++++++++++++
 .../migrationscripts/20220904_modify_pipeline.go   | 130 +++++++++++++
 models/migrationscripts/register.go                |   2 +
 models/pipeline.go                                 |  17 +-
 runner/run_pipeline.go                             |  12 +-
 services/blueprint.go                              |  76 +++++---
 services/blueprint_helper.go                       | 143 +++++++++++++++
 services/pipeline.go                               | 159 +++++-----------
 services/pipeline_helper.go                        | 203 +++++++++++++++++++++
 services/pipeline_runner.go                        |   3 +-
 11 files changed, 738 insertions(+), 153 deletions(-)
 create mode 100644 models/migrationscripts/20220903_modify_blueprint.go
 create mode 100644 models/migrationscripts/20220904_modify_pipeline.go
 create mode 100644 services/blueprint_helper.go
 create mode 100644 services/pipeline_helper.go