Conversation
Bumps the dev-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.3.5` | `25.4.0` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.56.1` | `8.57.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.57.0` | | [eslint](https://github.com/eslint/eslint) | `9.39.3` | `10.0.3` | | [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.26` | `0.5.2` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.56.1` | `8.57.0` | Updates `@types/node` from 25.3.5 to 25.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 8.56.1 to 8.57.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.56.1 to 8.57.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.0/packages/parser) Updates `eslint` from 9.39.3 to 10.0.3 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v9.39.3...v10.0.3) Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.2 - [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases) - [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md) - [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.26...v0.5.2) Updates `typescript-eslint` from 8.56.1 to 8.57.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 25.4.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.57.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-version: 8.57.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: eslint dependency-version: 10.0.3 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: eslint-plugin-react-refresh dependency-version: 0.5.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: typescript-eslint dependency-version: 8.57.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
tejaskash
approved these changes
Mar 11, 2026
aidandaly24
added a commit
to aidandaly24/agentcore-cli
that referenced
this pull request
Mar 11, 2026
Dependabot PR aws#538 bumped eslint to 10.0.3, but eslint-plugin-react 7.37.5 (latest) doesn't support ESLint 10 yet, breaking lint-staged.
15 tasks
aidandaly24
added a commit
to aidandaly24/agentcore-cli
that referenced
this pull request
Mar 11, 2026
Dependabot PR aws#538 bumped eslint to 10.0.3, but eslint-plugin-react 7.37.5 (latest) doesn't support ESLint 10 yet, breaking lint-staged.
aidandaly24
added a commit
to aidandaly24/agentcore-cli
that referenced
this pull request
Mar 11, 2026
Dependabot PR aws#538 bumped eslint to 10.0.3, but eslint-plugin-react 7.37.5 (latest) doesn't support ESLint 10 yet, breaking lint-staged.
tejaskash
pushed a commit
that referenced
this pull request
Mar 12, 2026
…arch (#540) * feat: add gateway observability schema with enabled and exceptionLevel fields * feat: add observability and exception level to gateway wizard advanced config Extends the gateway creation TUI with observability toggle (default: ON) and debug exception level toggle (default: OFF) in the Advanced Configurations multi-select screen, following the existing semantic search pattern. * feat: add --no-observability and --exception-level CLI flags for gateway creation Wires observability config through the full CLI path: Commander flags → action handler → buildGatewayConfig() → gateway object in mcp.json. Uses the same --no-X boolean negation pattern as --no-semantic-search. * test: add unit tests for gateway observability wiring (Tasks 2+3) 7 tests for GatewayPrimitive.add() observability behavior (defaults, noObservability, exceptionLevel, invalid fallback). 7 tests for useAddGatewayWizard defaults and setAdvancedConfig with observability fields. * fix: reject invalid --exception-level values in gateway CLI validation Adds Zod-based validation for exceptionLevel in validateAddGatewayOptions(), matching the existing pattern for framework/authorizer validation. Invalid values like VERBOSE now fail with a clear error instead of silently falling back to NONE. * feat: extend post-deploy Transaction Search to gateway observability Widens the Transaction Search trigger from "agents exist" to "agents exist OR any gateway has observability enabled". Both CLI and TUI deploy paths now check gateway observability config from mcp.json. Adds 3 tests. * fix: update GatewayPrimitive tests for enableObservability convention Align test cases with the positive enableObservability naming convention adopted during rebase (matching enableSemanticSearch). * fix(deps): pin eslint to ^9.39.3 for eslint-plugin-react compatibility Dependabot PR #538 bumped eslint to 10.0.3, but eslint-plugin-react 7.37.5 (latest) doesn't support ESLint 10 yet, breaking lint-staged. * refactor: remove observability toggle and flatten exceptionLevel on gateway schema Transaction Search is now automatic for gateways (matching agent behavior), so the observability.enabled toggle is removed. exceptionLevel is promoted from the nested observability wrapper to a direct gateway field. * fix: revert cosmetic diff noise and regenerate package-lock.json Reverts unrelated Unicode/emoji formatting changes that inflated the diff, and regenerates package-lock.json properly for the eslint 9.x pin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the dev-dependencies group with 6 updates:
25.3.525.4.08.56.18.57.08.56.18.57.09.39.310.0.30.4.260.5.28.56.18.57.0Updates
@types/nodefrom 25.3.5 to 25.4.0Commits
Updates
@typescript-eslint/eslint-pluginfrom 8.56.1 to 8.57.0Release notes
Sourced from
@typescript-eslint/eslint-plugin's releases.Changelog
Sourced from
@typescript-eslint/eslint-plugin's changelog.Commits
2c6aeeechore(release): publish 8.57.046bf066docs(eslint-plugin): document no-unnecessary-condition limitation with object...f696dadchore: use pnpm catalog (#12047)2029c78fix(eslint-plugin): [no-base-to-string] fix false positive for toString with ...0f4f101fix(eslint-plugin): [prefer-promise-reject-errors] add allow `TypeOrValueSpec...53f473bfix(typescript-estree): if the template literal is tagged and the text has an...2291b81docs: minor grammar adjustment (#12112)fc5cd09fix(eslint-plugin): guard against negative paramIndex in no-useless-default-a...adc2aadfix(eslint-plugin): handle statically analyzable computed keys in prefer-read...85badfffix(eslint-plugin): [strict-void-return] false positives with overloads (#12055)Updates
@typescript-eslint/parserfrom 8.56.1 to 8.57.0Release notes
Sourced from
@typescript-eslint/parser's releases.Changelog
Sourced from
@typescript-eslint/parser's changelog.Commits
2c6aeeechore(release): publish 8.57.0f696dadchore: use pnpm catalog (#12047)a09921echore: update vitest to 4.x (#12071)Updates
eslintfrom 9.39.3 to 10.0.3Release notes
Sourced from eslint's releases.
... (truncated)
Commits
bfce7ea10.0.3d44ced8Build: changelog update for 10.0.3e511b58fix: update eslint (#20595)ef8fb92chore: package.json update for eslint-config-eslint releasee8f2104chore: updates for v9.39.4 release5cd1604refactor: simplify isCombiningCharacter helper (#20524)9fc31b0docs: Update README70ff1d0chore: eslint-config-eslint require Node^20.19.0 || ^22.13.0 || >=24(#20586)f4c9cf9fix: include variable name inno-useless-assignmentmessage (#20581)4efaa36docs: add info box foreslint-plugin-eslint-comments(#20570)Updates
eslint-plugin-react-refreshfrom 0.4.26 to 0.5.2Release notes
Sourced from eslint-plugin-react-refresh's releases.
... (truncated)
Changelog
Sourced from eslint-plugin-react-refresh's changelog.
... (truncated)
Commits
c0317bfFix support for nested function calls for extraHOCs [publish]42a1805Explicit v10 support (fixes #106) [publish]199793eSupport nested function calls for extraHOCs (fixes #104)26b3c15Support false positives with TypeScript function overloading (fixes #105)daa2efbRevamp logic to catch more cases [publish] (#97)Updates
typescript-eslintfrom 8.56.1 to 8.57.0Release notes
Sourced from typescript-eslint's releases.
Changelog
Sourced from typescript-eslint's changelog.
Commits
2c6aeeechore(release): publish 8.57.0f696dadchore: use pnpm catalog (#12047)a09921echore: update vitest to 4.x (#12071)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions