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.
- package/README.md +10 -17
- package/dist/index.js +1 -1
- 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
|
-
#
|
|
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
|
|
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`
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
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
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
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