-
Notifications
You must be signed in to change notification settings - Fork 0
Bump mkdocs-git-authors-plugin from 0.9.4 to 0.9.5 #166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Advances submodule to integrate recent changes and improvements
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [mkdocs-git-authors-plugin](https://github.com/timvink/mkdocs-git-authors-plugin) from 0.9.4 to 0.9.5. - [Release notes](https://github.com/timvink/mkdocs-git-authors-plugin/releases) - [Commits](timvink/mkdocs-git-authors-plugin@v0.9.4...v0.9.5) --- updated-dependencies: - dependency-name: mkdocs-git-authors-plugin dependency-version: 0.9.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.6.11 to 9.6.14. - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.6.11...9.6.14) --- updated-dependencies: - dependency-name: mkdocs-material dependency-version: 9.6.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [mkdocs-git-revision-date-localized-plugin](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin) from 1.4.5 to 1.4.7. - [Release notes](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases) - [Commits](timvink/mkdocs-git-revision-date-localized-plugin@v1.4.5...v1.4.7) --- updated-dependencies: - dependency-name: mkdocs-git-revision-date-localized-plugin dependency-version: 1.4.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [mkdocs-monorepo-plugin](https://github.com/backstage/mkdocs-monorepo-plugin) from 1.1.0 to 1.1.2. - [Changelog](https://github.com/backstage/mkdocs-monorepo-plugin/blob/master/docs/CHANGELOG.md) - [Commits](https://github.com/backstage/mkdocs-monorepo-plugin/commits) --- updated-dependencies: - dependency-name: mkdocs-monorepo-plugin dependency-version: 1.1.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Upgrades the checkout action from v3 to v4 across different GitHub workflows for improved performance and compatibility. Ensures the latest features and security updates are utilized.
Synchronizes the submodule reference to include recent changes for improved functionality and performance. No specific issues addressed.
Adds a script to analyze GitHub Actions in preparation for repository reorganization, focusing on extracting parameters and generating reports. Structures a six-layer architecture to improve capability management, including atomic axioms, operational templates, and self-awareness features. Lays groundwork for migration tasks and transformation phases.
Introduce shell and Python scripts to facilitate the automatic generation of GitHub Actions from FCM (Formal Conceptual Model) files. Implement validation checks to ensure alignment between generated actions and their source FCMs. Enhance project structure by including necessary metadata and manifest management. This update supports improving workflow automation and validation processes.
Adds detailed documentation about the implementation of a six-layer FCM bridge architecture, enhancing architectural purity and maintaining GitHub Actions compatibility. Includes setup instructions and migration guidance from traditional actions. Introduces new sections in the getting-started guide and creates a dedicated FCM bridge architecture guide. Updates the meta-level and README to reflect these changes and the evolution of the repository structure. Emphasizes the automated generation of actions from FCM sources to ensure consistency and eliminate manual configuration drift.
FCM Updates
Introduces a new test harness to orchestrate unit, integration, end-to-end, and purity tests for the FCM-to-GitHub bridge system. Enhances validation of action generation and structure, ensures action parity with existing ones, and tests architectural purity. Includes tests for the FCM Parser and Action Generator components. Fixes bug preventing proper test execution without Python. Ensures accurate action and sync file generation with semantic validation in GitHub Actions workflows. Relates to issue of improving action reliability and coverage.
Refactors test status icon handling for robustness. Improves YAML parsing and error handling for clarity. Introduces a README for the bridge testing infrastructure. Expands CI workflow to run on multiple branches. Updates dependencies for improved caching and execution. Facilitates better testing and maintenance. Relates to Issue #123
Improves test infrastructure and updates workflow
Adds steps to configure Git user and safe directory settings for GitHub Actions workflows. Enhances compatibility and avoids potential permission issues during automated tasks. Relates to CI/CD improvements.
Reformats Python and JavaScript code for readability and consistency Improves test result comments with enhanced details on test execution Ensures consistent code indentation across the workflow script
Refines GitHub Action validation and test result reporting
Resolves git permission error when adding files in GitHub Actions: - Added git config --add safe.directory to mark workspace as safe - Fixes 'insufficient permission for adding an object' error
fix: Add safe directory config to commit operations test workflow
The action was only adding /github/workspace but also needs to add the current working directory to handle different mount points in Docker containers. This resolves the git permission error when running in GitHub Actions.
fix: Add current directory to safe directories in commit operations
Resolves Docker container file ownership issues that cause git permission errors when the container creates files with different ownership than the GitHub Actions runner. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add explicit branch patterns to ensure workflow triggers on develop/bridge-tests - Add workflow_dispatch with debug input for manual testing - This should resolve the issue where workflow wasn't triggering on pushes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
The release operations composite action defaults to 'main' branch but the test environment uses 'test-release' branch. Added target_branch parameter to use the correct existing branch. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
The composite action has its own checkout step that resets repository state, losing the test-release branch. Changed target_branch to develop/bridge-tests which exists after the composite action's checkout. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Instead of hardcoding target branches, the action now: - Uses current branch when target_branch doesn't exist - Falls back to common branches (main, master, develop, staging) - Uses remote branches as last resort - Provides clear error messages with available branches This makes the action work in any repository context automatically. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Added logic to detect existing release branches and recreate them for testing: - Checks for local and remote branch existence - Deletes existing branches before recreating - Uses force push to overwrite remote test branches - Prevents 'non-fast-forward' push errors in test environments 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Improves branch management in workflows
Added comprehensive cleanup to remove test artifacts: - Deletes local test release branch (release/0.2.0-test) - Deletes remote test release branch - Removes test tags (v0.1.0-test, v0.2.0-test) - Uses 'if: always()' to ensure cleanup runs even on test failure - Safely switches branches before deletion Prevents repository pollution with temporary test branches and tags. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
feat: Add cleanup step for test release branches and tags
Updated Dependabot configuration to align with branching strategy: - Changed target-branch from main to staging for all ecosystems - Added labels to identify develop-related dependency updates - Added assignee for automatic assignment Note: Dependabot doesn't support custom branch name prefixes like 'develop/patch-'. It will still create branches with pattern 'dependabot/<ecosystem>/<package>-<version>' but now these PRs will target staging instead of main. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
feat: Configure Dependabot to target staging branch
…actions/setup-python-5 Bump actions/setup-python from 4 to 5
…rial-9.6.14 Bump mkdocs-material from 9.6.11 to 9.6.14
…revision-date-localized-plugin-1.4.7 Bump mkdocs-git-revision-date-localized-plugin from 1.4.5 to 1.4.7
…repo-plugin-1.1.2 Bump mkdocs-monorepo-plugin from 1.1.0 to 1.1.2
…thors-plugin-0.9.5
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
Bumps mkdocs-git-authors-plugin from 0.9.4 to 0.9.5.
Release notes
Sourced from mkdocs-git-authors-plugin's releases.
Commits
cb1b452bump to 0.9.59277f8cIssue #90 | Sort page authors by page contribution, not site contributionYou can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)