Skip to content
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

Sync latest changes from master branch #266

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -28,7 +28,7 @@ updates:
allow:
- dependency-type: "all"
commit-message:
prefix: "go.mod"
prefix: "Go Dependency"

- package-ecosystem: "gomod"
directory: "/"
Expand All @@ -45,7 +45,7 @@ updates:
allow:
- dependency-type: "all"
commit-message:
prefix: "go.mod"
prefix: "Go Dependency"

######################################################################
# Monitor GitHub Actions dependency updates
Expand All @@ -67,7 +67,7 @@ updates:
allow:
- dependency-type: "all"
commit-message:
prefix: "ghaw"
prefix: "CI Dependency"

- package-ecosystem: "github-actions"
directory: "/"
Expand All @@ -85,4 +85,5 @@ updates:
allow:
- dependency-type: "all"
commit-message:
prefix: "ghaw"
prefix: "CI Dependency"

8 changes: 0 additions & 8 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading