ilml-plugin-linkedin 1.20.8 → 1.20.10
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/CHANGELOG.md +8 -0
- package/dist/connect.mjs +59 -57
- package/dist/enrichProfile.mjs +17 -15
- package/dist/enrichProfiles.mjs +41 -39
- package/dist/funnelRunner.mjs +45 -43
- package/dist/messageBot.mjs +61 -59
- package/dist/readPost.mjs +8 -8
- package/dist/run.mjs +54 -52
- package/dist/scout.mjs +11 -11
- package/dist/syncAll.mjs +98 -96
- package/dist/syncConnections.mjs +34 -32
- package/dist/verifyAbout.mjs +20 -18
- package/dist/version.mjs +1 -1
- package/dist/viewers.mjs +44 -42
- package/dist/visit.mjs +40 -38
- package/ilml-plugin.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.20.10
|
|
4
|
+
- **Fixed: `messages --push-drafts` could report a message as "sent" without actually delivering it.** When the draft's thread was already open in your inbox, the send ran on the shared messaging page and could land on the WRONG message box — a leftover floating chat bubble for a different person — then see that box clear and report "✓ sent" while the intended person received nothing. Push now prefers the reliable path that opens the recipient's own profile and confirms the recipient before sending (the same path `--send` has used since 1.17.2, which the draft push never actually adopted), and only falls back to the inbox path when no profile link is on file. A send that can't be confirmed is now reported as "failed" (your draft is kept) instead of a false "sent". Under the hood, the "did it actually send?" check is now one shared piece of logic used by both send paths, so it can't drift out of sync between them again.
|
|
5
|
+
- **Fixed: `messages --send "First Last" "text"` no longer sends a garbled fragment when the name or message contains spaces.** A quoted multi-word argument can get split on spaces before the plugin sees it, which could turn `--send "Jane Doe" "hi there"` into sending just a stray word. `--send` now detects the split and refuses with a clear message pointing you to the file-based form (`--send-batch @file.json`, or `--draft-batch @file.json` → `--push-drafts`), instead of delivering garbage.
|
|
6
|
+
- No schema change.
|
|
7
|
+
|
|
8
|
+
## 1.20.9
|
|
9
|
+
- **Commands now recover on their own when LinkedIn puts up its sign-in wall mid-run — instead of stopping and making you start over.** LinkedIn periodically throws its "join / sign in" screen on a page even though your session is still good (common when you've recently signed in from another device or location). Until now that ended the command with "session expired", and you had to log in again and re-run it. Now, when a command hits that wall, it quietly reopens your feed — where LinkedIn usually recognises you from your existing session within a few seconds, no password needed — refreshes your saved sign-in, and continues where it left off, hands-free. If LinkedIn genuinely asks for your email and password (a real sign-out), the command pauses and waits while you sign in **in the browser window it already has open**, then resumes on its own — no need to close anything or run the command again. Safeguards: your saved session is only overwritten when the refreshed one is actually valid, so a half-loaded page can never replace a good login; and an unattended/scheduled run won't hang waiting for a sign-in nobody can complete — it fails fast with a clear message instead. This works the same way across every command. No schema change.
|
|
10
|
+
|
|
3
11
|
## 1.20.8
|
|
4
12
|
- **Fixed: `messages --push-drafts` no longer leaves a duplicate copy of the sent message in your local conversation history.** When a draft was sent, the plugin could record the message twice — once as the draft-turned-sent and once from re-reading the thread afterwards — because the two copies differed only by the paragraph breaks (`\n\n`) that LinkedIn strips when it re-extracts a thread, so they weren't recognised as the same message. Two fixes: (1) message de-duplication is now whitespace-insensitive, so any two messages that differ only in spacing/line-breaks collapse into one; (2) the send flow now writes your conversations file through a single owner instead of two competing writers that could overwrite each other. If extraction ever misses the just-sent message on a very long thread, the draft is kept (marked sent) rather than dropped, so a sent message is never lost from the record. Recognising your own sent message now tolerates the small differences LinkedIn introduces in the displayed sender name (case, spacing, an appended credential), so it can't accidentally leave a second copy. Message de-duplication is also now robust to unexpected non-text values in stored data — a single corrupted entry can no longer abort a whole sync. Existing duplicates tidy themselves up the next time that thread is synced. No schema change — your messages, contacts and drafts are otherwise untouched.
|
|
5
13
|
|