• Joined on 2026-08-13
hermes commented on pull request dc/dc#294 2026-08-14 11:22:15 +00:00
Version 7.13 Release

Test Coverage Report

Coverage measured via npx @sasjs/cli c -t server-ci against the server-ci target.

hermes commented on pull request dc/dc#294 2026-08-14 10:30:19 +00:00
Version 7.13 Release

Test Coverage Report

Coverage measured via npx @sasjs/cli c -t server-ci against the server-ci target.

hermes commented on pull request dc/dc#294 2026-08-14 10:28:42 +00:00
Version 7.13 Release

Hermes Agent Code Review

hermes commented on pull request dc/dc#294 2026-08-14 10:28:42 +00:00
Version 7.13 Release

The error message exposes the internal table_id value to the end user via mp_abort. Consider whether a more generic message (e.g. "staged table could not be located") is preferable for end-user UX, or if exposing table_id is intentional for support/debugging purposes. Stylistic choice, not a defect.

hermes commented on pull request dc/dc#304 2026-08-14 10:27:44 +00:00
fix(core): bump to v5 (breaking change)

Hermes Agent Code Review

hermes commented on pull request dc/dc#304 2026-08-14 10:27:44 +00:00
fix(core): bump to v5 (breaking change)

Hardcoded DCTEST libref couples the test to a specific library that must exist in the server-ci environment. If that library is renamed, the test fails for an environmental reason rather than a code regression. Consider deriving the libref from a macro variable if one is available in the test harness.

hermes commented on pull request dc/dc#304 2026-08-14 10:27:44 +00:00
fix(core): bump to v5 (breaking change)

The test asserts the DDL contains CREATE TABLE / INSERT INTO but does not verify the DDL is well-formed or targets the correct schema. For a breaking-change bump of @sasjs/core (where mp_getddl was renamed to mp_ds2ddl), a regression returning truncated/malformed DDL would still pass as long as the keyword appears anywhere. Consider asserting against a known table name (e.g. &dc_libref..MPE_TABLES) to make the test more robust against partial output.

hermes commented on pull request dc/dc#304 2026-08-14 10:26:09 +00:00
fix(core): bump to v5 (breaking change)

Test Coverage Report

Coverage measured via npx @sasjs/cli c -t server-ci against the server-ci target.

hermes commented on pull request dc/dc#304 2026-08-14 08:19:07 +00:00
fix(core): bump to v5 (breaking change)

Test Coverage Report

Coverage measured via npx @sasjs/cli c -t server-ci (static dependency coverage — which test files reference which source files) from the sas/sasjs/ directory on PR…

hermes commented on pull request dc/dc#304 2026-08-14 08:18:48 +00:00
fix(core): bump to v5 (breaking change)

Hermes Agent Code Review

hermes commented on pull request dc/dc#304 2026-08-14 08:18:48 +00:00
fix(core): bump to v5 (breaking change)

Pre-existing TODO carried forward: REMOVE THAT LAST MACRO refers to the @li mp_execute.sas entry on line 13, which lists a macro that is not called anywhere in this file (only mp_init, mpeinit2, dc_getsettings are invoked). Consider removing both the @li mp_execute.sas line and this stray comment to close out the TODO.

hermes commented on pull request dc/dc#304 2026-08-14 08:18:48 +00:00
fix(core): bump to v5 (breaking change)

Same as exportdb: showlog=NO is newly added vs the old mp_getddl(..., applydttm=YES) call, so the public DDL-download service no longer writes DDL to the log. Intentional and fine; just flagging it's more than a mechanical rename. Positional args (&libref,&ds) and keyword args (fref=tmp, applydttm=YES) all map correctly onto mp_ds2ddl's signature.

hermes commented on pull request dc/dc#304 2026-08-14 08:18:48 +00:00
fix(core): bump to v5 (breaking change)

Behavior change: showlog=NO is new here (the old mp_getddl call did not pass it, so DDL was echoed to the log by default). This is a reasonable improvement — the admin export should not dump generated DDL into the SAS log — but it is a semantic change beyond a pure rename. Worth noting in the PR description if not already. The call signature otherwise matches mp_ds2ddl(libref, ds, fref=, flavour=, showlog=, schema=, applydttm=) correctly (library-level mode, ds intentionally omitted).

hermes commented on pull request dc/dc#294 2026-08-14 00:09:28 +00:00
Version 7.13 Release

W1 — quoteLiteral does not escape embedded double quotes

hermes commented on pull request dc/dc#294 2026-08-14 00:09:19 +00:00
Version 7.13 Release

W4 — addRow() with empty dataSource

hermes commented on pull request dc/dc#294 2026-08-14 00:09:19 +00:00
Version 7.13 Release

W3 — Missing mp_abort between dc_assignlib and mp_getcols

hermes commented on pull request dc/dc#294 2026-08-14 00:09:19 +00:00
Version 7.13 Release

W2 — Number(rawValueText) can produce NaN

hermes commented on pull request dc/dc#294 2026-08-14 00:09:18 +00:00
Version 7.13 Release

W1 — quoteLiteral does not escape embedded double quotes

hermes commented on pull request dc/dc#294 2026-08-14 00:08:47 +00:00
Version 7.13 Release

Hermes Agent Code Review

hermes commented on pull request dc/dc#294 2026-08-14 00:08:47 +00:00
Version 7.13 Release

W3 — Missing mp_abort between dc_assignlib and mp_getcols