Skip to content

Commit f9fb85a

Browse files
renovate[bot]GabriFedi97
authored andcommitted
chore(deps): update all github action (cloudnative-pg#137)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [dagger/dagger-for-github](https://redirect.github.com/dagger/dagger-for-github) | action | patch | `v8.4.0` → `v8.4.1` | | [go-task/setup-task](https://redirect.github.com/go-task/setup-task) | action | minor | `v1.0.0` → `v1.1.0` | --- ### Release Notes <details> <summary>dagger/dagger-for-github (dagger/dagger-for-github)</summary> ### [`v8.4.1`](https://redirect.github.com/dagger/dagger-for-github/releases/tag/v8.4.1) [Compare Source](https://redirect.github.com/dagger/dagger-for-github/compare/v8.4.0...v8.4.1) #### What's Changed - update README.md for v8.4.0 by [@&#8203;kpenfound](https://redirect.github.com/kpenfound) in [#&#8203;204](https://redirect.github.com/dagger/dagger-for-github/pull/204) - Avoid unnecessary curl by [@&#8203;perwestling](https://redirect.github.com/perwestling) in [#&#8203;206](https://redirect.github.com/dagger/dagger-for-github/pull/206) #### New Contributors - [@&#8203;perwestling](https://redirect.github.com/perwestling) made their first contribution in [#&#8203;206](https://redirect.github.com/dagger/dagger-for-github/pull/206) **Full Changelog**: <dagger/dagger-for-github@v8.4.0...v8.4.1> </details> <details> <summary>go-task/setup-task (go-task/setup-task)</summary> ### [`v1.1.0`](https://redirect.github.com/go-task/setup-task/releases/tag/v1.1.0) [Compare Source](https://redirect.github.com/go-task/setup-task/compare/v1.0.0...v1.1.0) #### What's Changed - feat: add configurable HTTP retry for API requests ([#&#8203;7](https://redirect.github.com/go-task/setup-task/pull/7) by [@&#8203;vmaerten](https://redirect.github.com/vmaerten)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/cloudnative-pg/postgres-extensions-containers). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNjYuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 0505da2 commit f9fb85a

7 files changed

Lines changed: 20 additions & 13 deletions

File tree

dagger/maintenance/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ func (m *Maintenance) GenerateTestingValues(
204204
Name: metadata.Name,
205205
SQLName: metadata.SQLName,
206206
SharedPreloadLibraries: metadata.SharedPreloadLibraries,
207+
PostgresqlParameters: metadata.PostgresqlParameters,
207208
PgImage: pgImage,
208209
Version: version,
209210
CreateExtension: metadata.CreateExtension,

dagger/maintenance/parse.go

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,20 @@ type buildMatrix struct {
2121
type versionMap map[string]map[string]string
2222

2323
type extensionMetadata struct {
24-
Name string `hcl:"name" cty:"name"`
25-
SQLName string `hcl:"sql_name" cty:"sql_name"`
26-
ImageName string `hcl:"image_name" cty:"image_name"`
27-
SharedPreloadLibraries []string `hcl:"shared_preload_libraries" cty:"shared_preload_libraries"`
28-
ExtensionControlPath []string `hcl:"extension_control_path" cty:"extension_control_path"`
29-
DynamicLibraryPath []string `hcl:"dynamic_library_path" cty:"dynamic_library_path"`
30-
LdLibraryPath []string `hcl:"ld_library_path" cty:"ld_library_path"`
31-
BinPath []string `hcl:"bin_path" cty:"bin_path"`
32-
AutoUpdateOsLibs bool `hcl:"auto_update_os_libs" cty:"auto_update_os_libs"`
33-
RequiredExtensions []string `hcl:"required_extensions" cty:"required_extensions"`
34-
CreateExtension bool `hcl:"create_extension" cty:"create_extension"`
35-
Versions versionMap `hcl:"versions" cty:"versions"`
36-
Remain hcl.Body `hcl:",remain"`
24+
Name string `hcl:"name" cty:"name"`
25+
SQLName string `hcl:"sql_name" cty:"sql_name"`
26+
ImageName string `hcl:"image_name" cty:"image_name"`
27+
SharedPreloadLibraries []string `hcl:"shared_preload_libraries" cty:"shared_preload_libraries"`
28+
PostgresqlParameters map[string]string `hcl:"postgresql_parameters" cty:"postgresql_parameters"`
29+
ExtensionControlPath []string `hcl:"extension_control_path" cty:"extension_control_path"`
30+
DynamicLibraryPath []string `hcl:"dynamic_library_path" cty:"dynamic_library_path"`
31+
LdLibraryPath []string `hcl:"ld_library_path" cty:"ld_library_path"`
32+
BinPath []string `hcl:"bin_path" cty:"bin_path"`
33+
AutoUpdateOsLibs bool `hcl:"auto_update_os_libs" cty:"auto_update_os_libs"`
34+
RequiredExtensions []string `hcl:"required_extensions" cty:"required_extensions"`
35+
CreateExtension bool `hcl:"create_extension" cty:"create_extension"`
36+
Versions versionMap `hcl:"versions" cty:"versions"`
37+
Remain hcl.Body `hcl:",remain"`
3738
}
3839

3940
const (

dagger/maintenance/testingvalues.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ type TestingValues struct {
2121
Name string `yaml:"name"`
2222
SQLName string `yaml:"sql_name"`
2323
SharedPreloadLibraries []string `yaml:"shared_preload_libraries"`
24+
PostgresqlParameters map[string]string `yaml:"postgresql_parameters"`
2425
PgImage string `yaml:"pg_image"`
2526
Version string `yaml:"version"`
2627
CreateExtension bool `yaml:"create_extension"`

pg-crash/metadata.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ metadata = {
66
image_name = "pg-crash"
77
licenses = ["BSD-3-Clause"]
88
shared_preload_libraries = ["pg_crash"]
9+
postgresql_parameters = []
910
extension_control_path = []
1011
dynamic_library_path = []
1112
ld_library_path = []

pgaudit/metadata.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ metadata = {
44
image_name = "pgaudit"
55
licenses = ["PostgreSQL"]
66
shared_preload_libraries = ["pgaudit"]
7+
postgresql_parameters = []
78
extension_control_path = []
89
dynamic_library_path = []
910
ld_library_path = []

pgvector/metadata.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ metadata = {
44
image_name = "pgvector"
55
licenses = ["PostgreSQL"]
66
shared_preload_libraries = []
7+
postgresql_parameters = []
78
extension_control_path = []
89
dynamic_library_path = []
910
ld_library_path = []

test/cluster.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ spec:
1010
size: 1Gi
1111

1212
postgresql:
13+
parameters: ($values.postgresql_parameters)
1314
shared_preload_libraries: ($values.shared_preload_libraries)
1415
extensions: ($values.extensions)

0 commit comments

Comments
 (0)