opencode-swarm-plugin 0.42.7 → 0.42.8

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.
@@ -1,9 +1,9 @@
1
1
  $ bun build ./src/index.ts --outdir ./dist --target node --external @electric-sql/pglite --external swarm-mail --external vitest --external @vitest/ui --external lightningcss && bun build ./src/plugin.ts --outfile ./dist/plugin.js --target node --external @electric-sql/pglite --external swarm-mail --external vitest --external @vitest/ui --external lightningcss && tsc
2
- Bundled 1349 modules in 230ms
2
+ Bundled 1349 modules in 204ms
3
3
 
4
4
  index.js 4.34 MB (entry point)
5
5
 
6
- Bundled 1350 modules in 215ms
6
+ Bundled 1350 modules in 235ms
7
7
 
8
8
  plugin.js 4.31 MB (entry point)
9
9
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # opencode-swarm-plugin
2
2
 
3
+ ## 0.42.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a797bea`](https://github.com/joelhooks/swarm-tools/commit/a797bea871e5d698ebb38b41f47ff07faa7c108b) Thanks [@joelhooks](https://github.com/joelhooks)! - ## 🔗 Tweets Now Link to the Right PR
8
+
9
+ Release tweets were linking to the wrong PR. The old logic grabbed "most recent merged PR that isn't a version bump" - but with the new `release:` prefix on version PRs, it was picking up stale PRs.
10
+
11
+ **Fixed:** Now uses `github.sha` to find the exact PR that triggered the workflow. No more guessing.
12
+
13
+ ```
14
+ BEFORE: gh pr list --limit 5 --jq 'filter...' → wrong PR
15
+ AFTER: gh pr list --search "${{ github.sha }}" → triggering PR
16
+ ```
17
+
3
18
  ## 0.42.7
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm-plugin",
3
- "version": "0.42.7",
3
+ "version": "0.42.8",
4
4
  "description": "Multi-agent swarm coordination for OpenCode with learning capabilities, beads integration, and Agent Mail",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",