wurk 0.0.3 → 0.0.4
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -1
- data/README.md +8 -0
- data/lib/wurk/version.rb +1 -1
- data/vendor/assets/dashboard/assets/index-D2XR0iGw.js +60 -0
- data/vendor/assets/dashboard/assets/index-DlPr4YXw.css +1 -0
- data/vendor/assets/dashboard/index.html +2 -2
- data/vendor/assets/dashboard/wurk-manifest.json +2 -2
- metadata +3 -3
- data/vendor/assets/dashboard/assets/index-8P3N_m1X.js +0 -152
- data/vendor/assets/dashboard/assets/index-Bqz4_SOQ.css +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eee8f74b4646a8c8efc7ccd83504f4d88186475b62c07110d427cbc2bb81c540
|
|
4
|
+
data.tar.gz: 8016408ba51c5ed155b914bb21f2b54abb2a918cb4724532de7f3932fc06479c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d69bf292c551c84ea8d508ce1b639bbd6bcfafed88fd1dc7bded95eebd3b82570d235b1a85fbae67f9dad7eab1a714daa1b6c90c2eba454af83c3cb0ec5c4bc9
|
|
7
|
+
data.tar.gz: 564be6373cad541391ca36eb31e7e7137dfc4c6e96c44973b886e36ead41ed18cdd761df21b187714a0ed577fa64b03f698e5666fe30a3cd14e9d41440a016ac
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ All notable changes to Wurk are recorded here. Format: [Keep a Changelog](https:
|
|
|
7
7
|
### Added
|
|
8
8
|
- `Sidekiq::Testing` drop-in: `inline!` / `fake!` / `disable!` (global or block-scoped), the in-memory `Sidekiq::Queues` store, and the `Worker`/`Job` test helpers (`.jobs`, `.clear`, `.drain`, `.perform_one`, `.process_job`, `.drain_all`, `.clear_all`) + `Sidekiq::EmptyQueueError`.
|
|
9
9
|
|
|
10
|
+
## [0.0.4] - 2026-06-01
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- `docs/clean-room.md` — compatibility & legal basis: Wurk reimplements the Sidekiq API (clean-room, original implementation), the *Google v. Oracle* rationale, and trademark/nominative-use notes. Linked from the README.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Dependency refresh. GitHub Actions bumped to current majors (`checkout@v6`, `setup-node@v6`, `upload-artifact@v7`) on Node 24, clearing the Node 20 deprecation. Dashboard frontend upgraded to React 19, React Router 7, Recharts 3, Vite 8, and TypeScript 6. Ruby dev/test gems refreshed to latest.
|
|
17
|
+
|
|
10
18
|
## [0.0.3] - 2026-06-01
|
|
11
19
|
|
|
12
20
|
### Changed
|
|
@@ -52,7 +60,8 @@ First public (pre-1.0) release. Wurk is a 100% API-compatible drop-in replacemen
|
|
|
52
60
|
- ActiveJob adapter, `IterableJob`, embedded mode, and a standalone `exe/wurk` runner.
|
|
53
61
|
- Sidekiq client/server middleware contract; third-party ecosystem suites (sidekiq-cron, sidekiq-unique-jobs, sidekiq-scheduler, sidekiq-status, sidekiq-failures, sidekiq-throttled) pass against Wurk.
|
|
54
62
|
|
|
55
|
-
[Unreleased]: https://github.com/developerz-ai/wurk/compare/v0.0.
|
|
63
|
+
[Unreleased]: https://github.com/developerz-ai/wurk/compare/v0.0.4...HEAD
|
|
64
|
+
[0.0.4]: https://github.com/developerz-ai/wurk/compare/v0.0.3...v0.0.4
|
|
56
65
|
[0.0.3]: https://github.com/developerz-ai/wurk/compare/v0.0.2...v0.0.3
|
|
57
66
|
[0.0.2]: https://github.com/developerz-ai/wurk/compare/v0.0.1...v0.0.2
|
|
58
67
|
[0.0.1]: https://github.com/developerz-ai/wurk/releases/tag/v0.0.1
|
data/README.md
CHANGED
|
@@ -48,6 +48,7 @@ Plus Wurk extras: a worker topology DSL, a Kubernetes liveness/readiness listene
|
|
|
48
48
|
- **[Migrating from Sidekiq](#migrating-from-sidekiq)** — the one-line swap and what to expect.
|
|
49
49
|
- **API reference (parity specs):** [Sidekiq OSS](https://github.com/developerz-ai/wurk/blob/main/docs/target/sidekiq-free.md) · [Pro](https://github.com/developerz-ai/wurk/blob/main/docs/target/sidekiq-pro.md) · [Enterprise](https://github.com/developerz-ai/wurk/blob/main/docs/target/sidekiq-ent.md) — the authoritative surface Wurk matches exactly.
|
|
50
50
|
- **[Securing the dashboard](https://github.com/developerz-ai/wurk/blob/main/docs/dashboard.md)** · **[Metrics history](https://github.com/developerz-ai/wurk/blob/main/docs/metrics-history.md)**
|
|
51
|
+
- **[Compatibility & legal basis](https://github.com/developerz-ai/wurk/blob/main/docs/clean-room.md)** — clean-room implementation: Wurk copies the API, not the code (Google v. Oracle).
|
|
51
52
|
- **Live demo:** [wurk.demo.developerz.ai](https://wurk.demo.developerz.ai)
|
|
52
53
|
|
|
53
54
|
## Requirements
|
|
@@ -135,3 +136,10 @@ Issues and pull requests are welcome — see **[CONTRIBUTING.md](https://github.
|
|
|
135
136
|
## License
|
|
136
137
|
|
|
137
138
|
MIT. See [LICENSE](https://github.com/developerz-ai/wurk/blob/main/LICENSE).
|
|
139
|
+
|
|
140
|
+
Wurk is a clean-room reimplementation of the Sidekiq **API** — it copies the
|
|
141
|
+
interface (so your jobs run unchanged), not Sidekiq's implementation code. This
|
|
142
|
+
is the same basis the Supreme Court upheld for Google's reuse of the Java API in
|
|
143
|
+
*Google v. Oracle* (2021). "Sidekiq" is a trademark of Contributed Systems, LLC;
|
|
144
|
+
Wurk is independent and not affiliated with or endorsed by them. Full reasoning:
|
|
145
|
+
**[docs/clean-room.md](https://github.com/developerz-ai/wurk/blob/main/docs/clean-room.md)**.
|
data/lib/wurk/version.rb
CHANGED