bullmq-dash 0.3.0 → 0.3.1

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.
Files changed (3) hide show
  1. package/README.md +10 -17
  2. package/dist/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -225,7 +225,7 @@ bun run start
225
225
  # Audit the immutable 0.2.7 Socket target (historical evidence)
226
226
  bun run security:audit-0.2.7
227
227
 
228
- # Score the configured package version after it is published
228
+ # Optional manual Socket score for an already-published version
229
229
  bun run security:score
230
230
 
231
231
  # Verify forbidden local-only files are ignored and not tracked
@@ -234,7 +234,7 @@ bun run security:verify-source-control
234
234
  # Verify Bun package manager pinning, bun.lock tracking, and frozen installs
235
235
  bun run security:verify-lockfile
236
236
 
237
- # Verify CI/publish workflows pin actions, lock down releases, and score after publish
237
+ # Verify CI/publish workflows pin actions and lock down releases
238
238
  bun run security:verify-workflows
239
239
 
240
240
  # Verify source import policy, npm tarball contents, and stripped publish manifest
@@ -260,26 +260,19 @@ or gitleaks), enforces packed-tarball size and entry-count limits, and
260
260
  verifies the stripped publish manifest. Note: `ioredis` remains a transitive
261
261
  dependency through `bullmq`; the policy blocks _direct_ imports only.
262
262
 
263
- `bun run security:score` runs the Socket package score against the version in
264
- `package.json` (must already be published to npm). It compares the alert set
265
- against an accepted-alert allowlist that includes the capabilities a Redis
266
- monitoring tool legitimately needs (`networkAccess`, `urlStrings`,
267
- `filesystemAccess`, `envVars`), Socket's transient `recentlyPublished` window,
268
- and the transitive alert types present in the `bullmq` and `@opentui/core`
269
- graphs. The gate exits nonzero only when an alert type appears outside that set,
270
- which surfaces real regressions from dependency updates without paging on every
271
- publish.
263
+ `bun run security:score` is an optional manual audit for a version that already
264
+ exists on npm. It compares the Socket alert set against the accepted-alert
265
+ allowlist, but it is intentionally not part of the publish workflow because
266
+ Socket scoring can lag or fail after npm accepts the immutable package version.
272
267
 
273
268
  `bun run security:verify-workflows` rejects mutable GitHub Action refs,
274
269
  `pull_request_target` triggers, and direct `${{ github.event.* }}` interpolation
275
270
  in workflow commands. It also verifies CI and publish workflows run the
276
271
  source-control, lockfile, workflow, and package policy verifiers, CI uses
277
- read-only permissions, and the npm publish workflow scopes secrets to approved
278
- step env entries, is release-only, runs the source-control, lockfile, workflow,
279
- and package verifiers before publishing, uses least privilege, keeps npm
280
- lifecycle scripts enabled, publishes with provenance, installs the Socket CLI by
281
- the configured exact version `1.1.94`, and runs the post-publish Socket score
282
- gate.
272
+ read-only permissions, and the npm publish workflow rejects publish secrets,
273
+ is release-only, runs the source-control, lockfile, workflow, and package
274
+ verifiers before publishing, uses least privilege, keeps npm lifecycle scripts
275
+ enabled, and publishes with provenance.
283
276
 
284
277
  `bun run security:verify-source-control` rejects tracked `.env` / `.envrc` /
285
278
  `.npmrc` files, build output, publish manifest backups, and generated package
package/dist/index.js CHANGED
@@ -3775,7 +3775,7 @@ class App {
3775
3775
 
3776
3776
  // src/cli.ts
3777
3777
  import { parseArgs } from "util";
3778
- var PACKAGE_VERSION = "0.3.0";
3778
+ var PACKAGE_VERSION = "0.3.1";
3779
3779
  var HELP_TEXT = `
3780
3780
  bullmq-dash - Terminal UI dashboard for BullMQ queue monitoring
3781
3781
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bullmq-dash",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Terminal UI dashboard for BullMQ queue monitoring",
5
5
  "keywords": [
6
6
  "bullmq",