chore(deps): bump the console-production group in /console with 6 updates - #10
Merged
DavidHLP merged 1 commit intoApr 18, 2026
Conversation
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
DavidHLP
force-pushed
the
dependabot/npm_and_yarn/console/console-production-30ab5bf3ff
branch
from
April 18, 2026 06:29
81734c8 to
89d89bc
Compare
Bumps the console-production group in /console with 6 updates: | Package | From | To | | --- | --- | --- | | [@internationalized/date](https://github.com/adobe/react-spectrum) | `3.12.0` | `3.12.1` | | [@tanstack/vue-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/vue-virtual) | `3.13.23` | `3.13.24` | | [axios](https://github.com/axios/axios) | `1.14.0` | `1.15.0` | | [dompurify](https://github.com/cure53/DOMPurify) | `3.3.3` | `3.4.0` | | [monaco-editor](https://github.com/microsoft/monaco-editor) | `0.52.2` | `0.55.1` | | [reka-ui](https://github.com/unovue/reka-ui) | `2.9.5` | `2.9.6` | Updates `@internationalized/date` from 3.12.0 to 3.12.1 - [Release notes](https://github.com/adobe/react-spectrum/releases) - [Commits](https://github.com/adobe/react-spectrum/compare/@internationalized/date@3.12.0...@internationalized/date@3.12.1) Updates `@tanstack/vue-virtual` from 3.13.23 to 3.13.24 - [Release notes](https://github.com/TanStack/virtual/releases) - [Changelog](https://github.com/TanStack/virtual/blob/main/packages/vue-virtual/CHANGELOG.md) - [Commits](https://github.com/TanStack/virtual/commits/@tanstack/vue-virtual@3.13.24/packages/vue-virtual) Updates `axios` from 1.14.0 to 1.15.0 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v1.14.0...v1.15.0) Updates `dompurify` from 3.3.3 to 3.4.0 - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](cure53/DOMPurify@3.3.3...3.4.0) Updates `monaco-editor` from 0.52.2 to 0.55.1 - [Release notes](https://github.com/microsoft/monaco-editor/releases) - [Changelog](https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md) - [Commits](microsoft/monaco-editor@v0.52.2...v0.55.1) Updates `reka-ui` from 2.9.5 to 2.9.6 - [Release notes](https://github.com/unovue/reka-ui/releases) - [Commits](unovue/reka-ui@v2.9.5...v2.9.6) --- updated-dependencies: - dependency-name: "@internationalized/date" dependency-version: 3.12.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: "@tanstack/vue-virtual" dependency-version: 3.13.24 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: axios dependency-version: 1.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: dompurify dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: monaco-editor dependency-version: 0.55.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: reka-ui dependency-version: 2.9.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production ... Signed-off-by: dependabot[bot] <support@github.com>
DavidHLP
force-pushed
the
dependabot/npm_and_yarn/console/console-production-30ab5bf3ff
branch
from
April 18, 2026 06:54
89d89bc to
f538b2c
Compare
dependabot
Bot
deleted the
dependabot/npm_and_yarn/console/console-production-30ab5bf3ff
branch
April 18, 2026 06:56
DavidHLP
pushed a commit
that referenced
this pull request
Jun 14, 2026
Phase 1 frontend (task #10) foundational work: - i18n testCases.ts modules (zh-CN + en-US) with tabs/scope/count/section/ validation/confirm/toast/view sections - Register testCases in both locale index.ts - CaseScope type ('SAMPLE' | 'HIDDEN') mirroring backend - mapFlagsToCaseScope / mapCaseScopeToFlags utility — round-trip idempotent, legacy null pairs treated as SAMPLE per ADR-001 projection rules
DavidHLP
pushed a commit
that referenced
this pull request
Jun 14, 2026
Phase 1 frontend (task #10) TestCaseForm refactor: - Replace (is_sample, is_hidden) Switch pair with canonical CaseScope radio (SAMPLE / HIDDEN). Always emits both flags explicitly on set, guaranteeing backend XOR filter satisfaction - mapFlagsToCaseScope: legacy null pairs treated as SAMPLE (ADR-001 projection rule) - mapCaseScopeToFlags: always emits both booleans - 13 new unit tests across 2 specs: - src/api/admin/__tests__/test-cases.spec.ts: pure-function mapping (HIDDEN priority, SAMPLE default, round-trip idempotency, XOR holds) - src/components/problem/components/__tests__/TestCaseForm.spec.ts: radio UI emits correct formData; never half-defined state - Baseline: 40 test files / 269 tests pass
DavidHLP
pushed a commit
that referenced
this pull request
Jun 14, 2026
Phase 1 frontend (task #10): - Wrap CasesForm + HiddenTestCasesEditor in shadcn-vue Tabs - Tab 1 'samples' = existing CasesForm (problem.examples API, backward compat) - Tab 2 'hidden' = existing HiddenTestCasesEditor (self-contained, /admin/ problems/{id}/test-cases) - Tab labels driven by i18n testCases.tabs.samples / .hidden - Default to 'samples' tab; user can switch - 40 test files / 269 tests pass; vue-tsc clean
DavidHLP
pushed a commit
that referenced
this pull request
Jun 14, 2026
Phase 1 frontend (task #10) View mode: - New HiddenCasesView.vue: read-only admin view of hidden judge cases, fetched via GET /admin/problems/{id}/test-cases?is_hidden=true - Mounted in ViewCasesView and CasesTab below CasesDisplay (samples first, then hidden collapsed card with count + lock icon) - ADR-001 visibility contract documented in JSDoc: this component is admin-only and MUST NOT be imported in console/. The console side receives only SubmissionVO.tests (no HIDDEN rows) via backend SubmissionServiceImpl.toVO() projection. - Type-check clean; 40 test files / 269 tests pass; i18n keys validate
DavidHLP
pushed a commit
that referenced
this pull request
Jun 14, 2026
Phase 1 frontend (task #10) test coverage: management (admin): - HiddenTestCasesEditor.spec.ts (3 tests): - GET /admin/problems/{id}/test-cases called on mount with limit 1000 - Refetches when problemId prop changes - Sample/hidden count from API response (XOR filter on client) console (user-facing): - SubmissionTestResults.spec.ts (4 tests, ADR-001 invariant): - SubmissionRecord has no isHidden / is_hidden / caseScope fields - SubmissionTestRecord has no per-test hidden case data - Only SubmissionRecord (top-level) carries first-failed detail fields - SubmissionTestResults.vue source file is free of 'isHidden' / 'caseScope' / 'is_hidden' / 'case_scope' identifiers (static source check) The console spec is the structural witness of the ADR-001 visibility contract: backend SubmissionServiceImpl.toVO() strips HIDDEN rows via CaseScope.isUserVisible(scope), and the frontend type is a structural witness of that contract. If this test ever fails, the visibility contract has been broken — review P0-1 backend projection, do not relax the type. Note: project has no Playwright infrastructure yet. This Vitest-based integration coverage is the practical substitute; a follow-up Playwright E2E suite (admin edit flow + console submission detail walkthrough) is recorded as future work in the worktree MEMORY. Stats: - management: 41 test files / 272 tests (was 40 / 269, +1 file / +3 tests) - console: 34 test files / 303 tests (was 33 / 299, +1 file / +4 tests) - vue-tsc clean on both apps
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
…#10) Replace the /home/davidhlp/... absolute path with import.meta.url relative resolution so the static-scan test works in CI and on any clone path, and reads the worktree copy instead of the main-repo path. Reviewer pre-push blocker (msg 9d908982).
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
Phase 1 frontend hidden test cases UI: Tabs (samples/hidden) + RadioGroup scope (SAMPLE/HIDDEN) + CaseScope utility + admin-only HiddenCasesView + ADR-001 console 0-leak invariant. P9 pre-reviewed (3 security points); reviewer path-blocker fixed (import.meta.url). Pre-push: management 272 + console 303 green, vue-tsc clean, i18n validated.
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
… follow-up) Replace the runtime object-literal assertion (theatre test) with compile-time keyof conditional witnesses — adding a hidden-case field (isHidden / is_hidden / caseScope / case_scope / input / output / expectedOutput) to SubmissionRecord / SubmissionTestRecord now fails to COMPILE, which is the real protection. Backend HiddenCaseLeakIT (asserts real Jackson JSON) remains source-of-truth. Also fix the spec comment: the import.meta.url resolution is path-agnostic (any clone / CI), not worktree-specific. Reviewer P1-2 + P2 follow-up (msg ffa1832a).
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
…e-level invariant + path comment Post-push follow-up: compile-time keyof conditional witnesses replace the theatre object-literal assertion (adding a hidden-case field to SubmissionRecord/SubmissionTestRecord now fails to compile); spec comment clarified to path-agnostic. reviewer P1-2 + P2 (msg ffa1832a).
DavidHLP
pushed a commit
that referenced
this pull request
Jul 3, 2026
Bumps the console-production group in /console with 6 updates: | Package | From | To | | --- | --- | --- | | [@internationalized/date](https://github.com/adobe/react-spectrum) | `3.12.0` | `3.12.1` | | [@tanstack/vue-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/vue-virtual) | `3.13.23` | `3.13.24` | | [axios](https://github.com/axios/axios) | `1.14.0` | `1.15.0` | | [dompurify](https://github.com/cure53/DOMPurify) | `3.3.3` | `3.4.0` | | [monaco-editor](https://github.com/microsoft/monaco-editor) | `0.52.2` | `0.55.1` | | [reka-ui](https://github.com/unovue/reka-ui) | `2.9.5` | `2.9.6` | Updates `@internationalized/date` from 3.12.0 to 3.12.1 - [Release notes](https://github.com/adobe/react-spectrum/releases) - [Commits](https://github.com/adobe/react-spectrum/compare/@internationalized/date@3.12.0...@internationalized/date@3.12.1) Updates `@tanstack/vue-virtual` from 3.13.23 to 3.13.24 - [Release notes](https://github.com/TanStack/virtual/releases) - [Changelog](https://github.com/TanStack/virtual/blob/main/packages/vue-virtual/CHANGELOG.md) - [Commits](https://github.com/TanStack/virtual/commits/@tanstack/vue-virtual@3.13.24/packages/vue-virtual) Updates `axios` from 1.14.0 to 1.15.0 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v1.14.0...v1.15.0) Updates `dompurify` from 3.3.3 to 3.4.0 - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](cure53/DOMPurify@3.3.3...3.4.0) Updates `monaco-editor` from 0.52.2 to 0.55.1 - [Release notes](https://github.com/microsoft/monaco-editor/releases) - [Changelog](https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md) - [Commits](microsoft/monaco-editor@v0.52.2...v0.55.1) Updates `reka-ui` from 2.9.5 to 2.9.6 - [Release notes](https://github.com/unovue/reka-ui/releases) - [Commits](unovue/reka-ui@v2.9.5...v2.9.6) --- updated-dependencies: - dependency-name: "@internationalized/date" dependency-version: 3.12.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: "@tanstack/vue-virtual" dependency-version: 3.13.24 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: axios dependency-version: 1.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: dompurify dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: monaco-editor dependency-version: 0.55.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: reka-ui dependency-version: 2.9.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
DavidHLP
pushed a commit
that referenced
this pull request
Jul 3, 2026
Phase 1 frontend (task #10) foundational work: - i18n testCases.ts modules (zh-CN + en-US) with tabs/scope/count/section/ validation/confirm/toast/view sections - Register testCases in both locale index.ts - CaseScope type ('SAMPLE' | 'HIDDEN') mirroring backend - mapFlagsToCaseScope / mapCaseScopeToFlags utility — round-trip idempotent, legacy null pairs treated as SAMPLE per ADR-001 projection rules
DavidHLP
pushed a commit
that referenced
this pull request
Jul 3, 2026
Phase 1 frontend (task #10) TestCaseForm refactor: - Replace (is_sample, is_hidden) Switch pair with canonical CaseScope radio (SAMPLE / HIDDEN). Always emits both flags explicitly on set, guaranteeing backend XOR filter satisfaction - mapFlagsToCaseScope: legacy null pairs treated as SAMPLE (ADR-001 projection rule) - mapCaseScopeToFlags: always emits both booleans - 13 new unit tests across 2 specs: - src/api/admin/__tests__/test-cases.spec.ts: pure-function mapping (HIDDEN priority, SAMPLE default, round-trip idempotency, XOR holds) - src/components/problem/components/__tests__/TestCaseForm.spec.ts: radio UI emits correct formData; never half-defined state - Baseline: 40 test files / 269 tests pass
DavidHLP
pushed a commit
that referenced
this pull request
Jul 3, 2026
Phase 1 frontend (task #10): - Wrap CasesForm + HiddenTestCasesEditor in shadcn-vue Tabs - Tab 1 'samples' = existing CasesForm (problem.examples API, backward compat) - Tab 2 'hidden' = existing HiddenTestCasesEditor (self-contained, /admin/ problems/{id}/test-cases) - Tab labels driven by i18n testCases.tabs.samples / .hidden - Default to 'samples' tab; user can switch - 40 test files / 269 tests pass; vue-tsc clean
DavidHLP
pushed a commit
that referenced
this pull request
Jul 3, 2026
Phase 1 frontend (task #10) View mode: - New HiddenCasesView.vue: read-only admin view of hidden judge cases, fetched via GET /admin/problems/{id}/test-cases?is_hidden=true - Mounted in ViewCasesView and CasesTab below CasesDisplay (samples first, then hidden collapsed card with count + lock icon) - ADR-001 visibility contract documented in JSDoc: this component is admin-only and MUST NOT be imported in console/. The console side receives only SubmissionVO.tests (no HIDDEN rows) via backend SubmissionServiceImpl.toVO() projection. - Type-check clean; 40 test files / 269 tests pass; i18n keys validate
DavidHLP
pushed a commit
that referenced
this pull request
Jul 3, 2026
Phase 1 frontend (task #10) test coverage: management (admin): - HiddenTestCasesEditor.spec.ts (3 tests): - GET /admin/problems/{id}/test-cases called on mount with limit 1000 - Refetches when problemId prop changes - Sample/hidden count from API response (XOR filter on client) console (user-facing): - SubmissionTestResults.spec.ts (4 tests, ADR-001 invariant): - SubmissionRecord has no isHidden / is_hidden / caseScope fields - SubmissionTestRecord has no per-test hidden case data - Only SubmissionRecord (top-level) carries first-failed detail fields - SubmissionTestResults.vue source file is free of 'isHidden' / 'caseScope' / 'is_hidden' / 'case_scope' identifiers (static source check) The console spec is the structural witness of the ADR-001 visibility contract: backend SubmissionServiceImpl.toVO() strips HIDDEN rows via CaseScope.isUserVisible(scope), and the frontend type is a structural witness of that contract. If this test ever fails, the visibility contract has been broken — review P0-1 backend projection, do not relax the type. Note: project has no Playwright infrastructure yet. This Vitest-based integration coverage is the practical substitute; a follow-up Playwright E2E suite (admin edit flow + console submission detail walkthrough) is recorded as future work in the worktree MEMORY. Stats: - management: 41 test files / 272 tests (was 40 / 269, +1 file / +3 tests) - console: 34 test files / 303 tests (was 33 / 299, +1 file / +4 tests) - vue-tsc clean on both apps
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
…#10) Replace the /home/davidhlp/... absolute path with import.meta.url relative resolution so the static-scan test works in CI and on any clone path, and reads the worktree copy instead of the main-repo path. Reviewer pre-push blocker (msg 9d908982).
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
Phase 1 frontend hidden test cases UI: Tabs (samples/hidden) + RadioGroup scope (SAMPLE/HIDDEN) + CaseScope utility + admin-only HiddenCasesView + ADR-001 console 0-leak invariant. P9 pre-reviewed (3 security points); reviewer path-blocker fixed (import.meta.url). Pre-push: management 272 + console 303 green, vue-tsc clean, i18n validated.
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
… follow-up) Replace the runtime object-literal assertion (theatre test) with compile-time keyof conditional witnesses — adding a hidden-case field (isHidden / is_hidden / caseScope / case_scope / input / output / expectedOutput) to SubmissionRecord / SubmissionTestRecord now fails to COMPILE, which is the real protection. Backend HiddenCaseLeakIT (asserts real Jackson JSON) remains source-of-truth. Also fix the spec comment: the import.meta.url resolution is path-agnostic (any clone / CI), not worktree-specific. Reviewer P1-2 + P2 follow-up (msg ffa1832a).
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
…e-level invariant + path comment Post-push follow-up: compile-time keyof conditional witnesses replace the theatre object-literal assertion (adding a hidden-case field to SubmissionRecord/SubmissionTestRecord now fails to compile); spec comment clarified to path-agnostic. reviewer P1-2 + P2 (msg ffa1832a).
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 console-production group in /console with 6 updates:
3.12.03.12.13.13.233.13.241.14.01.15.03.3.33.4.00.52.20.55.12.9.52.9.6Updates
@internationalized/datefrom 3.12.0 to 3.12.1Release notes
Sourced from
@internationalized/date's releases.Commits
ca74817Publish2d2cc15fix: prevent items from getting continually loaded in S2 TreeView (#9921)beda778fix: broken compound selector exposed by browserslist bump (Table virtualizer...c7c4c67fix: v3 docs build (#9919)efc581cfix: nightly packing too many files (#9917)5c5bda5docs: improve S2 agent skill (#9908)988c120docs: Update RangeCalendar for api consitency, add docs for nonce, and TagGro...21c4dfbchore: Revert 9875 and move disabledBehavior example in TableView docs (#9914)9e18b4achore: fix S2 datepicker errorMessage type (#9909)b65a4aaRevert "fix: make aria test utils helpers work with vitest-browser-react (#97...Updates
@tanstack/vue-virtualfrom 3.13.23 to 3.13.24Release notes
Sourced from
@tanstack/vue-virtual's releases.Changelog
Sourced from
@tanstack/vue-virtual's changelog.Commits
c3d4cd4ci: Version Packages (#1157)Updates
axiosfrom 1.14.0 to 1.15.0Release notes
Sourced from axios's releases.
Changelog
Sourced from axios's changelog.
Commits
772a4e5chore(release): prepare release 1.15.0 (#10671)4b07137chore(deps-dev): bump vite from 8.0.0 to 8.0.5 in /tests/smoke/esm (#10663)51e57b3chore(deps-dev): bump vite from 8.0.2 to 8.0.5 (#10664)fba1a77chore(deps-dev): bump vite from 8.0.2 to 8.0.5 in /tests/module/esm (#10665)0bf6e28chore(deps): bump denoland/setup-deno in the github-actions group (#10669)8107157chore(deps-dev): bump the development_dependencies group with 4 updates (#10670)e66530eci: require npm-publish environment for releases (#10666)49f23cbchore(sponsor): update sponsor block (#10668)3631854fix: unrestricted cloud metadata exfiltration via header injection chain (#10...fb3befbfix: no_proxy hostname normalization bypass leads to ssrf (#10661)Updates
dompurifyfrom 3.3.3 to 3.4.0Release notes
Sourced from dompurify's releases.
Commits
5b16e0bGetting 3.x branch ready for 3.4.0 release (#1250)Updates
monaco-editorfrom 0.52.2 to 0.55.1Release notes
Sourced from monaco-editor's releases.
... (truncated)
Changelog
Sourced from monaco-editor's changelog.
... (truncated)
Commits
516f350Fixes missing language exports (#5121)9221aa0v0.55.1 (#5122)d678c1dMerge pull request #5120 from microsoft/hediet/enormous-herringf047a08Fixes npx playwright install --with-deps220c1caFixes microsoft/monaco-editor#5113 (#5118)1b175c7v0.55.0 (#5117)574b846Install playwright dependencies in monaco-editor-core job (#5116)5486e82update (#5105)e70b661fixes website & adds editor.api.d.ts (#5104)36efbe0Fixes typedoc & updates pipelines to test website (#5102)Updates
reka-uifrom 2.9.5 to 2.9.6Release notes
Sourced from reka-ui's releases.
Commits
e5667c2chore: release v2.9.6836f2e9fix(MonthPicker, YearPicker): preserve day/month when selecting (#2594)1d77296fix(TimeField): change focus after pressing 0 more than once on hour segment ...fbd9f04chore(deps): update dependency vite to ^8.0.8 (#2592)70e7286fix: export missing TimeRange type (#2590)68a490bRevert "chore(deps): bump vite from 5.4.21 to 8.0.5 (#2584)"You can trigger a rebase of this PR 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