flowable 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3312c2a15a2cdd2c9fd29d117ef3d22fd2145c2b426984a036993e22010b2f42
4
+ data.tar.gz: 8b862c2eeb1878f4765bd1df7a6ced718b01fb0b7c23a6f3c0048a6703208fbf
5
+ SHA512:
6
+ metadata.gz: cc6ea94a932d18828f0cb5f1de981c98af359ebf48024a522b35ed5bf4d4af898ea3a4ba5085879a5e1367b65219e3b185801905b1214698b4da5856f1d22342
7
+ data.tar.gz: 0abb38ae11b5e539988b31f111a56d0d06f10742b4de2296b09aa388c2a2f0d34eeedd75a5136f0f2d6ed0c0f5de0799f5a24d29bcfae4f327d1dca9ac7676e8
data/CHANGELOG.md ADDED
@@ -0,0 +1,83 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+ - Nothing yet
12
+
13
+ ### Changed
14
+ - Nothing yet
15
+
16
+ ### Fixed
17
+ - Nothing yet
18
+
19
+ ## [1.0.0] - 2024-12-24
20
+
21
+ ### Added
22
+
23
+ #### Core Features
24
+ - Full **CMMN API** support for Flowable REST API
25
+ - Deployments (list, create, get, delete with cascade)
26
+ - Case Definitions (list, get, get_by_key, model, resource_content)
27
+ - Case Instances (list, start_by_key, start_by_id, get, terminate, delete)
28
+ - Tasks (list, get, claim, unclaim, complete, update, delegate, resolve, delete)
29
+ - Plan Item Instances (list, get, trigger, enable, disable, start, terminate)
30
+ - History (case_instances, task_instances, milestones, plan_item_instances, variable_instances)
31
+
32
+ - Full **BPMN API** support
33
+ - BPMN Deployments (list, create, get, delete)
34
+ - Process Definitions (list, get, get_by_key, model, resource_content, suspend, activate)
35
+ - Process Instances (list, start_by_key, get, diagram, suspend, activate, delete)
36
+ - Executions (list, get, activities, signal, trigger)
37
+ - BPMN History (process_instances, activity_instances, task_instances, variable_instances)
38
+
39
+ #### Variables Support
40
+ - Case instance variables (get, set, create, update, delete)
41
+ - Process instance variables (get, set, create, update, delete)
42
+ - Task variables with scope support (local/global)
43
+ - Automatic type inference (string, integer, double, boolean, date, json)
44
+
45
+ #### Developer Tools
46
+ - **CLI tool** (`bin/flowable`) for command-line operations
47
+ - **Workflow DSL** for defining complex workflows programmatically
48
+ - Comprehensive **error handling** with specific exception types
49
+ - **Pagination support** with sorting options
50
+
51
+ #### Testing
52
+ - Unit tests with WebMock for all resources
53
+ - Integration tests against real Flowable container
54
+ - Docker Compose configuration for test environment
55
+ - Test runner script with container management
56
+
57
+ #### Documentation
58
+ - Comprehensive README with API reference
59
+ - Code examples for all operations
60
+ - Known issues and workarounds documented
61
+
62
+ ### Technical Details
63
+ - Zero external dependencies (uses Ruby standard library only)
64
+ - HTTP Basic Authentication
65
+ - SSL/TLS support
66
+ - Configurable base path
67
+ - Ruby 2.7+ compatibility
68
+
69
+ ### Known Issues
70
+ - Flowable 7.1.0 has a bug with date parameter parsing in query strings
71
+ - Model endpoint may return malformed JSON for complex models (Jackson nesting limit)
72
+ - Resource data endpoint returns XML with incorrect Content-Type header
73
+
74
+ ---
75
+
76
+ ## Version History
77
+
78
+ | Version | Date | Description |
79
+ |---------|------|-------------|
80
+ | 1.0.0 | 2024-12-24 | Initial release with full CMMN and BPMN support |
81
+
82
+ [Unreleased]: https://github.com/yourusername/flowable-ruby-client/compare/v1.0.0...HEAD
83
+ [1.0.0]: https://github.com/yourusername/flowable-ruby-client/releases/tag/v1.0.0
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Jakub Polak
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.