Skip to content

fix(deps): update all dependencies#265

Merged
skulidropek merged 3 commits into
mainfrom
renovate/all
May 13, 2026
Merged

fix(deps): update all dependencies#265
skulidropek merged 3 commits into
mainfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 9, 2026

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.4.14^2.4.15 age confidence
@types/node (source) ^25.6.2^25.7.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.59.2^8.59.3 age confidence
@typescript-eslint/parser (source) ^8.59.2^8.59.3 age confidence
@vitest/coverage-v8 (source) ^4.1.5^4.1.6 age confidence
biome (source) ^2.4.14^2.4.15 age confidence
jscpd ^4.0.9^4.1.1 age confidence
typescript-eslint (source) ^8.59.2^8.59.3 age confidence
vite (source) ^8.0.11^8.0.12 age confidence
vitest (source) ^4.1.5^4.1.6 age confidence
ws ^8.20.0^8.20.1 age confidence

cc @skulidropek


Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.15

Compare Source

Patch Changes
  • #​9394 ba3480e Thanks @​dyc3! - Added the nursery rule useTestHooksInOrder in the test domain. The rule enforces that Jest/Vitest lifecycle hooks (beforeAll, beforeEach, afterEach, afterAll) are declared in the order they execute, making test setup and teardown easier to reason about.

  • #​10254 e0a54cc Thanks @​dyc3! - Added a new nursery rule useVueNextTickPromise, which enforces Promise syntax when using Vue nextTick.

    For example, the following snippet triggers the rule:

    import { nextTick } from "vue";
    
    nextTick(() => {
      updateDom();
    });
  • #​10219 64aee45 Thanks @​dyc3! - Added a new nursery rule noVueVOnNumberValues, that disallows deprecated number modifiers on Vue v-on directives.

    For example, the following snippet triggers the rule:

    <input @&#8203;keyup.13="submit" />
  • #​10195 7b8d4e1 Thanks @​dyc3! - Added the new nursery rule useVueValidVFor, which validates Vue v-for directives and reports invalid aliases, missing component keys, and keys that do not use iteration variables.

  • #​10238 1110256 Thanks @​dyc3! - Added the recommended nursery rule noVueImportCompilerMacros, which disallows importing Vue compiler macros such as defineProps from vue because they are automatically available.

  • #​10201 1a08f89 Thanks @​realknove! - Fixed #​10193: style/useReadonlyClassProperties no longer reports class properties as readonly-able when they are assigned inside arrow callbacks nested in class property initializers.

  • #​9574 3bd2b6a Thanks @​Conaclos! - Fixed #​9530. The diagnostics of organizeImports are now more detailed and more precise. They are also better at localizing where the issue is.

  • #​10205 a704a6c Thanks @​Conaclos! - Fixed #​10185. `organizeImports now errors when it encounters an unknown predefined group.

    The following configuration is now reported as invalid because :INEXISTENT: is an unknown predefined group.

    {
      "assist": {
        "actions": {
          "source": {
            "organizeImports": { "options": { "groups": [":INEXISTENT:"] } }
          }
        }
      }
    }
  • #​10052 b565bed Thanks @​minseong0324! - Improved noMisleadingReturnType: it now flags union annotations whose extra variants are never returned, and suggests the narrower type (e.g. string | nullstring).

    These functions are now reported because null and number are included in the return annotations but never returned:

    function getUser(): string | null {
      return "hello";
    } // null is never returned
    function getCode(): string | number {
      return "hello";
    } // number is never returned
  • #​10213 ac30057 Thanks @​dyc3! - Fixed #​9450: HTML and Vue element formatting now preserves child line breaks when an element contains another element child on its own line, instead of collapsing the child element onto the same line.

  • #​10275 9ee6c03 Thanks @​solithcy! - Fixed #​10274: Svelte templates with missing expressions no longer parsed as HtmlBogusElement

  • #​10143 56798a7 Thanks @​minseong0324! - noMisleadingReturnType now detects misleading return type annotations when object literal properties are initialized with as const.

    This function is now reported because the return annotation widens a property initialized with as const:

    function f(): { value: string } {
      return { value: "text" as const };
    }
  • #​10143 56798a7 Thanks @​minseong0324! - noUselessTypeConversion now detects redundant conversions on object literal properties initialized with as const.

    This conversion is now reported because message.value is inferred as a string literal:

    const message = { value: "text" as const };
    String(message.value);
  • #​9807 0ae5840 Thanks @​dyc3! - Added the new nursery rule useThisInClassMethods, based on ESLint's class-methods-use-this.

    The rule now reports instance methods, getters, setters, and function-valued instance fields that do not use this, and biome migrate eslint preserves the supported ignoreMethods, ignoreOverrideMethods, and ignoreClassesWithImplements options.

    Invalid:

    class Foo {
      bar() {
        // does not use `this`, invalid
        console.log("Hello Biome");
      }
    }
  • #​10258 e7b18f7 Thanks @​ematipico! - Improved linter performance by narrowing the query nodes for several lint rules, reducing how often they are evaluated.

  • #​10273 04e22a1 Thanks @​dyc3! - Fixed #​10271: The HTML parser now correctly parses of as text content when in text contexts.

  • #​9838 83f7385 Thanks @​dyc3! - Added the nursery rule noBaseToString, which reports stringification sites that fall back to Object's default "[object Object]" formatting. The rule also supports the ignoredTypeNames option.

  • #​10143 56798a7 Thanks @​minseong0324! - useExhaustiveSwitchCases now checks switch statements over object literal properties initialized with as const.

    This switch is now reported because status.kind is inferred as the string literal "ready" but no case handles it:

    const status = { kind: "ready" as const };
    switch (status.kind) {
    }
  • #​10143 56798a7 Thanks @​minseong0324! - useStringStartsEndsWith now detects string index comparisons on object literal properties initialized with as const.

    This comparison is now reported because message.value is inferred as a string literal:

    const message = { value: "hello" as const };
    message.value[0] === "h";
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.59.3

Compare Source

This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.59.3

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
kucherenko/jscpd (jscpd)

v4.1.1

Compare Source

v4.1.0

Compare Source

New Features
  • AI Reporter — new ai reporter that produces compact, token-efficient clone output specifically designed for feeding results into language models and AI tooling. Use --reporters ai to activate it.
  • MCP Server enhancements — the Model Context Protocol server now exposes a jscpd://statistics resource and supports a recheck endpoint so AI agents can trigger a rescan without restarting the process.
  • Apex & CFML language support — jscpd can now detect duplicate code in Salesforce Apex and ColdFusion Markup Language (CFML) files (closes #​83, #​619).
  • GDScript support — detect copy-paste duplication in Godot Engine GDScript files.
  • HTML reporter footer — the HTML report now displays a branded footer with the jscpd version and a sponsor link.
  • --noTips flag — suppress the usage-tip messages that appear after a detection run.
  • CI: Node.js 22.x / 24.x — continuous integration updated to test against the latest Node.js LTS and current releases.
Performance
  • Tokenizer — grammars are now loaded lazily, hot paths are O(n), and the spark-md5 dependency has been removed in favour of a lighter built-in implementation. Startup time and memory usage are noticeably reduced on large codebases.
  • Replaced the vendored reprism syntax library with the official prismjs npm package, shrinking the installed footprint.
Bug Fixes
  • Restored the correct start.line expectation for weak-mode clone detection.

typescript-eslint/typescript-eslint (typescript-eslint)

v8.59.3

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

vitejs/vite (vite)

v8.0.12

Compare Source

Features
Bug Fixes
  • create-vite: pass react framework to TanStack CLI (#​22397) (18f0f90)
  • deps: update all non-major dependencies (#​22420) (2be6000)
  • module-runner: prevent partial-exports race on concurrent imports of in-flight invalidated re-export chains (#​22369) (f5a22e6)
  • refer to rolldownOptions instead of deprecated rollupOptions in messages (#​22400) (b675c7b)
  • worker: apply build.target to worker bundle (#​22404) (3c93fde)
  • worker: forward define to worker bundle transform (#​22408) (d4838a0)
Miscellaneous Chores
websockets/ws (ws)

v8.20.1

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from skulidropek May 9, 2026 18:01
@renovate renovate Bot force-pushed the renovate/all branch from 5a619e1 to ccd8f93 Compare May 9, 2026 21:15
@renovate renovate Bot changed the title chore(deps): update all dependencies to ^2.4.15 chore(deps): update all dependencies May 9, 2026
@renovate renovate Bot force-pushed the renovate/all branch 4 times, most recently from cfb8d99 to effe126 Compare May 12, 2026 08:45
@skulidropek
Copy link
Copy Markdown
Member

Смержи к нам ветку main и исправь CI/CD

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🤖 AI Work Session Started

Starting automated work session at 2026-05-12T09:43:44.359Z

The PR has been converted to draft mode while work is in progress.

This comment marks the beginning of an AI work session. Please wait for the session to finish, and provide your feedback.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Update from AI session.

Root causes found:

  • Upstream PR Check failed in Lint because jscpd detected duplicate code after the Renovate dependency update.
  • After fixing that on the fork, fresh fork CI exposed E2E (Login context) timeout: the generated clone-cache refresh fetched +refs/*:refs/*, which pulled provider PR refs such as refs/pull/* for octocat/Hello-World and made the run unbounded.

Fix commits are pushed to fork branch konard/ProverCoderAI-docker-git:renovate/all:

Verification on a4120446adee74bd69729c7f4587d5efd6a3bbda:

Blocker: PR #265 head is still ProverCoderAI:renovate/all at effe1264b49bc354f324dc279fccd82c074ed3b6, so GitHub still shows the old failed upstream status. I attempted git push upstream HEAD:renovate/all, but GitHub returned Permission to ProverCoderAI/docker-git.git denied to konard / HTTP 403. I cannot update the upstream PR branch from this token; a maintainer needs to cherry-pick/apply the two fork commits above or grant write access to update ProverCoderAI:renovate/all.

SOURCE: n/a

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🤖 Solution Draft Log

This log file contains the complete execution trace of the AI solution draft process.

💰 Cost estimation:

  • Model: GPT-5.5
  • Provider: OpenAI
  • Public pricing estimate: $41.341566

📊 Context and tokens usage:

  • 762.5K / 1.1M (73%) input tokens, 75.8K / 128K (59%) output tokens

Total: (762.5K + 30.3M cached) input tokens, 75.8K output tokens, $41.341566 cost

🤖 Models used:

  • Tool: OpenAI Codex
  • Requested: gpt-5.5
  • Model: GPT-5.5 (gpt-5.5)

📎 Log file uploaded as Repository (2 chunks) (106840KB)


Now working session is ended, feel free to review and add any feedback on the solution draft.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart triggered (iteration 1)

Reason: CI failures detected

Starting new session to address the issues.


Auto-restart-until-mergeable mode is active. This run will stop after 5 restart iterations.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Auto-restart verification update for PR #265.

Current accessible branch state:

  • Fork branch konard/ProverCoderAI-docker-git:renovate/all is at a4120446adee74bd69729c7f4587d5efd6a3bbda.
  • It includes upstream/main (65c4f84beec0acf3a6181bde25821322a41cd8f8) as an ancestor.
  • Fix commits present:
    • 6ddfa44ae6510e0cad33cb502c99170a663e95d4 fixes the jscpd duplicate-code lint failure.
    • a4120446adee74bd69729c7f4587d5efd6a3bbda bounds clone-cache refresh to heads/tags only.

Fresh local verification on a4120446adee74bd69729c7f4587d5efd6a3bbda:

  • bun run lint passed; the previous three duplicate-code reports are gone.
  • bun run test passed: session-sync 16 tests, app 314 tests, lib 184 tests.
  • bun run check passed.
  • bun run lint:effect passed.
  • bun run build passed.
  • bun run check:dist-deps-prune passed.
  • Local E2E could not be run because this workspace has no docker binary and sudo -n docker ps requires a password.

Fresh GitHub status:

Blocker: this token cannot update the actual PR head branch (ProverCoderAI:renovate/all). A maintainer needs to either push/cherry-pick the fixed fork branch onto ProverCoderAI:renovate/all, or change/recreate the PR to use konard:renovate/all.

SOURCE: n/a

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Working session summary

Verified the fix on renovate/all at a4120446adee74bd69729c7f4587d5efd6a3bbda.

Local checks passed:

  • bun run lint
  • bun run test
  • bun run check
  • bun run lint:effect
  • bun run build
  • bun run check:dist-deps-prune

Fork CI is green for that SHA:

Blocking point: PR #265 still uses upstream head ProverCoderAI:renovate/all at old SHA effe1264b49bc354f324dc279fccd82c074ed3b6. I retried git push upstream HEAD:renovate/all, but GitHub returned HTTP 403: Permission to ProverCoderAI/docker-git.git denied to konard.

I posted the exact status and maintainer action needed here:
#265 (comment)

Working tree is clean. SOURCE: n/a


This summary was automatically extracted from the AI working session output.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart-until-mergeable Log (iteration 1)

This log file contains the complete execution trace of the AI solution draft process.

💰 Cost estimation:

  • Model: GPT-5.5
  • Provider: OpenAI
  • Public pricing estimate: $7.974900
  • Token usage: 162,404 input, 16,572 output, 5,605,120 cache read

🤖 Models used:

  • Tool: OpenAI Codex
  • Requested: gpt-5.5
  • Model: GPT-5.5 (gpt-5.5)

📎 Log file uploaded as Repository (2 chunks) (125212KB)


Now working session is ended, feel free to review and add any feedback on the solution draft.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart triggered (iteration 2)

Reason: CI failures detected

Starting new session to address the issues.


Auto-restart-until-mergeable mode is active. This run will stop after 5 restart iterations.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Auto-restart verification update for PR #265.

Current fixed branch state:

  • Fork branch konard/ProverCoderAI-docker-git:renovate/all is now at d40cd25288f245600139e72c4e215a2b048cb3c2.
  • It includes latest upstream/main at ca1b4c4451287d8e1150975a67d0a3c2cd8681e6 as an ancestor.
  • The previous Lint failure was reproduced from upstream CI logs as jscpd duplicate reports in app lint; on the fixed branch, Lint is green.

Local verification on d40cd25288f245600139e72c4e215a2b048cb3c2:

  • bun run lint passed.
  • bun run --cwd packages/api lint passed.
  • bun run check passed.
  • bun run lint:effect passed.
  • bun run test passed: session-sync 17 tests, app 314 tests, lib 184 tests.
  • bun run build passed.
  • bun run --cwd packages/api build passed.
  • bun run --cwd packages/api typecheck passed.
  • bun run check:dist-deps-prune passed.
  • Local direct bun run --cwd packages/api test is not valid in this workspace because there is no docker binary (spawn docker ENOENT), but the fork CI Test job passed and includes Test (api).

Fresh fork CI on d40cd25288f245600139e72c4e215a2b048cb3c2:

Blocking point:

  • PR fix(deps): update all dependencies #265 still points to upstream head ProverCoderAI:renovate/all at old SHA effe1264b49bc354f324dc279fccd82c074ed3b6.
  • I pushed the fixed branch to the fork successfully.
  • I retried git push upstream HEAD:renovate/all, but GitHub returned HTTP 403: Permission to ProverCoderAI/docker-git.git denied to konard.

Maintainer action needed: push/cherry-pick d40cd25288f245600139e72c4e215a2b048cb3c2 onto ProverCoderAI:renovate/all, or recreate/change the PR to use konard:renovate/all.

SOURCE: n/a

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Working session summary

Pushed the fixed renovate/all branch to the fork at d40cd25288f245600139e72c4e215a2b048cb3c2. It includes latest upstream/main and the fork CI is green:

Local verification passed for lint, check, lint:effect, test, build, API lint/build/typecheck, and dist-deps prune. The direct local API test cannot run in this workspace because there is no docker binary, but fork CI passed Test (api).

Blocking point: PR #265 still points to ProverCoderAI:renovate/all at old SHA effe1264…, so GitHub still shows the stale upstream Lint failure. I retried pushing to upstream and got HTTP 403. I posted the exact status and maintainer action here:

#265 (comment)

Working tree is clean. SOURCE: n/a.


This summary was automatically extracted from the AI working session output.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart-until-mergeable Log (iteration 2)

This log file contains the complete execution trace of the AI solution draft process.

💰 Cost estimation:

  • Model: GPT-5.5
  • Provider: OpenAI
  • Public pricing estimate: $12.179545
  • Token usage: 146,202 input, 19,657 output, 9,832,960 cache read

🤖 Models used:

  • Tool: OpenAI Codex
  • Requested: gpt-5.5
  • Model: GPT-5.5 (gpt-5.5)

📎 Log file uploaded as Repository (2 chunks) (152352KB)


Now working session is ended, feel free to review and add any feedback on the solution draft.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart triggered (iteration 3)

Reason: CI failures detected

Starting new session to address the issues.


Auto-restart-until-mergeable mode is active. This run will stop after 5 restart iterations.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Auto-restart verification update for PR #265.

Findings:

  • Upstream PR head is still ProverCoderAI:renovate/all at effe1264b49bc354f324dc279fccd82c074ed3b6.
  • The visible failing Lint check is from upstream run https://github.com/ProverCoderAI/docker-git/actions/runs/25723666228 on that old SHA.
  • Downloaded log ci-logs/check-25723666228.log shows the failure is jscpd duplicate reports in packages/app/src/web/terminal.ts, packages/app/src/web/api-database.ts, and packages/app/src/docker-git/menu-labeled-env.ts / packages/app/src/lib/usecases/auth-gitlab.ts.

Fixed branch state:

  • Fork konard/ProverCoderAI-docker-git:renovate/all is at d40cd25288f245600139e72c4e215a2b048cb3c2.
  • It includes latest checked upstream/main as an ancestor.
  • origin push reports Everything up-to-date.

Local verification on d40cd25288f245600139e72c4e215a2b048cb3c2:

  • bun run lint passed.
  • bun run check passed.
  • bun run lint:effect passed.
  • bun run test passed: session-sync 17 tests, app 314 tests, lib 184 tests.
  • bun run build passed.
  • bun run --cwd packages/api lint passed.
  • bun run --cwd packages/api build passed.
  • bun run --cwd packages/api typecheck passed.
  • bun run check:dist-deps-prune passed.
  • Local Docker is unavailable in this workspace, so Docker-backed local API/E2E execution cannot run here.

Fork CI on the same SHA is green and covers Docker-backed jobs:

Blocker:

  • Retried git push upstream HEAD:renovate/all; GitHub returned HTTP 403: Permission to ProverCoderAI/docker-git.git denied to konard.
  • Current token cannot update the actual PR head branch. A maintainer needs to push/cherry-pick d40cd25288f245600139e72c4e215a2b048cb3c2 to ProverCoderAI:renovate/all, or recreate/change the PR to use the fork branch.

SOURCE: n/a

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Working session summary

CI failure is not from the fixed branch anymore. The visible PR check is stale against upstream ProverCoderAI:renovate/all at effe1264…; the fixed fork branch konard/ProverCoderAI-docker-git:renovate/all is at d40cd25288f245600139e72c4e215a2b048cb3c2 and is green.

What I verified:

Blocker remains: git push upstream HEAD:renovate/all fails with HTTP 403: Permission to ProverCoderAI/docker-git.git denied to konard. So the actual PR head cannot be updated from this token. I posted the exact maintainer action needed here:

#265 (comment)


This summary was automatically extracted from the AI working session output.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart-until-mergeable Log (iteration 3)

This log file contains the complete execution trace of the AI solution draft process.

💰 Cost estimation:

  • Model: GPT-5.5
  • Provider: OpenAI
  • Public pricing estimate: $6.701059
  • Token usage: 197,617 input, 14,493 output, 4,072,704 cache read

🤖 Models used:

  • Tool: OpenAI Codex
  • Requested: gpt-5.5
  • Model: GPT-5.5 (gpt-5.5)

📎 Log file uploaded as Repository (2 chunks) (170859KB)


Now working session is ended, feel free to review and add any feedback on the solution draft.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

🔄 Auto-restart triggered (iteration 4)

Reason: CI failures detected

Starting new session to address the issues.


Auto-restart-until-mergeable mode is active. This run will stop after 5 restart iterations.

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

CI/lint investigation update.

Root cause from upstream failing Check / Lint run 25723666228 on effe1264b49bc354f324dc279fccd82c074ed3b6:

  • jscpd reported duplicate code in src/web/terminal.ts, src/web/api-database.ts, and src/docker-git/menu-labeled-env.ts.
  • Those duplicate regions are already removed on fork branch konard/ProverCoderAI-docker-git:renovate/all.

Additional boundary invariant fixed on fork commit b05bf399468c92f1b767bbec71366610bd8a9090:

  • Missing docker executable from Command.spawn("docker info") is normalized to the existing typed DockerAccessError / DaemonUnavailable domain error instead of leaking raw @effect/platform SystemError text.
  • Added a regression test for this shell boundary.

Verified locally:

  • bun run lint
  • bun run lint:effect
  • bun run --cwd packages/lib vitest run tests/shell/docker-access.test.ts
  • bun run --cwd packages/api test
  • Also verified earlier full check, test, build, API build/typecheck/lint, and check:dist-deps-prune passes; logs are saved under ci-logs/ in the working tree.

Fork CI on commit b05bf399468c92f1b767bbec71366610bd8a9090:

Blocker: PR #265 currently tracks ProverCoderAI/docker-git:renovate/all at effe1264b49bc354f324dc279fccd82c074ed3b6, while my available branch is konard/ProverCoderAI-docker-git:renovate/all at b05bf399468c92f1b767bbec71366610bd8a9090. A direct push to ProverCoderAI/docker-git:renovate/all fails with HTTP 403 for my token. A maintainer needs to push/cherry-pick b05bf399468c92f1b767bbec71366610bd8a9090 to upstream renovate/all, or retarget/recreate the PR from the fork branch, so the upstream PR checks can run on the fixed head.

SOURCE: n/a

@konard
Copy link
Copy Markdown
Contributor

konard commented May 12, 2026

Final update after syncing the latest upstream/main.

I fetched upstream/main again, merged d9cee20e4c17293878f2a496895b3f860e43ba30 into renovate/all, and pushed the resulting fork head:

  • Fork branch: konard/ProverCoderAI-docker-git:renovate/all
  • Fixed head: ac052fb4f0e4ed7a815c98b937853472e1e6c759
  • Local tree: clean; HEAD == origin/renovate/all

Local verification after the merge:

  • bun run lint
  • bun run lint:effect
  • bun run check
  • bun run test
  • bun run build
  • bun run check:dist-deps-prune
  • git diff --check

Fork CI on ac052fb4f0e4ed7a815c98b937853472e1e6c759:

Note: Checking Dependencies run https://github.com/konard/ProverCoderAI-docker-git/actions/runs/25739408672 was canceled because it hung in actions/checkout@v6 before any project command. The immediate rerun above passed.

The upstream PR still shows the old failing Lint because PR #265 tracks ProverCoderAI/docker-git:renovate/all at effe1264b49bc354f324dc279fccd82c074ed3b6. A direct push to that upstream branch still fails for my token with HTTP 403:

remote: Permission to ProverCoderAI/docker-git.git denied to konard.
fatal: unable to access 'https://github.com/ProverCoderAI/docker-git.git/': The requested URL returned error: 403

Maintainer action needed: fast-forward/cherry-pick ac052fb4f0e4ed7a815c98b937853472e1e6c759 from the fork branch into ProverCoderAI/docker-git:renovate/all, or retarget/recreate the PR from the fork branch, so upstream PR checks run on the fixed head.

SOURCE: n/a

@renovate renovate Bot force-pushed the renovate/all branch from effe126 to f01acfe Compare May 12, 2026 17:50
@renovate renovate Bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies May 12, 2026
@skulidropek
Copy link
Copy Markdown
Member

skulidropek commented May 13, 2026

AI Session Backup

Commit: 6287b12
Status: success
Files: 2 (3.29 MB)
Links: README | Manifest

git status

On branch renovate/all
Your branch is up to date with 'origin/renovate/all'.

nothing to commit, working tree clean

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented May 13, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@skulidropek skulidropek merged commit 257810c into main May 13, 2026
15 checks passed
@renovate renovate Bot deleted the renovate/all branch May 13, 2026 08:48
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.

2 participants