1. 22 1月, 2021 1 次提交
  2. 21 1月, 2021 3 次提交
  3. 20 1月, 2021 2 次提交
  4. 18 1月, 2021 2 次提交
  5. 14 1月, 2021 2 次提交
  6. 05 1月, 2021 1 次提交
  7. 23 12月, 2020 1 次提交
  8. 16 12月, 2020 3 次提交
  9. 13 11月, 2020 1 次提交
  10. 04 11月, 2020 1 次提交
  11. 24 10月, 2020 1 次提交
  12. 21 10月, 2020 1 次提交
  13. 02 10月, 2020 1 次提交
  14. 23 9月, 2020 1 次提交
    • I
      fix(GH-3425): Exception getting ProcessDefinitions with multple versions (#3441) · 5ed730cd
      Igor Dianov 提交于
      * fix(GH-3425): Exception getting ProcessDefinitions with multple versions
      
      * fix: use deploymentKey to select latest deployment
      
      * Revert "fix: use deploymentKey to select latest deployment"
      
      This reverts commit 25786ffeccad972473dcd037a07621d017dc480e.
      
      * Revert "fix(GH-3425): Exception getting ProcessDefinitions with multple versions"
      
      This reverts commit a3dae80d648595ede7239c78a84860fd7433e48f.
      
      * fix: remove executeSingleResult hack  in DeploymentQueryImpl
      
      * feat: add latest version by deployment name in DeploymentQuery api
      
      * fix: remove project release version constraint from query
      
      * fix: remove PROJECT_RELEASE_VERSION_ not null from latest deployment query
      
      * fix: apply process definition filtering by deployment id using query builder
      
      * fix: update test mocks
      
      * fix: update process runtime definition query to select latest version
      
      * chore: revert mock tests
      
      * chore: revert changes
      
      * refactor: update latest deployment query
      
      * fix: refine latest deployment version by name query criteria
      
      * fix: remove required deployment name for latest version restriction
      
      * fix: add DeploymentQuery integration test
      5ed730cd
  15. 18 9月, 2020 2 次提交
  16. 15 9月, 2020 1 次提交
  17. 10 9月, 2020 1 次提交
  18. 04 9月, 2020 1 次提交
    • M
      Variable mapping representation changes (#3392) · 1669b521
      Miguel Ruiz 提交于
      * Activiti/Activiti#3368 Change variable mapping representation
      
      * Activiti/Activiti#3368 Refactor utility methods
      
      * Activiti/Activiti#3368 Refactor Extension unit tests
      
      * Activiti/Activiti#3368 Fix variable mapping call activity tests
      
      * Activiti/Activiti#3368 Fix variable initilization
      
      * Activiti/Activiti#3368 Fix starter tests
      
      * Activiti/Activiti#3368 Add missing extensions files
      
      * Clean up
      
      * Activiti/Activiti#3368 Restore start event tests
      
      * Activiti/Activiti#3368 Revert logic to fix start event mapping
      
      * Activiti/Activiti#3368 Fix use case for passed vars at process instance start
      
      * Activiti/Activiti#3368 Clean up
      
      * Address comments
      1669b521
  19. 27 8月, 2020 1 次提交
    • O
      · d0de4a5f
      Oleksandr Merkulov 提交于
      notifications in travis
      d0de4a5f
  20. 24 8月, 2020 2 次提交
  21. 13 8月, 2020 1 次提交
    • Z
      Add LocalDate & LocalDateTime Types (#3407) · 0aed64ef
      Zoltán Pálfi 提交于
      * Add LocalDate & LocalDateTime Types
      
      Fixes of the IllegalArgumentException when JsonTypeConverter passed a LocalDate or LocalDateTime instance
      
      fixes Activiti#3405
      
      * fix license header
      0aed64ef
  22. 11 8月, 2020 1 次提交
  23. 10 8月, 2020 2 次提交
  24. 29 7月, 2020 1 次提交
  25. 28 7月, 2020 1 次提交
    • E
      Allow multi-instances to collect all local variables (#3393) · c7074d8c
      Elias Ricken de Medeiros 提交于
      * Allow multi-instances to collect all local variables
      
      - when both `loopDataOutputRef` and `outputDataItem` are set in the xml file, only the value of will be collected in `loopDataOutputRef`. The result will be a list of values. I.e.
      ```
                <multiInstanceLoopCharacteristics isSequential="false">
                  <loopCardinality>2</loopCardinality>
                  <loopDataOutputRef>meals</loopDataOutputRef>
                  <outputDataItem name="meal"/>
                </multiInstanceLoopCharacteristics>
      ```
      The result will have the pattern: `["pizza", "pasta"]`.
      
      - when only `loopDataOutputRef` is set, all the local variables will collected in `loopDataOutputRef`. The result will be a list of maps.
      ```
                <multiInstanceLoopCharacteristics isSequential="false">
                  <loopCardinality>2</loopCardinality>
                  <loopDataOutputRef>result</loopDataOutputRef>
                </multiInstanceLoopCharacteristics>
      ```
      The result will have the pattern: `[{"meal": "pizza", "anotherLocalVariable": "value1"}, {"meal": "pasta", "anotherLocalVariable": "value2"}]`.
      
      Fixes https://github.com/Activiti/Activiti/issues/3385
      
      * Fix test
      c7074d8c
  26. 22 7月, 2020 2 次提交
  27. 08 7月, 2020 1 次提交
  28. 25 6月, 2020 1 次提交
  29. 18 6月, 2020 1 次提交