Commit graph

100 commits

Author SHA1 Message Date
Renovate Bot
0c2937be05 Update dependency node-gyp to v13.0.1
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m42s
2026-07-20 15:30:58 +00:00
166b4d4628 Merge pull request 'feat/ephemeral-keys' (#38) from feat/ephemeral-keys into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/38
2026-07-19 13:11:20 +02:00
659ef5a62b
fix: repair platform resolution in the built bundles
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m53s
The published package could not be used at all. `require('nomyo-js')`
succeeded, but constructing a client threw:

    Cannot find module './node'

Platform selection was done with a runtime require:

    const NodeSecureMemory = require('./node').NodeSecureMemory;

Rollup flattens every module into one file, so './node' and './browser'
no longer exist at runtime — and because the calls sit inside function
bodies, rollup left them as literal runtime requires rather than
resolving them. The failure was therefore deferred to first use: module
load and Object.keys() both looked fine, so nothing noticed. The
SecureCompletionClient constructor calls createSecureMemory() and
createHttpClient(), which made every client unconstructable.

Confirmed present at 057ff6c, this branch's merge base, so the npm
package has never worked.

Platform implementations are now injected by the entry points, which is
what src/node.ts and src/browser.ts always claimed to do (they merely
re-exported ./index). createSecureMemory/createHttpClient consult a
registered factory and throw a directive error if none was registered.
No require fallback is kept: leaving one would put an unresolvable
relative require back in the bundle, and bundlers resolve requires
statically, so webpack/vite would fail on a path that does not exist in
dist/. Jest registers the platform via tests/setup.ts instead.

This also keeps the Node HTTP client and the optional native addon out
of the browser bundle, which previously carried both.

Second defect found while verifying: dist/esm/index.mjs contained 13
require() calls (crypto, fs, path, jose, nomyo-native) that the source
loads lazily. `require` does not exist in ES module scope, so an ESM
consumer crashed with "require is not defined" as soon as one ran —
using keyDir for key persistence would have hit it on every Node
version. Node 24 masked the crypto case by having a global crypto. The
ESM output now carries a createRequire shim.

tests/integration/bundle.test.ts covers the artefact that actually
ships: both bundles construct a client, expose the API, resolve the
platform layer, keep Node-only modules out of the browser build, and the
ESM entry is imported and used by a real spawned Node process. Every
other suite runs against src/ through ts-jest, where these paths resolve
normally — which is precisely why this went unnoticed.

Verified end to end by installing the packed tarball into a clean
project: CommonJS and ESM both construct a client and run fs-backed key
generation on Node 18.19.1 and 24.18.0.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 12:59:24 +02:00
111335d7ff
fix: correct package entry points and publish contents
Five packaging defects, all pre-existing:

1. dist/esm/index.js held ESM syntax while the package is not
   "type": "module", so Node classified it as CommonJS. It failed
   outright on Node 18 ("Unexpected token 'export'") and only worked on
   Node >= 22 because Node re-parses after guessing the module type,
   paying that cost on every import. Bundles now carry explicit
   extensions: .mjs for ES output, .cjs/.js for CommonJS. The browser
   build gained a real CommonJS output too — the exports map previously
   pointed the browser "require" condition at an ES module.
   The exports map now also leads with "types" and ends with a "default"
   fallback for resolvers matching neither "node" nor "browser".

2. files: ["native"] published the local build directory: a 94.6 kB
   Linux-x64 .node binary, a 148 kB object file and generated Makefiles.
   node-gyp-build checks build/Release before prebuilds, so every
   consumer on every platform would have found this machine's binary,
   skipped compiling, and failed to load it. It fails safe (native/
   index.js catches and returns null), but the addon could never work
   for anyone else. Narrowed to the four source files.

3. binding.gyp resolves node-addon-api at build time, but nothing
   declared it: it was a devDependency of the root, absent from
   native/package.json. The build only succeeded here because a dev
   install populates the root node_modules. Declared as a dependency of
   the native package, where it is actually needed.

4. No clean step, so stale output shipped — the tarball carried both
   dist/types/core/** and a dist/types/src/** tree left over from before
   rootDir was set. build now runs clean first.

5. test:browser ran `karma start` with no karma.conf.js anywhere in the
   repo, and tests/browser is an empty directory. Removed the script and
   the karma devDependency rather than leave a script that cannot run.

Verified: CommonJS require and ESM import both resolve on Node 18.19.1
and 24.18.0; TypeScript resolves types under both bundler and node16;
npm pack now produces 35 files / 103.8 kB with no build artefacts.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 12:39:09 +02:00
3e5ff0bf3c Merge pull request 'feat/ephemeral-keys' (#37) from feat/ephemeral-keys into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/37
2026-07-19 12:24:41 +02:00
eafab3d9ac
feat: align timeout, error types and docs with the Python SDK
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m43s
Completes the parity work (step 4).

Request timeout now defaults to 900 s, matching Python, instead of 60 s.
Encrypted inference cannot stream, so an entire completion arrives in one
response; a long generation on a busy backend legitimately takes minutes
and was timing out here while succeeding in the Python client.

Error types now distinguish malformed data from integrity failures.
Python raises ValueError for a bad package, a non-200 or unparseable
/pki/public_key, and plaintext that will not parse, reserving
SecurityError for crypto failures. This port wrapped nearly all of it in
SecurityError — so a server sending malformed JSON was reported as an
authentication failure, pointing debugging in exactly the wrong
direction. Malformed data is now a plain Error (the JS equivalent of
ValueError), carried past the deliberately opaque catch-all by a symbol
marker rather than a new exported class. Genuine crypto failures still
report a single vague message so they cannot serve as a decryption
oracle.

Also adds the missing guard Python has: decrypting without a private key
now says so, instead of failing later and being reported as an integrity
failure.

doc/attestation.md ports the Python attestation guide to the JS API, and
documents the two deliberate divergences: no verify_ssl escape hatch, and
jose injection instead of a runtime dynamic import.

Version 0.1.0 -> 0.3.0 to match the Python client's feature level, now
that the two are at parity.

Not ported: Python's warning when secure_memory=True but the SecureMemory
module is unavailable. There is no JS equivalent — zeroing is always
available, and the weaker case (mlock unavailable) is already reported
honestly by getProtectionInfo().

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 12:17:52 +02:00
00388ccb01
feat: lock sensitive buffers in memory; drop new Function from jose loading
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m49s
Memory protection (step 3 of the Python parity work):

NodeSecureMemory has implemented lockMemory/unlockMemory since the
native addon landed, but nothing ever called them — mlock was dead code
while getProtectionInfo() reported method: 'mlock' and canLock: true.
The library claimed a protection it was not applying.

  - SecureByteContext now locks on entry and unlocks on exit, mirroring
    Python's secure_bytearray(lock=True). Zeroing happens *before*
    unlocking, so cleartext cannot reach swap in between.
  - lockMemory/unlockMemory are part of the SecureMemory interface, so
    the browser implementation must answer for them explicitly (false).
  - Locking is best-effort throughout: a refused or throwing lock
    degrades to zeroing only, which still has value.

getProtectionInfo() now probes rather than assumes. Having the addon
loaded is not the same as being allowed to lock: mlock is routinely
refused by RLIMIT_MEMLOCK, which is small by default and 0 in some
containers. canLock reflects a real mlock attempt, and 'mlock' is only
claimed when locking genuinely works — otherwise it reports zero-only
and says why. ProtectionInfo also carries platform, hasSecureZeroing
and pageSize, closer to Python's get_protection_info().

SAST (ts.code_exec.new_function, ERROR):

JwtQuoteVerifier loaded ESM-only jose via new Function('s', 'return
import(s)'). No user input reached it, so it was not code injection —
but new Function is blocked by any CSP without 'unsafe-eval', and this
package ships a browser bundle, so the failure would land in the
attestation path. Removed in favour of injection: pass the module as
options.jose when require('jose') cannot work. The error message says
so. No eval-equivalent remains in src/.

.nyx/triage.json records the two native/src/mlock.cc cfg-resource-leak
warnings as false positives, scoped to that file rather than the rule,
so a genuine leak in future C++ still surfaces.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 11:34:18 +02:00
987acf8816
feat!: make RSA keys ephemeral by default
Some checks failed
NYX Security Scan / nyx-scan (pull_request) Failing after 5m51s
BREAKING CHANGE: keyDir now defaults to null (ephemeral) instead of
'client_keys'. Clients that relied on keys persisting across restarts
must now pass keyDir explicitly.

The Python SDK defaults to key_dir=None: a key pair is generated in
memory for the session and never written to disk. The JS port defaulted
to 'client_keys' and always persisted, so merely constructing a client
wrote an RSA private key into the working directory. That is a weaker
default than the client it ports, and one users never asked for.

  - keyDir?: string | null, defaulting to undefined. null and undefined
    both mean ephemeral, matching Python's None.
  - Persistent mode is unchanged when keyDir is set: load the existing
    pair from that directory, otherwise generate and save one there.
  - Browsers are always ephemeral; they have no filesystem.

Key rotation follows the same rule. It previously hardcoded
'client_keys' as its fallback directory, so an ephemeral client would
have started writing private keys to disk on the first rotation tick.
Rotated keys are now persisted only where keyDir or keyRotationDir is
explicitly configured.

Tests assert the intent (that saveKeys is never called) rather than
probing the filesystem, since a leftover client_keys/ from the old
default would otherwise make them pass or fail for the wrong reason.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 11:19:03 +02:00
2495f1e6e8
fix: repair npm install and the rollup build
Some checks failed
NYX Security Scan / nyx-scan (pull_request) Failing after 5m58s
Three independent breakages, all present on main before this branch:

1. `npm ci` always exited non-zero. The root package.json carried
   "install": "node-gyp-build", but binding.gyp lives in native/, so the
   script ran in a directory with nothing to build:

     gyp: binding.gyp not found (cwd: <repo root>)

   native/package.json already declares that same install script in the
   right place, alongside its binding.gyp and "gypfile": true, so the
   root copy was a duplicate in the wrong package. Removing it also
   clears the now-inaccurate hasInstallScript flag from the lockfile.
   `npm ci` exits 0 again; the addon still builds from native/.

2. `npm run build` failed at the first step. @rollup/plugin-typescript
   requires tslib as a peer, and nothing depended on it directly — it was
   only present transitively as an optional dev dep, so a clean install
   could omit it entirely. Declared explicitly.

3. rollup.config.js used ESM syntax while package.json has no
   "type": "module", so Node parsed it as CommonJS and threw
   "Cannot use import statement outside a module". Node 24 recovers by
   reparsing (with a warning); Node 18 fails outright. Renamed to
   rollup.config.mjs, which is unambiguous on both. Setting
   "type": "module" instead would have broken jest.config.js, which is
   CommonJS.

Verified on Node 18.19.1 and Node 24.18.0: npm ci exits 0, npm run build
produces all three bundles plus declarations, and 76/76 tests pass.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 11:10:36 +02:00
84eae58317
fix: restore build and tests under TypeScript 6
Some checks failed
NYX Security Scan / nyx-scan (pull_request) Failing after 5m55s
The dependency bumps on main left `npm test` and `npm run build:types`
broken independently of any feature work; both fail on a clean checkout
of origin/main.

TypeScript 6 no longer auto-includes @types packages the way node10
resolution did, so every test suite failed to compile with "Cannot find
name 'describe'/'expect'". Declare the needed @types explicitly instead:
  - tsconfig.json: types: ["node"]
  - jest.config.js: types: ["jest", "node"]

TypeScript 6 also errors on two settings this config relied on:
  - moduleResolution "node" (node10) is deprecated -> "bundler", which
    matches how the package is actually consumed (rollup-bundled, with
    "module": "ESNext")
  - an implicit rootDir is now an error when outDir/declarationDir are
    set -> rootDir: "./src"

Drop three unused imports that noUnusedLocals turns into hard errors,
failing --emitDeclarationOnly.

Finally, NodeSecureMemory logged to stdout unconditionally on
construction. This was dormant while the native addon failed to load;
once it loads, it broke the "no console.log when debug=false" test. A
library must not write to stdout uninvited, and the client already
reports this via getProtectionInfo() behind its own debug flag.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-19 10:59:28 +02:00
75867ef85a
feat: SGX attestation 2026-07-19 10:49:59 +02:00
b055df5b87 Merge pull request 'Update dependency node-gyp to v13' (#28) from renovate/node-gyp-13.x into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/28
2026-06-26 14:58:54 +02:00
opencode-agent[bot]
d3aa0e264c Node.js min bumped to 22.22.2
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m11s
Co-authored-by: alpha-nerd <alpha-nerd@users.noreply.bitfreedom.net>
2026-06-26 12:36:50 +00:00
c4419579c7 Merge pull request '.forgejo/workflows/opencode.yml aktualisiert' (#32) from alpha-nerd-patch-2 into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/32
2026-06-26 14:29:12 +02:00
20b5372295 .forgejo/workflows/opencode.yml aktualisiert
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m21s
model naming update
2026-06-26 14:28:51 +02:00
f8f655f5e7 Merge pull request 'Update dependency @types/node to v24.13.2' (#27) from renovate/node-24.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/27
2026-06-26 14:18:12 +02:00
32eb03d58e Merge pull request 'Update dependency rollup to v4.62.2' (#31) from renovate/rollup-4.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/31
2026-06-26 14:16:20 +02:00
Renovate Bot
66b7a89cf9 Update dependency rollup to v4.62.2
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m25s
2026-06-19 15:30:17 +00:00
Renovate Bot
21caa0ebab Update dependency @types/node to v24.13.2
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m24s
2026-06-13 12:28:30 +00:00
0e772bc9a6 Merge pull request 'Update dependency rollup to v4.62.0' (#30) from renovate/rollup-4.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/30
2026-06-13 13:30:41 +02:00
Renovate Bot
934e12bb36 Update dependency rollup to v4.62.0
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m27s
2026-06-13 09:28:25 +00:00
51cdff38f9 Merge pull request 'adding oc' (#29) from alpha-nerd-patch-1 into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/29
2026-06-13 09:56:29 +02:00
f3d0fcbfe5 adding oc
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m24s
2026-06-13 09:56:02 +02:00
Renovate Bot
88f189bced Update dependency node-gyp to v13
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m3s
2026-06-12 13:28:30 +00:00
84800d4a1b Merge pull request 'Update dependency node-gyp to v12.4.0' (#26) from renovate/node-gyp-12.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/26
2026-06-10 10:25:03 +02:00
88361a42bc Merge pull request 'Update dependency @types/node to v24.13.1' (#25) from renovate/node-24.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/25
2026-06-10 10:24:30 +02:00
4f12285615 Merge pull request 'Update dependency rollup to v4.61.1' (#24) from renovate/rollup-4.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/24
2026-06-10 10:24:08 +02:00
Renovate Bot
4ebf9d9cce Update dependency node-gyp to v12.4.0
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 5m44s
2026-06-10 00:28:42 +00:00
Renovate Bot
ceaf0ac151 Update dependency @types/node to v24.13.1
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m43s
2026-06-05 22:43:41 +00:00
Renovate Bot
f9b692bc8b Update dependency rollup to v4.61.1
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m50s
2026-06-04 05:28:58 +00:00
0610e9f881 Merge pull request 'Update dependency rollup to v4.61.0' (#23) from renovate/rollup-4.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/23
2026-06-02 22:14:08 +02:00
Renovate Bot
58100da0c1 Update dependency rollup to v4.61.0
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m32s
2026-06-01 05:48:52 +00:00
8083fac1a1 Merge pull request 'Update dependency @rollup/plugin-commonjs to v29.0.3' (#22) from renovate/rollup-plugin-commonjs-29.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/22
2026-05-29 16:26:42 +02:00
Renovate Bot
14077b39bd Update dependency @rollup/plugin-commonjs to v29.0.3
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m45s
2026-05-29 13:55:53 +00:00
4573fd03f2 Merge pull request 'Update dependency node-addon-api to v8.8.0' (#21) from renovate/node-addon-api-8.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/21
2026-05-23 12:22:26 +02:00
Renovate Bot
3646d17b8c Update dependency node-addon-api to v8.8.0
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m34s
2026-05-22 14:30:06 +00:00
a576e31be9 Merge pull request 'Update dependency ts-jest to v29.4.10' (#20) from renovate/ts-jest-29.x-lockfile into main 2026-05-21 20:15:29 +02:00
Renovate Bot
25e14d6fff Update dependency ts-jest to v29.4.11
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m38s
2026-05-21 13:56:16 +00:00
47fb60888d Merge pull request 'Update dependency rollup to v4.60.4' (#19) from renovate/rollup-4.x-lockfile into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/19
2026-05-14 22:16:20 +02:00
Renovate Bot
e347f641f5 Update dependency rollup to v4.60.4
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m43s
2026-05-14 18:00:49 +00:00
1e632eca11 Merge pull request 'chore(deps): update dependency @types/node to v24.12.4' (#17) from renovate/node-24.x-lockfile into main 2026-05-13 10:12:46 +02:00
9d180537ad Merge pull request '.forgejo/workflows/nyxscanner.yml hinzugefügt' (#18) from nyx into main
Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-js/pulls/18
2026-05-13 10:12:40 +02:00
aebbe832c2 .forgejo/workflows/nyxscanner.yml aktualisiert
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 7m0s
2026-05-13 10:05:06 +02:00
af05a4772e .forgejo/workflows/nyxscanner.yml aktualisiert
Some checks failed
NYX Security Scan / nyx-scan (pull_request) Failing after 6m49s
test LOW for PR comments to work or not
2026-05-13 09:44:49 +02:00
6e2cab6143 .forgejo/workflows/nyxscanner.yml aktualisiert
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m38s
2026-05-13 09:35:40 +02:00
efd30207e2 .forgejo/workflows/nyxscanner.yml aktualisiert
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m44s
2026-05-13 08:36:18 +02:00
e04386f838 .forgejo/workflows/nyxscanner.yml aktualisiert
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m38s
2026-05-13 08:25:21 +02:00
8af8b079eb .forgejo/workflows/nyxscanner.yml aktualisiert
Some checks failed
NYX Security Scan / nyx-scan (pull_request) Failing after 1s
NYX Security Scan / permissions (pull_request) Has been cancelled
2026-05-13 08:23:41 +02:00
ea417b54f1 .forgejo/workflows/nyxscanner.yml aktualisiert
All checks were successful
NYX Security Scan / nyx-scan (pull_request) Successful in 6m14s
2026-05-13 08:10:27 +02:00
7db4e8220f .forgejo/workflows/nyxscanner.yml aktualisiert
Some checks failed
NYX Security Scan / nyx-scan (pull_request) Failing after 6m34s
2026-05-13 07:58:15 +02:00