Copilot

Results 4682 issues of Copilot

## Problem The `rollup.config.ts` file contained a hard-coded absolute path specific to the original developer's machine: ```typescript const OBSIDIAN_PLUGIN_PATH = path.resolve( '/Users/david/Obsidian/Primary/.obsidian/plugins/obsidian-filename-heading-sync', ); ``` This made the build configuration non-portable...

This PR implements a highly requested feature that allows users to specify which files TO sync rather than only which files to ignore. The plugin now supports both modes: ##...

Thanks for assigning this issue to me. I'm starting to work on it and will keep this PR's description up to date as I form a plan and make progress....

This PR implements CAA (Certificate Authority Authorization) record support in GeoDNS, allowing domain owners to specify which Certificate Authorities are authorized to issue certificates for their domains. ## Changes Made...

The generated markdown documentation was including all members (public, internal, private), making it difficult to understand the actual public API surface. This implements reflection-based filtering to exclude non-public members from...

This PR enables tree fields (`tree_depth`, `tree_path`, `tree_ordering`, and custom tree fields) to be included in `.values()` and `.values_list()` calls while maintaining full backward compatibility. ## Problem Previously, tree fields...

Fixes an issue where using union, intersection, or difference operations on querysets with tree fields would raise errors. The problem manifested in two ways: 1. **Missing parameter error**: `TreeQuery.get_compiler() takes...

When using `TreeQuerySet.as_manager(with_tree_fields=True)`, tree fields (`tree_depth`, `tree_path`, `tree_ordering`) were not available on instances returned by `Model.objects.create()`, forcing users to perform an additional database query to access these fields. ## Problem...

This PR implements `add_related_count()` method for `TreeQuerySet` as a direct replacement for django-mptt's method of the same name, enabling users to migrate from django-mptt while retaining the ability to count...

This PR completes the migration of Diana Mounter's personal website from Gatsby.js to Astro, modernizing the tech stack while preserving all existing functionality and content. ## Overview The migration transforms...