Skip to content

chore: bump @simular-ai/simulang-js from 6.0.0 to 10.0.0#14

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/simular-ai/simulang-js-10.0.0
Closed

chore: bump @simular-ai/simulang-js from 6.0.0 to 10.0.0#14
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/simular-ai/simulang-js-10.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown

Bumps @simular-ai/simulang-js from 6.0.0 to 10.0.0.

Changelog

Sourced from @​simular-ai/simulang-js's changelog.

Changelog

All notable changes to @simular-ai/simulang-js are documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[8.1.0] - 2026-06-23

Added

  • AccessibilityNode.parent(), ancestors(), direct/strict ancestry checks, and lowestCommonAncestor(other) for navigating accessibility-tree relationships. parent() returns null when a node has no parent, ancestors() stops only when the parent chain is fully resolved, and both throw on lookup failure; lowestCommonAncestor returns a [node, level] tuple where level is from the reached parentless node, returns null only for resolved unrelated trees, and throws if either parent chain cannot be resolved.
  • Window.screenshot(hideCursor) — captures just this window's pixels from its own backing store (macOS ScreenCaptureKit window filter / Windows Windows.Graphics.Capture), so occluding windows don't bleed through and hardware-accelerated content (Chrome, Electron, D3D apps) is captured correctly; off-display or minimized windows throw.
  • Window.ground(model, concept) — locate a concept within this window and return its global desktop coordinates (sugar for screenshot(true).ground(model, concept)); restricting the search to the window's bounds is faster and more accurate than grounding a full-screen screenshot.
  • AccessibilityNode.url — the node's raw hyperlink target as a string, or null when the node isn't a link, has no target, or the platform doesn't expose it.
  • Image.drawDot(x, y, radius, red, green, blue) and Screenshot.drawDot(...) — paint a filled opaque RGB disc at an image-pixel coordinate (companion to drawGrid; radius 0 paints a single pixel, out-of-bounds points are no-ops). Handy for annotating grounding results.

Changed

  • Frame-relative input on a Window (moveMouse, click) now throws when the target point maps off every connected display, instead of letting the OS silently clamp the cursor to a screen edge and click the wrong location.

[8.0.0] - 2026-06-05

Added

  • AccessibilityNode.fromPoint(x, y) — element under a screen coordinate via the platform hit-test (UIA ElementFromPoint on Windows, AXUIElementCopyElementAtPosition on macOS, recursive AT-SPI GetAccessibleAtPoint on Linux). Coordinates are global desktop coordinates in OS-native units (physical pixels on Windows/Linux, logical points on macOS), the same space as boundingBox() and MouseController; returns an uncached, one-shot handle for reading properties such as .boundingBox() / .overallDescription, or null when the point has no accessible element (empty desktop, gaps, or — on Linux — outside the focused app). Throws only on a genuine backend failure.
  • AccessibilityTree.findByDescription(description) — every node whose overallDescription exactly equals description (pre-order depth-first)
  • GroundingModel.checkAuth(), AskModel.checkAuth(), and SttModel.checkAuth() — probe the provider's auth-check endpoint to validate credentials before launching any UI automation. Throws (and logs a warning) on rejection or transport failure; no-op for providers without an auth-check endpoint. Idiom: try { model.checkAuth() } catch { process.exit(1) }.

Changed

  • GroundingModel.default() / AskModel.default() / SttModel.default() now produce a per-candidate diagnostic when no provider has working credentials, naming each provider and explaining exactly why its credentials were unavailable (env var unset, env var empty, credentials file missing, …). The previous error misleadingly said "no provider advertises a VLM service" even when the provider was correctly configured but its API-key env var was unset.
  • Corrected the documented coordinate space across the API (MouseController, Window.boundingBox(), AccessibilityNode.boundingBox() / fromPoint(), Screen.boundingBox(), screenshots, and grounding output). Coordinates are in OS-native units — physical pixels on Windows/Linux and logical points on macOS (where one point spans two hardware pixels on a 2× display) — not uniformly "physical pixels" as previously stated. Behavior is unchanged; coordinates still round-trip between these APIs without conversion on a given OS.

Breaking

  • Image.addGrid() and Screenshot.addGrid() are renamed to drawGrid() to match the underlying simulang-rs API. Same signature and behavior; update call sites from .addGrid(w, h) to .drawGrid(w, h).
  • Screenshot.toGlobalPhysicalPixels() is renamed to Screenshot.toGlobalDesktopCoordinates(). The old name implied physical pixels, but the result is in the canonical global-desktop space (OS-native units — logical points on macOS, physical pixels on Windows/Linux). Same signature and behavior; update call sites from .toGlobalPhysicalPixels(...) to .toGlobalDesktopCoordinates(...).

[7.0.1] - 2026-05-22

[7.0.0] - 2026-05-22

Added

  • Instance.windows() — enumerate visible top-level windows belonging to a specific opened application (companion to the global Window.all() / Window.allForPid() enumerators).
  • Window.boundingBox() — live bounding box of a window in global physical pixels (right / bottom exclusive, Playwright / DOM convention).
  • Screen.boundingBox() — live bounding box of a screen in global physical pixels (matches Window.boundingBox() shape; secondary monitors may report negative left / top).

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​simular-ai/simulang-js since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@simular-ai/simulang-js](https://github.com/simular-ai/simulang-js) from 6.0.0 to 10.0.0.
- [Changelog](https://github.com/simular-ai/simulang-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/simular-ai/simulang-js/commits)

---
updated-dependencies:
- dependency-name: "@simular-ai/simulang-js"
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown
Author

Superseded by #15.

@dependabot dependabot Bot closed this Jul 16, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/simular-ai/simulang-js-10.0.0 branch July 16, 2026 03:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants