@saptools/cf-hana 0.3.1 → 0.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.2 - 2026-07-01
4
+
5
+ - Remove the `cf-hana: saved result expires at...` stderr notice from `query --save` output while keeping result refs available for inspection.
6
+
3
7
  ## 0.3.1 - 2026-07-01
4
8
 
5
9
  - Add actionable HANA LOB `ORDER BY`/`GROUP BY` hints that recommend removing LOB columns or wrapping them with `TO_VARCHAR(<column>)`.
package/dist/cli.js CHANGED
@@ -698,7 +698,7 @@ async function listColumns(connection, schema, table) {
698
698
 
699
699
  // src/config.ts
700
700
  var CLI_NAME = "cf-hana";
701
- var CLI_VERSION = "0.3.1";
701
+ var CLI_VERSION = "0.3.2";
702
702
  var ENV_PREFIX = "CF_HANA";
703
703
  var DEFAULT_QUERY_TIMEOUT_MS = 3e4;
704
704
  var DEFAULT_CONNECT_TIMEOUT_MS = 3e4;
@@ -3720,8 +3720,6 @@ async function runQuery(selector, sql, command) {
3720
3720
  ...opts.resultTtlMinutes === void 0 ? {} : { ttlMinutes: opts.resultTtlMinutes }
3721
3721
  });
3722
3722
  print2(`ref=${session.ref}`);
3723
- process.stderr.write(`${CLI_NAME}: saved result expires at ${session.expiresAt}
3724
- `);
3725
3723
  }
3726
3724
  print2(compact.text);
3727
3725
  if (result.truncated) {