File tree Expand file tree Collapse file tree 7 files changed +363
-168
lines changed
Expand file tree Collapse file tree 7 files changed +363
-168
lines changed Original file line number Diff line number Diff line change 1+ | tag | date | title |
2+ | ---| ---| ---|
3+ | v2.7.0 | 2021-12-02 | User Sync Tool v2.7.0 |
4+
5+ # New Features
6+
7+ ** Revamped Sign Sync**
8+
9+ Sign Sync has been overhauled. It is now implemented as a separate workflow with an alternate entrypoint command (` sign-sync ` ).
10+
11+ Feature summary
12+
13+ - Primary config for Sign Sync is ` sign-sync-config.yml `
14+ - Sign connector config - ` connector-sign.yml `
15+ - All identity sources are supported
16+ - Sync supports multiple Sign targets
17+ - Full user lifecycle management for standalone Sign environments
18+ - Mapping structure to manage Sign group assignments and admin privileges
19+ - Same logging options as UMAPI sync
20+ - Sign API data is cached
21+ - Tool to migrate post-sync config
22+
23+ Architecture changes
24+
25+ - New ` engine ` module
26+ - ` rules.py ` refactored to ` engine.umapi `
27+ - ` config.py ` refctored to multi-file module
28+ - Sign API client is top-level (parallel to ` user_sync ` module)
29+ - ` post_sync ` has been removed
30+
31+ Notes:
32+
33+ - User multi-group (UMG) is not supported at this time
34+ - The Sign client uses Sign API v6
35+
36+ Documentation here - https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/sign_sync.html
37+
38+ ** Enhanced ESM Support**
39+
40+ Fixed an issue when syncing to trustee consoles that use Enterprise Storage Model (ESM).
41+ New config option ` uses_business_id ` in UMAPI connector config ensures that users are
42+ handled correctly.
43+
44+ See https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/advanced_configuration.html#esm-secondary-targets
45+
46+ ---
47+
148| tag | date | title |
249| ---| ---| ---|
350| v2.7.0rc4 | 2021-11-18 | User Sync Tool v2.7.0rc4 |
Original file line number Diff line number Diff line change @@ -29,4 +29,12 @@ Notes:
2929- User multi-group (UMG) is not supported at this time
3030- The Sign client uses Sign API v6
3131
32- Documentation here - https://github.com/adobe-apiplatform/user-sync.py/blob/v2-sign-phase-2/docs/en/user-manual/sign_sync.md
32+ Documentation here - https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/sign_sync.html
33+
34+ ** Enhanced ESM Support**
35+
36+ Fixed an issue when syncing to trustee consoles that use Enterprise Storage Model (ESM).
37+ New config option ` uses_business_id ` in UMAPI connector config ensures that users are
38+ handled correctly.
39+
40+ See https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/advanced_configuration.html#esm-secondary-targets
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ nav_level: 1
88nav_order : 100
99---
1010
11- Version 2.7.0rc4 , released 2021-11-18
11+ Version 2.7.0 , released 2021-12-02
1212
1313This document walks you through the steps needed to understand
1414and setup the User Sync Tool.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ nav_level: 1
88nav_order : 10
99---
1010
11- Version 2.7.0rc4 , released 2021-11-18
11+ Version 2.7.0 , released 2021-12-02
1212
1313This document has all the information you need to get up and
1414running with User Sync. It presumes familiarity with the use of
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ packages = [
2222[tool .poetry .dependencies ]
2323python = " ^3.6"
2424requests = " ^2.26.0"
25- aiohttp = " ^3.7.4 "
25+ aiohttp = " ^3.8.1 "
2626
2727[tool .poetry .dev-dependencies ]
2828pytest = " ^6.2.3"
Original file line number Diff line number Diff line change 1818# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919# SOFTWARE.
2020
21- __version__ = '2.7.0rc4 '
21+ __version__ = '2.7.0 '
You can’t perform that action at this time.
0 commit comments