Update module github.com/lib/pq to v1.11.1 - abandoned#194
Open
renovate[bot] wants to merge 26 commits intomainfrom
Open
Update module github.com/lib/pq to v1.11.1 - abandoned#194renovate[bot] wants to merge 26 commits intomainfrom
renovate[bot] wants to merge 26 commits intomainfrom
Conversation
Enhance the Kubernetes controller release workflow and add OCM component version creation. Key changes: - Add component version creation to controller build/release pipeline - Add version_conflict_policy input to publish workflow - Move inline bash scripts to external scripts for maintainability and add unit tests - Add shared script utilities with npm-based YAML parsing - move buildx from workflow to Taskfile - Add image digest field to Helm values.yaml and manager.yaml - Add push/verify tasks to Taskfile - Fix RC tag idempotency with proper tag fetching - Remove skopeo installation (pre-installed on ubuntu-latest) - Remove redundant status-check job and cleanup step On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
Author
|
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
…r). Add cliff-toml for controller On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
Enhance controller release v2
db10638 to
1db2c1e
Compare
…ller to cliff.toml On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
correct sparse checkout and add small installation section for contro…
1db2c1e to
9af1a7c
Compare
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
remove sparse checkout for verify chart
9af1a7c to
ec92cad
Compare
…or "Verify Chart" and not found /.env files during sourcing On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
introduce .dotenv to avoid racing conditions (see failing workflows f…
ec92cad to
4c56c35
Compare
…th local ones On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
remove dotenv, but keep method for replacing global too env values wi…
4c56c35 to
00a9e98
Compare
…variables. On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
…variables. On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
don't trust sourcing as task sh evalution may use empty/partial task …
00a9e98 to
e3cbce3
Compare
…g. running on forks) On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
enable repository to be configured vor test and productive values (e.…
e3cbce3 to
f449789
Compare
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
Enhance controller release v2
f449789 to
22be183
Compare
…" in case on running on a fork. On-behalf-of: Gerald Morrison (SAP) <gerald.morrison@sap.com> Signed-off-by: Gerald Morrison (SAP) <gerald.morrison@sap.com>
make RC and final flow both use IMAGE_REPOSITORY="${IMAGE_REPOSITORY}…
22be183 to
481c960
Compare
Author
Autoclosing SkippedThis PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
v1.10.9→v1.11.1v1.11.2Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
lib/pq (github.com/lib/pq)
v1.11.1Compare Source
This fixes two regressions present in the v1.11.0 release:
Fix build on 32bit systems, Windows, and Plan 9 (#1253).
Named []byte types and pointers to []byte (e.g.
*[]byte,json.RawMessage)would be treated as an array instead of bytea (#1252).
v1.11.0Compare Source
This version of pq requires Go 1.21 or newer.
pq now supports only maintained PostgreSQL releases, which is PostgreSQL 14 and
newer. Previously PostgreSQL 8.4 and newer were supported.
Features
The
pq.Error.Error()text includes the position of the error (if reportedby PostgreSQL) and SQLSTATE code (#1219, #1224):
The
pq.Error.ErrorWithDetail()method prints a more detailed multilinemessage, with the Detail, Hint, and error position (if any) (#1219):
Add
Config,NewConfig(), andNewConnectorConfig()to supply connectiondetails in a more structured way (#1240).
Support
hostaddrand$PGHOSTADDR(#1243).Support multiple values in
host,port, andhostaddr, which are eachtried in order, or randomly if
load_balance_hosts=randomis set (#1246).Support
target_session_attrsconnection parameter (#1246).Support
sslnegotiationto use SSL without negotiation (#1180).Allow using a custom
tls.Config, for example for encrypted keys (#1228).Add
PQGO_DEBUG=1print the communication with PostgreSQL to stderr, to aidin debugging, testing, and bug reports (#1223).
Add support for NamedValueChecker interface (#1125, #1238).
Fixes
Match HOME directory lookup logic with libpq: prefer $HOME over /etc/passwd,
ignore ENOTDIR errors, and use APPDATA on Windows (#1214).
Fix
sslmode=verify-caverifying the hostname anyway when connecting to a DNSname (rather than IP) (#1226).
Correctly detect pre-protocol errors such as the server not being able to fork
or running out of memory (#1248).
Fix build with wasm (#1184), appengine (#745), and Plan 9 (#1133).
Deprecate and type alias
pq.NullTimetosql.NullTime(#1211).Enforce integer limits of the Postgres wire protocol (#1161).
Accept the
passfileconnection parameter to overridePGPASSFILE(#1129).Fix connecting to socket on Windows systems (#1179).
Don't perform a permission check on the .pgpass file on Windows (#595).
Warn about incorrect .pgpass permissions (#595).
Don't set extra_float_digits (#1212).
Decode bpchar into a string (#949).
Fix panic in Ping() by not requiring CommandComplete or EmptyQueryResponse in
simpleQuery() (#1234)
Recognize bit/varbit (#743) and float types (#1166) in ColumnTypeScanType().
Accept
PGGSSLIBandPGKRBSRVNAMEenvironment variables (#1143).Handle ErrorResponse in readReadyForQuery and return proper error (#1136).
CopyIn() and CopyInSchema() now work if the list of columns is empty, in which
case it will copy all columns (#1239).
Treat nil []byte in query parameters as nil/NULL rather than
""(#838).Accept multiple authentication methods before checking AuthOk, which improves
compatibility with PgPool-II (#1188).
Configuration
📅 Schedule: Branch creation - Only on Sunday ( * * * * 0 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.