Copilot
Copilot
This PR provides comprehensive documentation addressing the architectural question about why the repository moved away from separate Doctrine infrastructure entities to direct domain mapping with YML configuration (commit 7a339cb). ##...
The `CreatePostController` was violating hexagonal architecture principles by directly using Symfony HTTP response objects and methods, creating tight coupling between the UI layer and infrastructure concerns. ## Problem The original...
Replace collection equality assertions with CollectionAssert.AreEqual - [x] Find all test files with Assert.IsTrue(xxx.IsEqualTo(yyy)) or Assert.IsTrue(xxx.SequenceEqual(yyy)) patterns (55 files, 96 occurrences) - [x] Replace with CollectionAssert.AreEqual(expected, actual) with correct argument...
## Overview This PR implements focused memory allocation optimizations in SSH.NET's core client classes to reduce GC pressure and improve performance, particularly for file upload operations. ## Changes ### 1....
Adds a modular exponentiation example guest program and corresponding benchmark, following the pattern established by sha2-chain. ## Implementation - **Guest program** (`examples/modexp-chain/`): Implements chained modexp operations using `num-bigint`'s `modpow` method....
This PR completely restructures the codebase to use Next.js as a unified full-stack application, replacing the previous separate Create React App client and Express server architecture. ## Major Changes ###...
Extends CI matrix to build, test, and publish Python 3.14 packages alongside existing 3.10-3.13 versions on Linux platforms. Windows continues to support up to Python 3.13 due to pyenv-win limitations....
Identified and fixed inefficient collection operations creating unnecessary intermediate allocations. Documented critical N+1 query problem in monster data access layer. ## Changes **Collection operation optimizations:** - Combined consecutive `.map()` calls...
This PR modernizes the CI infrastructure to use current Xcode and Swift versions, addressing outdated runners, actions, and device simulators. ## Changes Made ### CI Workflow Improvements - **Updated GitHub...
## Overview This PR addresses issue #XX by refactoring the project to support standalone ForwardAuth deployment, making it production-ready for Kubernetes and Docker environments without relying on Traefik's experimental plugin...