Skip to content

Commit 460a75a

Browse files
author
Dimy Jeannot
committed
fix: hardening
1 parent 7b9dffd commit 460a75a

File tree

68 files changed

+1158
-668
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1158
-668
lines changed

apps/clients/public/cli/v2alpha/oeco/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openecosystems/ecosystem/apps/clients/public/cli/v2alpha/oeco
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require (
66
connectrpc.com/connect v1.18.1

apps/web/public/docs/v2alpha/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openecosystems/ecosystem/apps/web/public/docs/v2alpha/oeco
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require (
66

apps/workloads/poc/i18n/v1alpha/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openecosystems/ecosystem/apps/web/poc/i18n/v1alpha
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require (
66
github.com/BurntSushi/toml v1.5.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/openecosystems/ecosystem/apps/workloads/poc/wasm/v2alpha/wasm
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require github.com/tetratelabs/wazero v1.8.1

apps/workloads/public/cryptography/v2alpha/encryption/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openecosystems/ecosystem/apps/workloads/public/cryptography/v2alpha/encryption
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require (
66
connectrpc.com/connect v1.18.1

apps/workloads/public/dns/v2alpha/dynamic-dns/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openecosystems/ecosystem/apps/workloads/public/dns/v2alpha/dynamic-dns
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require github.com/openecosystems/ecosystem/go/oeco-sdk/v2beta v0.19.3
66

apps/workloads/public/ecosystem/v2alpha/ecosystem/certificate/sign.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
type SignCertificateListener struct{}
1616

1717
// GetConfiguration provides the listener configuration for SignCertificateListener, including subject, queue, and jetstream settings.
18-
func (l *SignCertificateListener) GetConfiguration() *natsnodev1.ListenerConfiguration {
18+
func (l *SignCertificateListener) Configure() *natsnodev1.ListenerConfiguration {
1919
handler := cryptographyv2alphapb.CertificateServiceHandler{}
2020
return handler.GetSignCertificateConfiguration()
2121
}

apps/workloads/public/ecosystem/v2alpha/ecosystem/ecosystem/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
type CreateEcosystemListener struct{}
1919

2020
// GetConfiguration returns the listener configuration for the CreateEcosystemListener, including entity, subject, and queue details.
21-
func (l *CreateEcosystemListener) GetConfiguration() *natsnodev1.ListenerConfiguration {
21+
func (l *CreateEcosystemListener) Configure() *natsnodev1.ListenerConfiguration {
2222
handler := ecosystemv2alphapb.EcosystemServiceHandler{}
2323
return handler.GetCreateEcosystemConfiguration()
2424
}

apps/workloads/public/ecosystem/v2alpha/ecosystem/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openecosystems/ecosystem/apps/workloads/public/ecosystem/v2alpha/ecosystem
22

3-
go 1.23.4
3+
go 1.23.11
44

55
require (
66
connectrpc.com/connect v1.18.1

apps/workloads/public/ecosystem/v2alpha/ecosystem/iam/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
type CreateAccountListener struct{}
2121

2222
// GetConfiguration returns the listener configuration for the CreateAccountListener, including entity, subject, and queue details.
23-
func (l *CreateAccountListener) GetConfiguration() *natsnodev1.ListenerConfiguration {
23+
func (l *CreateAccountListener) Configure() *natsnodev1.ListenerConfiguration {
2424
handler := iamv2alphapb.AccountAuthorityServiceHandler{}
2525
return handler.GetCreateAccountAuthorityConfiguration()
2626
}

0 commit comments

Comments
 (0)