diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9af5e10..cfc51df 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ # Licensed under the MIT License. See LICENSE file in the project root for # full license information. -# https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file ###################################################################### # Monitor Go module dependency updates @@ -28,7 +28,7 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "go.mod" + prefix: "Go Dependency" - package-ecosystem: "gomod" directory: "/" @@ -45,7 +45,7 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "go.mod" + prefix: "Go Dependency" ###################################################################### # Monitor GitHub Actions dependency updates @@ -67,7 +67,7 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "ghaw" + prefix: "CI Dependency" - package-ecosystem: "github-actions" directory: "/" @@ -85,4 +85,5 @@ updates: allow: - dependency-type: "all" commit-message: - prefix: "ghaw" + prefix: "CI Dependency" + diff --git a/.golangci.yml b/.golangci.yml index a6067f5..4bc9eaf 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -17,10 +17,6 @@ linters: - gofmt - revive - gosec - - # Deprecated linter, but still functional as of golangci-lint v1.39.0. - # See https://github.com/atc0005/go-ci/issues/302 for more information. - - maligned - nakedret - prealloc - exportloopref @@ -41,10 +37,6 @@ linters-settings: # minimal code complexity to report, 30 by default (but we recommend 10-20) min-complexity: 15 - maligned: - # print struct with more effective memory layout or not, false by default - suggest-new: true - nakedret: # make an issue if func has more lines of code than this setting and it has naked returns; default is 30 max-func-lines: 2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e41b49..1501447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,38 @@ The following types of changes will be recorded in this file: - placeholder +## [v2.10.0] - 2024-02-22 + +### Added + +- (GH-255) Add `IsSublte` and `HorizontalAlignment` to `Element` + - credit: [@codello](https://github.com/codello) + +### Changed + +#### Dependency Updates + +- (GH-256) Update Dependabot PR prefixes + +## [v2.9.0] - 2024-01-25 + +### Added + +- (GH-241) Add proxy server examples +- (GH-251) Initial support for toggling visibility + +### Changed + +#### Dependency Updates + +- (GH-238) ghaw: bump actions/checkout from 3 to 4 +- (GH-248) ghaw: bump github/codeql-action from 2 to 3 +- (GH-236) Update Dependabot config to monitor both branches + +#### Other + +- (GH-244) Update Go Doc comment formatting + ## [v2.8.0] - 2023-07-21 ### Added @@ -491,7 +523,9 @@ The following types of changes will be recorded in this file: - add initial functionality of sending messages to MS Teams channel -[Unreleased]: https://github.com/atc0005/go-teams-notify/compare/v2.8.0...HEAD +[Unreleased]: https://github.com/atc0005/go-teams-notify/compare/v2.10.0...HEAD +[v2.10.0]: https://github.com/atc0005/go-teams-notify/releases/tag/v2.10.0 +[v2.9.0]: https://github.com/atc0005/go-teams-notify/releases/tag/v2.9.0 [v2.8.0]: https://github.com/atc0005/go-teams-notify/releases/tag/v2.8.0 [v2.7.1]: https://github.com/atc0005/go-teams-notify/releases/tag/v2.7.1 [v2.7.0]: https://github.com/atc0005/go-teams-notify/releases/tag/v2.7.0