fix(notify)!: resolve test & linter issues and fix dependencies compatibility #847
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.
Summary
BREAKING CHANGE: This commit introduces significant changes to the FCM and Matrix services due to breaking changes in their respective dependencies. These changes may affect existing implementations:
FCM Service:
github.com/appleboy/go-fcm
packageDataKey
andRetriesKey
New
function signature fromfunc(string) (*Service, error)
tofunc(context.Context, ...Option) (*Service, error)
Matrix Service:
mautrix
packageSendMessageEvent
method signature to includecontext.Context
parameterAdditional changes:
Option
,WithCredentialsFile
,WithHTTPClient
,WithProjectID
This commit aims to maintain compatibility with the latest versions of our dependencies while improving code quality. Users of the FCM and Matrix services will need to update their implementations to match the new function signatures and removed keys.
Fixes #837.