chore(deps-dev): bump the management-development group in /management with 12 updates - #11
Closed
dependabot[bot] wants to merge 0 commit into
Closed
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/management/management-development-e4ebcf6dbb
branch
from
April 18, 2026 06:26
5278f5e to
4748cdc
Compare
DavidHLP
force-pushed
the
dependabot/npm_and_yarn/management/management-development-e4ebcf6dbb
branch
from
April 18, 2026 06:43
4748cdc to
1547fea
Compare
dependabot
Bot
deleted the
dependabot/npm_and_yarn/management/management-development-e4ebcf6dbb
branch
April 18, 2026 06:43
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
…l row) Pre-fix: JudgingLeaseReaper.recoverExpiredLeases 与 AdminSubmissionServiceImpl.writeRejudgeOutbox 在事务内 hard-code JudgeOutboxRecord.forResubmission(..., /*isShadow*/ true)。 port 模式 (use-port=true) 下 dispatcher 忽略 shadow 行,只取 is_shadow=0。 reaper/admin 写的 shadow row 永远不被 dispatcher 取 → recovered/rejudged submission 永远孤儿 (reaper 的 afterCommit RQueue enqueue 在 port 模式被跳过, 无 producer 兜底)。这是 M3c cutover 静默挂起 submission 的最严重路径。 Fix: 改两处 hard-code `true` → `!portActive` (portActive = flags.getJudgeQueue().isUsePort())。 shadow 模式 (portOff) 保留原有 double-write 观察语义;port 模式 (portOn) 写 real row, dispatcher 立即 enqueue。 改动文件: - backend-spring/src/main/java/com/ulticode/modules/submission/reaper/JudgingLeaseReaper.java - backend-spring/src/main/java/com/ulticode/modules/admin/service/impl/AdminSubmissionServiceImpl.java 测试: LeaseReaperIT (19) + AdminSubmissionServiceImplTest + FeatureFlagsPropertiesBindingTest (3) + FlagCombinationValidatorTest (6) = 29 case 全 PASS,代码改动无回归。 Streams IT (4 case 矩阵,Testcontainers MySQL + InMemoryJudgeQueueAdapter) 留独立改进: - reaper.recoverExpiredLeases 内部循环 + 事务边界,无单测可达 extract 入口 - 需要 refactor 暴露 recoverSingleSubmissionForTest 或在 Testcontainers IT 里走完整 recoverExpiredLeases + dispatcher poll 循环 - 留 #11 线程与 reviewer 协调暴露点 Refs: task #11 (P0 #11) Co-Authored-By: Claude <noreply@anthropic.com>
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
…shadow=!portActive (real row)
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
…d: AdminSubmissionServiceImpl field javadoc clarified for port cutover)
DavidHLP
added a commit
that referenced
this pull request
Jun 14, 2026
…y (reaper/admin outbox write 日志埋点)
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
Add created_by and updated_by fields to Translation model for proper audit trail consistency with other core entities (User, Contest, etc). - Add created_by and updated_by fields to Translation model - Add relations to User model (creator, updater) - Add indexes on created_by and updated_by - Create migration: 20260114163745_add_translation_audit_fields Resolves Issue #11: Translation table missing created_by and updated_by
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
…l row) Pre-fix: JudgingLeaseReaper.recoverExpiredLeases 与 AdminSubmissionServiceImpl.writeRejudgeOutbox 在事务内 hard-code JudgeOutboxRecord.forResubmission(..., /*isShadow*/ true)。 port 模式 (use-port=true) 下 dispatcher 忽略 shadow 行,只取 is_shadow=0。 reaper/admin 写的 shadow row 永远不被 dispatcher 取 → recovered/rejudged submission 永远孤儿 (reaper 的 afterCommit RQueue enqueue 在 port 模式被跳过, 无 producer 兜底)。这是 M3c cutover 静默挂起 submission 的最严重路径。 Fix: 改两处 hard-code `true` → `!portActive` (portActive = flags.getJudgeQueue().isUsePort())。 shadow 模式 (portOff) 保留原有 double-write 观察语义;port 模式 (portOn) 写 real row, dispatcher 立即 enqueue。 改动文件: - backend-spring/src/main/java/com/ulticode/modules/submission/reaper/JudgingLeaseReaper.java - backend-spring/src/main/java/com/ulticode/modules/admin/service/impl/AdminSubmissionServiceImpl.java 测试: LeaseReaperIT (19) + AdminSubmissionServiceImplTest + FeatureFlagsPropertiesBindingTest (3) + FlagCombinationValidatorTest (6) = 29 case 全 PASS,代码改动无回归。 Streams IT (4 case 矩阵,Testcontainers MySQL + InMemoryJudgeQueueAdapter) 留独立改进: - reaper.recoverExpiredLeases 内部循环 + 事务边界,无单测可达 extract 入口 - 需要 refactor 暴露 recoverSingleSubmissionForTest 或在 Testcontainers IT 里走完整 recoverExpiredLeases + dispatcher poll 循环 - 留 #11 线程与 reviewer 协调暴露点 Refs: task #11 (P0 #11) Co-Authored-By: Claude <noreply@anthropic.com>
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
…l row) Pre-fix: JudgingLeaseReaper.recoverExpiredLeases 与 AdminSubmissionServiceImpl.writeRejudgeOutbox 在事务内 hard-code JudgeOutboxRecord.forResubmission(..., /*isShadow*/ true)。 port 模式 (use-port=true) 下 dispatcher 忽略 shadow 行,只取 is_shadow=0。 reaper/admin 写的 shadow row 永远不被 dispatcher 取 → recovered/rejudged submission 永远孤儿 (reaper 的 afterCommit RQueue enqueue 在 port 模式被跳过, 无 producer 兜底)。这是 M3c cutover 静默挂起 submission 的最严重路径。 Fix: 改两处 hard-code `true` → `!portActive` (portActive = flags.getJudgeQueue().isUsePort())。 shadow 模式 (portOff) 保留原有 double-write 观察语义;port 模式 (portOn) 写 real row, dispatcher 立即 enqueue。 改动文件: - backend-spring/src/main/java/com/ulticode/modules/submission/reaper/JudgingLeaseReaper.java - backend-spring/src/main/java/com/ulticode/modules/admin/service/impl/AdminSubmissionServiceImpl.java 测试: LeaseReaperIT (19) + AdminSubmissionServiceImplTest + FeatureFlagsPropertiesBindingTest (3) + FlagCombinationValidatorTest (6) = 29 case 全 PASS,代码改动无回归。 Streams IT (4 case 矩阵,Testcontainers MySQL + InMemoryJudgeQueueAdapter) 留独立改进: - reaper.recoverExpiredLeases 内部循环 + 事务边界,无单测可达 extract 入口 - 需要 refactor 暴露 recoverSingleSubmissionForTest 或在 Testcontainers IT 里走完整 recoverExpiredLeases + dispatcher poll 循环 - 留 #11 线程与 reviewer 协调暴露点 Refs: task #11 (P0 #11) Co-Authored-By: Claude <noreply@anthropic.com>
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
…d: AdminSubmissionServiceImpl field javadoc clarified for port cutover)
DavidHLP
added a commit
that referenced
this pull request
Jul 3, 2026
…y (reaper/admin outbox write 日志埋点)
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 management-development group in /management with 12 updates:
24.12.225.6.06.0.56.0.64.1.34.1.44.1.34.1.40.8.10.9.19.39.410.2.110.6.210.8.06.3.16.4.13.7.43.8.35.9.36.0.37.3.28.0.84.1.34.1.4Updates
@types/nodefrom 24.12.2 to 25.6.0Commits
Updates
@vitejs/plugin-vuefrom 6.0.5 to 6.0.6Release notes
Sourced from
@vitejs/plugin-vue's releases.Changelog
Sourced from
@vitejs/plugin-vue's changelog.Commits
51dbf4brelease: plugin-vue@6.0.69e07ae9feat(plugin-vue): propagate multiRoot for template-only vapor components (#745)050c996fix(deps): update all non-major dependencies (#738)6d834d8chore: remove unused deps (#760)a0e1ef8chore(deps): update dependency rollup to ^4.59.0 (#749)Updates
@vitest/coverage-v8from 4.1.3 to 4.1.4Release notes
Sourced from
@vitest/coverage-v8's releases.Commits
ac04bacchore: release v4.1.4Updates
@vitest/uifrom 4.1.3 to 4.1.4Release notes
Sourced from
@vitest/ui's releases.Commits
ac04bacchore: release v4.1.4d4fbb5cfeat(experimental): support aria snapshot (#9668)Updates
@vue/tsconfigfrom 0.8.1 to 0.9.1Release notes
Sourced from
@vue/tsconfig's releases.Commits
dc7af0b0.9.1e73ef3cfix: align typescript peer dependency with documentation35696850.9.0fa4423bchore: move noUncheckedIndexedAccess from base config to the lib config051d720docs: update TypeScript version requirement3db886afeat: update lib to ES2022 (#41)df9d3d4docs: note the default value oftypesin TS 6+ has been changed to[]0e39087docs: note that strict mode is on by default in TS 6ae3b1dcchore: make GitHub render tsconfig.*.json as JSONCUpdates
eslintfrom 9.39.4 to 10.2.1Release notes
Sourced from eslint's releases.
... (truncated)
Commits
4d1d8f910.2.13e33105Build: changelog update for 10.2.1ca92ca0docs: reuse markdown-it instance for markdown filter (#20768)7ddfea9chore: update dependency prettier to v3.8.2 (#20770)57d2ee2docs: Enable Eleventy incremental mode for watch (#20767)c1621b9docs: fix typos in code-path-analyzer.js (#20700)fac40e1ci: bump pnpm/action-setup from 5.0.0 to 6.0.0 (#20763)7246f92test: add tests for SuppressionsService.load() error handling (#20734)4f34b1echore: update pnpm/action-setup action to v5 (#20762)1418d52docs: Update READMEUpdates
eslint-plugin-vuefrom 10.6.2 to 10.8.0Release notes
Sourced from eslint-plugin-vue's releases.
Changelog
Sourced from eslint-plugin-vue's changelog.
Commits
4b92896Version Packages (#3023)2523927feat: allow ESLint v10 as peer dependency (#2962)57058cefeat(define-props-destructuring): addonly-when-assignedoption (#3009)72fdd6eFix release workflow (#3022)69604f7feat(no-async-in-computed-properties): add missing Promise methods (#3020)8bfb795feat(valid-v-for): addallowEmptyAliasoption (#3011)9cb3e87feat(attributes-order): addignoreVBindObjectoption (#3012)598d30fFix deploy preview (#3021)99dcf29docs(no-unused-properties): complete options list (#3018)138db47fix(no-unused-vars): detect slot props used as component tags (#3008)Updates
knipfrom 6.3.1 to 6.4.1Release notes
Sourced from knip's releases.
Commits
ea70d72Release knip@6.4.1cdbe298Handle file path arguments in Bun plugin (resolve #1678)baa8ef4Release knip@6.4.0608f0edlicense40a917eResolve path.join(__dirname, ...) in Worker/child_process calls (#1660)00ae83bResolve scss path aliases (resolve #1676)f3ed14dEnable Tailwind CSS compiler for@tailwindcssintegrations (close #1674)0506895Add config hints for redundant/unregistered extensions (close #1672, close #1...dabf8ceMark namespace members used when enumerated via Object.*6ab8de8Cache glob results across--cacherunsUpdates
prettierfrom 3.7.4 to 3.8.3Release notes
Sourced from prettier's releases.
Changelog
Sourced from prettier's changelog.
... (truncated)
Commits
d7108a7Release 3.8.3177f908Prevent trailing comma in SCSSif()function (#18471)1cd4066Release@prettier/plugin-oxc@0.1.4a8700e2Update oxc-parser to v0.125.0752157cFix tests053fd41Bump Prettier dependency to 3.8.2904c636Clean changelog_unreleaseddc1f7fcUpdate dependents countb31557cRelease 3.8.296bbaedSupport Angular v21.2 (#18722)Updates
typescriptfrom 5.9.3 to 6.0.3Release notes
Sourced from typescript's releases.
Commits
050880cBump version to 6.0.3 and LKGeeae9dd🤖 Pick PR #63401 (Also check package name validity in...) into release-6.0 (#...ad1c695🤖 Pick PR #63368 (Harden ATA package name filtering) into release-6.0 (#63372)0725fb4🤖 Pick PR #63310 (Mark class property initializers as...) into release-6.0 (#...607a22aBump version to 6.0.2 and LKG9e72ab7🤖 Pick PR #63239 (Fix missing lib files in reused pro...) into release-6.0 (#...35ff23d🤖 Pick PR #63163 (Port anyFunctionType subtype fix an...) into release-6.0 (#...e175b69Bump version to 6.0.1-rc and LKGaf4caacUpdate LKG8efd7e8Merge remote-tracking branch 'origin/main' into release-6.0Updates
vitefrom 7.3.2 to 8.0.8Release notes
Sourced from vite's releases.
... (truncated)
Changelog
Sourced from vite's changelog.