Add commitlint hooks and update dependencies with toolchain bump#17
Merged
Conversation
…rde, bump toolchain to 1.93 - Pin all dependency versions to exact semver in Cargo.toml and agent-discourse crate - Replace serde_yaml with yaml_serde (0.10.4) across workspace - Update yaml deserialization calls in src/config.rs to use yaml_serde - Bump Rust toolchain from 1.92 to 1.93
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.
This pull request introduces support for Conventional Commits throughout the repository and standardizes YAML serialization/deserialization by switching from
serde_yamltoyaml_serde. It also updates several dependencies to their latest versions and bumps the Rust toolchain version. The most important changes are grouped below:Conventional Commits and Commit Linting Integration:
.commitlintrc.jsonto enforce Conventional Commits using@commitlint/config-conventional.package.jsonand.husky/commit-msgto automatically lint commit messages on commit. [1] [2].github/skills/commit-changes/. [1] [2]Dependency and Toolchain Updates:
Cargo.tomlandcrates/agent-discourse/Cargo.tomlto their latest patch/minor versions, improving compatibility and stability. [1] [2]rust-toolchain.toml.YAML Serialization/Deserialization Standardization:
serde_yamlwithyaml_serdefor YAML parsing and serialization in both the main codebase and tests (src/config.rs,crates/agent-discourse/src/actor.rs,crates/agent-discourse/src/bin/main.rs). [1] [2] [3] [4] [5] [6]