chore(deps): bump the console-production group across 1 directory with 13 updates - #88
Closed
dependabot[bot] wants to merge 38 commits into
Closed
Conversation
- CODEMAPS: refresh 5 freshness headers; data.md migrations 25→34 (+judge_outbox, notification_delivery_ledger, virtual_contest_sessions, contest scoring hardening, problem resource limits); architecture/ dependencies add shared/sandbox-types, Arthas 4.1.9→4.2.2, PM2 4→5 apps - RUNBOOK §1: PM2 app count 4→5 (4 long-running + one-shot ulticode-init-db) - CONTRIBUTING: add @ulticode/sandbox-types to Shared Packages table - ecosystem.config.cjs: fix stale arthas protocol comment STREAMABLE→STATELESS (project-pinned in arthas.properties) - .reports/codemap-diff.txt: refresh diff report
Phase 1-6 wired per docs/SHARED_TYPOGRAPHY_DESIGN.md §18.1: - Replace raw letter-spacing (0.05em/0.1em/0.15em) with --uc-tracking-label/terminal/terminal-wide - Replace raw font-weight (650/750) with --uc-font-weight-semibold/bold - Replace raw font-family (system stack) and line-height (1.6) in management DescriptionMarkdown with --uc-font-prose and --uc-leading-normal - Fix pre-existing CssSyntaxError 'Missed semicolon' across 26 files where 'var(--uc-font-weight-*)' lines lacked trailing ';' - Extend scripts/verify-typography-tokens.mjs with raw-font-weight detection - Document current snapshot in §18.1 Co-Authored-By: Claude <noreply@anthropic.com>
Establish docs/ as a shared Obsidian vault whose team-level config is
version-controlled. Previously .obsidian/ was blanket-gitignored and every
config file was empty ({}), so the vault had no link-format default, no
graph color groups, and each contributor's experience diverged.
- .gitignore: switch from ignoring all of .obsidian/ to selective — commit
the config that shapes the shared experience, ignore per-machine state
(workspace.json, community-plugins.json, plugins/, .cache) and .claudian/
- .obsidian/app.json: useMarkdownLinks=false + newLinkFormat="shortest" +
alwaysUpdateLinks=true (new links default to [[wikilink]] by basename)
- .obsidian/graph.json: color groups by subsystem path (adr/, CODEMAPS/,
theme/, ops/, top-level), showOrphans on to surface graph islands
- core-plugins.json / appearance.json: left as-is (already sane)
See docs/DOCS_CONVENTIONS.md §4 for the link-format contract this enables.
All six auto-generated CODEMAPS snapshots lacked frontmatter, so they were
invisible to tag-pane and appeared as unowned in the vault. ops/README had
the same gap (it even mandates frontmatter it didn't carry).
- CODEMAPS/{architecture,backend,data,dependencies,frontend,sandbox}.md:
add title/tags/status/updated/owner + generator field frontmatter above
the <!-- Generated --> header
- CODEMAPS/README.md (new): hand-written MOC/index note mirroring the
adr/ops/theme README pattern. Lists all six snapshots, the regeneration
cadence, and — critically — links [[dependencies]] etc., which removes
dependencies.md from the graph orphan set. Includes a regeneration note
warning that ecc:update-codemaps must preserve this frontmatter on
rewrite (otherwise next regeneration drops it and re-isolates the files)
Follow-up TODO (flagged in the new README): persist frontmatter output in
the ecc:update-codemaps generator so it survives the weekly regeneration.
…graph
ADR cross-references were written as backtick-wrapped numbers (e.g. `0008`),
which violates the ADR rule "always reference by filename, not number" and
made the Obsidian graph ignore the edges. Two issues fixed:
1. Syntax: every 相关 ADR line + CODEMAPS/RUNBOOK pointer across all 11 ADRs
converted to [[filename]] wikilinks (CODEMAPS pointers -> [[backend]],
[[data]], [[sandbox]], [[architecture]]; RUNBOOK -> [[RUNBOOK]]).
2. Missing edges (4) so the relation graph is symmetric and complete:
- 0006 -> 0010 (cancelled contest never runs scoring)
- 0009 -> 0006 (isRated consumed by ContestScoringService; was one-way)
- 0010 -> 0006, 0004 (cancel reuses notification ledger in body but
never declared it; scoring symmetry)
- 0008 -> 0011 (0008 was literally "相关 ADR:无" yet 0011 already
named it as shadow-mode's first consumer)
Also in adr/README.md:
- index table links -> [[filename|NNNN]] wikilinks
- add an honest note under the index: dates marked 2026-xx-xx are
un-backfilled decision dates, not fabricated. ADRs are immutable and
dates are facts — do not invent them; fill YYYY-MM-DD only if known.
…k, ops Convert every note-to-note link in the non-ADR docs to Obsidian wikilinks so the graph view, backlinks, and outgoing-links pane work across the whole vault. Code paths, migration filenames, repo-root files (../AGENTS.md), and external URLs are deliberately kept as literal markdown — they are not vault notes and converting them would create broken graph nodes. - docs/README.md: ~40 links (hub tables, task index, sub-directory index) - docs/RUNBOOK.md: 强相关 ADR pointers - docs/ops/README.md: index table link + add frontmatter (it mandated frontmatter it didn't carry) - docs/ops/arthas-mcp-usage.md: back-to-index link - docs/theme/*.md (6): the dense theme-doc cross-link mesh (architecture, design-tokens, theme-modes, components, extension, README) Style: collapsed [[basename]] when display text was just the name; alias form [[basename|display]] when text adds meaning (e.g. "RUNBOOK §4"); ambiguous basenames (architecture, README across CODEMAPS/adr/ops/theme) use path-prefixed form [[CODEMAPS/architecture]] / [[adr/README]]. Verified post-migration: 0 broken wikilinks, 0 remaining in-vault markdown links, 0 graph orphans.
Bring the docs governance spec in line with the vault conversion (commits c54e212 .. 8652bc7) so the new contract is authoritative, not just de-facto. - §1 directory map: add CODEMAPS/README.md (the new MOC) and the theme/ sub-directory (was missing); note the CODEMAPS frontmatter regeneration caveat - §3 tags: formally adopt the in-use vocabulary that was previously out of spec — new "子系统 Facets" (scoring/rating/virtual/cancel/lifecycle/ websocket/protocol/exactly-once/deploy/rollback/drill/automation/shadow/ observability/diagnostics/arthas) and "文档范围" (docs/ops/architecture/ contributing/onboarding/env/incident) categories. 0 tags now out of vocab - §4 links: rewrite for the wikilink standard — vault-internal notes use [[wikilink]]; code/migration/repo-root/external stay literal; add the GitHub-tradeoff note and a resolver-based cross-validation rule - §7 PR checklist: add wikilink-integrity + boundary-link checks - §8 anti-patterns: add "don't wikilink code paths / migrations / repo-root files" - §9 tools: reframe Obsidian as the vault's native browser; update the obsidian-vault skill description
Fill in the missing images referenced at the top of README.md (forum/contest/problem views on console + analytics/dashboard on management), captured at 1440x900. Updates the docs/screenshots README index to match.
…h 13 updates Bumps the console-production group with 13 updates in the /console directory: | Package | From | To | | --- | --- | --- | | [@internationalized/date](https://github.com/adobe/react-spectrum) | `3.12.1` | `3.12.2` | | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.0` | `4.3.1` | | [@tanstack/vue-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/vue-virtual) | `3.13.25` | `3.13.29` | | [@unovis/ts](https://github.com/f5/unovis/tree/HEAD/packages/ts) | `1.6.5` | `1.6.6` | | [@unovis/vue](https://github.com/f5/unovis/tree/HEAD/packages/vue) | `1.6.5` | `1.6.6` | | [axios](https://github.com/axios/axios) | `1.16.1` | `1.18.0` | | [dompurify](https://github.com/cure53/DOMPurify) | `3.4.5` | `3.4.11` | | [markdown-it](https://github.com/markdown-it/markdown-it) | `14.1.1` | `14.2.0` | | [reka-ui](https://github.com/unovue/reka-ui) | `2.9.8` | `2.10.0` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.0` | `4.3.1` | | [vue](https://github.com/vuejs/core) | `3.5.34` | `3.5.38` | | [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.4.4` | `11.4.6` | | [vue-router](https://github.com/vuejs/router) | `5.0.7` | `5.1.0` | Updates `@internationalized/date` from 3.12.1 to 3.12.2 - [Release notes](https://github.com/adobe/react-spectrum/releases) - [Commits](https://github.com/adobe/react-spectrum/compare/@internationalized/date@3.12.1...@internationalized/date@3.12.2) Updates `@tailwindcss/vite` from 4.3.0 to 4.3.1 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/packages/@tailwindcss-vite) Updates `@tanstack/vue-virtual` from 3.13.25 to 3.13.29 - [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.29/packages/vue-virtual) Updates `@unovis/ts` from 1.6.5 to 1.6.6 - [Release notes](https://github.com/f5/unovis/releases) - [Commits](https://github.com/f5/unovis/commits/1.6.6/packages/ts) Updates `@unovis/vue` from 1.6.5 to 1.6.6 - [Release notes](https://github.com/f5/unovis/releases) - [Commits](https://github.com/f5/unovis/commits/1.6.6/packages/vue) Updates `axios` from 1.16.1 to 1.18.0 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v1.16.1...v1.18.0) Updates `dompurify` from 3.4.5 to 3.4.11 - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](cure53/DOMPurify@3.4.5...3.4.11) Updates `markdown-it` from 14.1.1 to 14.2.0 - [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md) - [Commits](markdown-it/markdown-it@14.1.1...14.2.0) Updates `reka-ui` from 2.9.8 to 2.10.0 - [Release notes](https://github.com/unovue/reka-ui/releases) - [Commits](unovue/reka-ui@v2.9.8...v2.10.0) Updates `tailwindcss` from 4.3.0 to 4.3.1 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/packages/tailwindcss) Updates `vue` from 3.5.34 to 3.5.38 - [Release notes](https://github.com/vuejs/core/releases) - [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md) - [Commits](vuejs/core@v3.5.34...v3.5.38) Updates `vue-i18n` from 11.4.4 to 11.4.6 - [Release notes](https://github.com/intlify/vue-i18n/releases) - [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md) - [Commits](https://github.com/intlify/vue-i18n/commits/v11.4.6/packages/vue-i18n) Updates `vue-router` from 5.0.7 to 5.1.0 - [Release notes](https://github.com/vuejs/router/releases) - [Commits](vuejs/router@v5.0.7...v5.1.0) --- updated-dependencies: - dependency-name: "@internationalized/date" dependency-version: 3.12.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: "@tailwindcss/vite" dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: "@tanstack/vue-virtual" dependency-version: 3.13.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: "@unovis/ts" dependency-version: 1.6.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: "@unovis/vue" dependency-version: 1.6.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: axios dependency-version: 1.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: dompurify dependency-version: 3.4.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: markdown-it dependency-version: 14.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: reka-ui dependency-version: 2.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production - dependency-name: tailwindcss dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: vue dependency-version: 3.5.38 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: vue-i18n dependency-version: 11.4.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: console-production - dependency-name: vue-router dependency-version: 5.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: console-production ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Contributor
Author
|
Looks like these dependencies are no longer updatable, so this is no longer needed. |
dependabot
Bot
deleted the
dependabot/npm_and_yarn/console/console-production-dd3910fa85
branch
June 27, 2026 08:22
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 with 13 updates in the /console directory:
3.12.13.12.24.3.04.3.13.13.253.13.291.6.51.6.61.6.51.6.61.16.11.18.03.4.53.4.1114.1.114.2.02.9.82.10.04.3.04.3.13.5.343.5.3811.4.411.4.65.0.75.1.0Updates
@internationalized/datefrom 3.12.1 to 3.12.2Release notes
Sourced from @internationalized/date's releases.
Commits
791377fPublish7840603chore: update test util page badges (#10123)2cea5b5chore: update circleci resource classes (#10119)83e5b53chore: Omit calendar features from v3 (#10122)2c18eb6fix: Custom 454 Calendar month (#10115)ed9170ffix: ensure Tableview and ListView render their dividers and borders with the...6206fc3chore: Only export DragPreview from useDragAndDrop subpath (#10114)8e4498fdocs: add api section with slots to DragPreview (#10113)719ebb2fix: optimize locales not tree-shaking react-stately intl messages (#10111)3547c08fix: stabilise our flaky CI jobs (#10106)Updates
@tailwindcss/vitefrom 4.3.0 to 4.3.1Release notes
Sourced from @tailwindcss/vite's releases.
Changelog
Sourced from @tailwindcss/vite's changelog.
Commits
8a14a714.3.1 (#20226)73983e1Fix 'Sourcemap is likely to be incorrect' warnings when using `@tailwindcss/v...Updates
@tanstack/vue-virtualfrom 3.13.25 to 3.13.29Release notes
Sourced from @tanstack/vue-virtual's releases.
Changelog
Sourced from @tanstack/vue-virtual's changelog.
Commits
75ae896ci: Version Packages (#1202)b983b21ci: Version Packages (#1184)c33902fci: Version Packages (#1182)693d915ci: Version Packages (#1174)Updates
@unovis/tsfrom 1.6.5 to 1.6.6Release notes
Sourced from @unovis/ts's releases.
... (truncated)
Commits
4f18887Release: 1.6.6daa9589Misc: Fix vulnerabilites4010bd1Misc: Update remaining dark selectorsadbdaa7chore(dev): add dark theme example, replace all root theme-dark with selectors4c22dc5fix(utils): support dark theme CSS selectors4d1eef2Revert "Component | Graph: Intro expand or collapse graph nodes"c4970a9Revert "Dev | Graph: Intro expand or collapse graph nodes example"39bb131Dev | Graph: Intro expand or collapse graph nodes exampledd70394Component | Graph: Intro expand or collapse graph nodesc485b2fComponent | Crosshair: Add configurable visibility thresholdUpdates
@unovis/vuefrom 1.6.5 to 1.6.6Release notes
Sourced from @unovis/vue's releases.
... (truncated)
Commits
4f18887Release: 1.6.6daa9589Misc: Fix vulnerabilites3ac56a2Misc: Add typescript to pnpm catalog (vue + solid)a1716feVue | Lint: Fix__dirnameESM error in eslint.config.js08186e7Vue | XYContainer: Defer chart creation until child slots register6c92288Misc: Refresh license reportsc737c1eMisc: Changed license report output format to Markdown60f0f45Misc: Refine the gather-licenses scriptf38321eDev: Minor code cleanup5ffe639Dev | Examples: Add Synced Crosshairs for Vue, Svelte, SolidUpdates
axiosfrom 1.16.1 to 1.18.0Release notes
Sourced from axios's releases.
... (truncated)
Changelog
Sourced from axios's changelog.
... (truncated)
Commits
2d06f96chore(release): prepare release 1.18.0 (#11003)32fc489fix: malformed http urls (#11000)b40ce49chore(deps-dev): bump the development_dependencies group with 10 updates (#10...fe964f9docs: mark proxy config as Node.js only (#10995)5f229d2chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 in the github-actions ...fae9d4edocs: clarify package update PR policy (#10992)Description has been truncated