social-autoposter 1.6.38 → 1.6.39

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "social-autoposter",
3
- "version": "1.6.38",
3
+ "version": "1.6.39",
4
4
  "description": "Automated social posting pipeline for Reddit, X/Twitter, LinkedIn, and Moltbook. Install as a Claude Code agent skill.",
5
5
  "bin": {
6
6
  "social-autoposter": "bin/cli.js"
@@ -172,6 +172,15 @@ def _launch_chrome() -> bool:
172
172
  f"--user-data-dir={PROFILE_DIR}",
173
173
  "--no-first-run",
174
174
  "--no-default-browser-check",
175
+ # Encrypt the cookie store with Chrome's fixed obfuscation key instead of
176
+ # the macOS Keychain ("Chrome Safe Storage"). Without this, a keychain
177
+ # lock/re-lock leaves Chrome unable to decrypt its Cookies SQLite on the
178
+ # next launch and the imported session is discarded. Must match the cycle
179
+ # launcher (skill/lib/twitter-backend.sh) so the session connected here
180
+ # actually survives the pipeline's later relaunches. (Persistence fix,
181
+ # 2026-06-02.)
182
+ "--password-store=basic",
183
+ "--use-mock-keychain",
175
184
  "--disable-features=ChromeWhatsNewUI",
176
185
  ]
177
186
  is_linux = sys.platform.startswith("linux")