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

Introduced SMTP notification #5535

Merged
merged 33 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b11f2cc
Introduced SMTP notification
robert-ulbrich-mercedes-benz Jul 1, 2024
3296a1a
Fixing lint issues
robert-ulbrich-mercedes-benz Jul 3, 2024
d6bc1a4
Fixing tests
robert-ulbrich-mercedes-benz Jul 4, 2024
a740c8e
Fixing lint
robert-ulbrich-mercedes-benz Jul 4, 2024
4be6a0e
Fixing lint
robert-ulbrich-mercedes-benz Jul 5, 2024
4353452
Fix linting issues
robert-ulbrich-mercedes-benz Jul 15, 2024
9aa1b3e
Merge branch 'refs/heads/master' into smtp-notifications
robert-ulbrich-mercedes-benz Jul 29, 2024
3d74ea9
Merge branch 'refs/heads/master' into smtp-notifications
robert-ulbrich-mercedes-benz Aug 16, 2024
cada9d8
Fix go mod
robert-ulbrich-mercedes-benz Aug 16, 2024
fccc16a
Merge branch 'refs/heads/master' into smtp-notifications
robert-ulbrich-mercedes-benz Sep 5, 2024
73bb305
Fixing location of no sec comment
robert-ulbrich-mercedes-benz Sep 5, 2024
c7901bc
Removing unused import
robert-ulbrich-mercedes-benz Sep 5, 2024
b265304
Running gci for file
robert-ulbrich-mercedes-benz Sep 9, 2024
eda4d3e
Implemented connection reuse for smtp emailer
robert-ulbrich-mercedes-benz Sep 10, 2024
445b979
Introduced SMTP notification
robert-ulbrich-mercedes-benz Jul 1, 2024
a720425
Fixing lint issues
robert-ulbrich-mercedes-benz Jul 3, 2024
0bf9654
Fixing tests
robert-ulbrich-mercedes-benz Jul 4, 2024
f513352
Fixing lint
robert-ulbrich-mercedes-benz Jul 4, 2024
1a0de4a
Fixing lint
robert-ulbrich-mercedes-benz Jul 5, 2024
dc88a99
Fix linting issues
robert-ulbrich-mercedes-benz Jul 15, 2024
b54a932
Fix go mod
robert-ulbrich-mercedes-benz Aug 16, 2024
5eac9ea
Fixing location of no sec comment
robert-ulbrich-mercedes-benz Sep 5, 2024
0926604
Removing unused import
robert-ulbrich-mercedes-benz Sep 5, 2024
9d72fac
Running gci for file
robert-ulbrich-mercedes-benz Sep 9, 2024
d995db7
Implemented connection reuse for smtp emailer
robert-ulbrich-mercedes-benz Sep 10, 2024
f04c0fd
Merge remote-tracking branch 'origin/smtp-notifications' into smtp-no…
robert-ulbrich-mercedes-benz Sep 11, 2024
5da05e1
Adapting interface of smtp_emailer
robert-ulbrich-mercedes-benz Sep 11, 2024
1050f4b
Fixing linter issue
robert-ulbrich-mercedes-benz Sep 12, 2024
6d0e4bf
Adding unit tests
robert-ulbrich-mercedes-benz Sep 12, 2024
39369ba
Merge branch 'refs/heads/master' into smtp-notifications
robert-ulbrich-mercedes-benz Sep 12, 2024
8be8c46
Applying gci
robert-ulbrich-mercedes-benz Sep 13, 2024
64f3333
Faking mockery generation
robert-ulbrich-mercedes-benz Sep 16, 2024
50ce320
Using mocker 1.0.1
robert-ulbrich-mercedes-benz Sep 16, 2024
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
2 changes: 1 addition & 1 deletion flyteadmin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ require (
github.com/wolfeidau/humanhash v1.1.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0
go.opentelemetry.io/otel v1.24.0
golang.org/x/net v0.27.0
golang.org/x/oauth2 v0.16.0
golang.org/x/time v0.5.0
google.golang.org/api v0.155.0
Expand Down Expand Up @@ -189,7 +190,6 @@ require (
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/term v0.22.0 // indirect
Expand Down
Loading
Loading