fix: remove WIP folder from tracking and strengthen gitignore#420
Merged
danielmeppiel merged 1 commit intomainfrom Mar 23, 2026
Merged
fix: remove WIP folder from tracking and strengthen gitignore#420danielmeppiel merged 1 commit intomainfrom
danielmeppiel merged 1 commit intomainfrom
Conversation
The WIP/ directory was accidentally committed to main. Remove the tracked file and update the gitignore entry from 'WIP' to 'WIP/' for an explicit directory-only match, ensuring no WIP contents are ever pushed regardless of filename. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Removes an accidentally committed WIP/ handbook markdown file from the repository and updates .gitignore to explicitly ignore the WIP/ directory going forward.
Changes:
- Deleted
WIP/agentic-sdlc-for-practitioners-handbook.mdfrom version control. - Updated
.gitignoreignore rule fromWIPtoWIP/(directory-only match).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
WIP/agentic-sdlc-for-practitioners-handbook.md |
Removes the tracked WIP handbook content from the repo tip. |
.gitignore |
Strengthens ignore rule to explicitly ignore the WIP/ directory. |
Copilot AI
added a commit
that referenced
this pull request
Mar 23, 2026
Add a PyInstaller runtime hook that sets SSL_CERT_FILE to the bundled certifi CA bundle when running as a frozen binary. This fixes SSL certificate verification failures on systems where the build machine's Python framework path does not exist (e.g. macOS without python.org Python installed). - Create build/hooks/runtime_hook_ssl_certs.py runtime hook - Register runtime hook and add certifi to hiddenimports in apm.spec - Add comprehensive unit tests for all code paths - Respects user-set SSL_CERT_FILE and REQUESTS_CA_BUNDLE overrides Fixes #420 Co-authored-by: danielmeppiel <51440732+danielmeppiel@users.noreply.github.com> Agent-Logs-Url: https://github.com/microsoft/apm/sessions/f1f91d71-7af2-48af-b7bd-3f5492a62f99
7 tasks
danielmeppiel
added a commit
that referenced
this pull request
Mar 24, 2026
#429) * Initial plan * fix: configure SSL certificates in PyInstaller binary via runtime hook Add a PyInstaller runtime hook that sets SSL_CERT_FILE to the bundled certifi CA bundle when running as a frozen binary. This fixes SSL certificate verification failures on systems where the build machine's Python framework path does not exist (e.g. macOS without python.org Python installed). - Create build/hooks/runtime_hook_ssl_certs.py runtime hook - Register runtime hook and add certifi to hiddenimports in apm.spec - Add comprehensive unit tests for all code paths - Respects user-set SSL_CERT_FILE and REQUESTS_CA_BUNDLE overrides Fixes #420 Co-authored-by: danielmeppiel <51440732+danielmeppiel@users.noreply.github.com> Agent-Logs-Url: https://github.com/microsoft/apm/sessions/f1f91d71-7af2-48af-b7bd-3f5492a62f99 * fix: address code review feedback on test robustness and changelog format Co-authored-by: danielmeppiel <51440732+danielmeppiel@users.noreply.github.com> Agent-Logs-Url: https://github.com/microsoft/apm/sessions/f1f91d71-7af2-48af-b7bd-3f5492a62f99 * fix: correct SSL hook docstring and changelog PR number - Docstring claimed both SSL_CERT_FILE and SSL_CERT_DIR are set, but only SSL_CERT_FILE is configured (which is correct and sufficient) - Changelog entry referenced #420 instead of #429 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: danielmeppiel <51440732+danielmeppiel@users.noreply.github.com> Co-authored-by: danielmeppiel <dmeppiel@microsoft.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Merged
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.
The
WIP/directory was accidentally committed to main (contains internal handbook markdown). This removes the tracked file and updates the gitignore entry fromWIPtoWIP/for an explicit directory-only match, ensuring no WIP contents are ever pushed regardless of filename.