labgate 0.5.1 → 0.5.3

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.
@@ -704,7 +704,7 @@ function printSessionInfo(session, sessionId, runtime) {
704
704
  ['Timeout', timeoutLabel],
705
705
  ['Blocked', `${session.config.filesystem.blocked_patterns.length} patterns`],
706
706
  ...(session.config.audit.enabled ? [['Audit', (0, config_js_1.getLogDir)(session.config)]] : []),
707
- ['Settings', 'http://127.0.0.1:7700'],
707
+ ['Settings', 'http://localhost:7700'],
708
708
  ]);
709
709
  console.error('');
710
710
  if ((0, runtime_js_1.isApptainerFamily)(runtime) && mode !== 'host') {
package/dist/lib/ui.js CHANGED
@@ -252,7 +252,7 @@ function startUI(port, standalone = true) {
252
252
  });
253
253
  server.listen(port, '127.0.0.1', () => {
254
254
  const actualPort = server.address()?.port ?? port;
255
- log.step(`Settings: http://127.0.0.1:${actualPort}`);
255
+ log.step(`Settings: http://localhost:${actualPort}`);
256
256
  if (standalone) {
257
257
  log.step('Press Ctrl+C to stop');
258
258
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "labgate",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "Policy-controlled sandboxes for LLM coding agents on HPC",
5
5
  "bin": {
6
6
  "labgate": "bin/labgate.js"