passed in the url in pysqlcipher.
Fixes: #6589
Change-Id: I86f93f84ef2bd374c4832a70e26e4901d024ed4b
--- /dev/null
+.. change::
+ :tags: bug, pysqlcipher
+ :tickets: 6589
+ :versions: 1.4.18
+
+ Add note regarding encryption-related pragmas passed in the url.
e = create_engine('sqlite+pysqlcipher://:testing@/foo.db?cipher=aes-256-cfb&kdf_iter=64000')
+.. warning:: Previous versions of sqlalchemy did not take into consideration
+ the encryption-related pragmas passed in the url string, that were silently
+ ignored. This may cause errors when opening files saved by a
+ previous sqlalchemy version if the encryption options do not match.
+
Pooling Behavior
----------------