Skip to content

Commit ba54c8d

Browse files
authored
Merge pull request #225 from adobe-apiplatform/issue224
"Fix #224" by updating release notes
2 parents 9365038 + a64338e commit ba54c8d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,9 @@ The proper packages were not present for secure credential storage on Linux plat
1717
## Compatibility with Prior Versions
1818

1919
This version is fully backwards-compatible with version 2.1.
20+
21+
There are new UMAPI config file settings in this release to enable the use of encyrpted keys, see [this section of the docs](https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/deployment_best_practices.html#storing-credentials-in-os-level-storage) for full details.
22+
23+
## Known Issues
24+
25+
On the Win64 platform, due to a change in the encryption support library used by User Sync, there are very long pathnames embedded in the released build artifact `user-sync.pex`. It will likely be necessary to set the `PEX_ROOT` environment variable on Windows (as described [in the docs here](https://adobe-apiplatform.github.io/user-sync.py/en/user-manual/setup_and_installation.html)) to be a very short path (e.g., `env:$PEX_ROOT="C:\pex"`) in order to launch User Sync successfully. We hope to avoid the need for this workaround in a future release.

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
license='MIT',
4343
packages=['user_sync', 'user_sync.connector'],
4444
install_requires=[
45+
'pycryptodome',
4546
'python-ldap==2.4.25',
4647
'PyYAML',
4748
'umapi-client>=2.5',
@@ -54,11 +55,7 @@
5455
'dbus-python'
5556
],
5657
':sys_platform=="win32"':[
57-
'pywin32-ctypes==0.0.1',
58-
'pycryptodome==3.3.1'
59-
],
60-
':sys_platform!="win32"': [
61-
'pycryptodome',
58+
'pywin32-ctypes==0.0.1'
6259
]
6360
},
6461
setup_requires=['nose>=1.0'],

0 commit comments

Comments
 (0)