Commit Graph

3790 Commits (17cd36818ca4bab60ec8e9393c4ce3fa80f1c76e)

Author SHA1 Message Date
Oleksandr Redko 17cd36818c Update comments in generated code to align with Go standards 2024-12-21 20:21:32 +02:00
Jack Christensen 24fbe353ed Create changelog for v5.7.2 2024-12-21 09:25:36 -06:00
Jack Christensen 3a1593b25b
Merge pull request #2198 from alexandear/fix-nilness
Handle errors  in generate_certs
2024-12-21 08:27:55 -06:00
Jack Christensen 9d851d7c98 Fix integration benchmarks 2024-12-21 08:22:12 -06:00
Jack Christensen dacffdc7e2
Merge pull request #2196 from alexandear/docs-improve-links
Improve links in README
2024-12-21 08:13:57 -06:00
Jack Christensen bc7c840770
Merge pull request #2195 from LucasHild/master
Add CommitQuery to transaction options
2024-12-21 08:12:58 -06:00
Oleksandr Redko 043685147f Handle errors in generate_certs 2024-12-18 02:31:56 +02:00
Oleksandr Redko 25329273da Improve links in README 2024-12-18 02:02:06 +02:00
Jack Christensen ad87d47089
Merge pull request #2194 from alexandear/refactor/pgconn-tests
Simplify pgconn tests by using T.TempDir
2024-12-17 17:45:16 -06:00
Oleksandr Redko 7cf7bc6054 Simplify pgconn tests by using T.TempDir 2024-12-17 16:09:32 +02:00
Jack Christensen 3e6c719698
Merge pull request #2189 from pankona/update-crypto
Update golang.org/x/crypto v0.27.0 => v0.31.0 to fix vulnerability
2024-12-13 07:54:25 -06:00
Yosuke Akatsuka 5ee33320c6 update golang.org/x/crypto v0.27.0 => v0.31.0 2024-12-12 12:58:14 +00:00
Jack Christensen ac0b46f2f9 Warn not to create table and use it in the same batch
fixes https://github.com/jackc/pgx/issues/2182
2024-12-05 16:30:48 -06:00
Jack Christensen e3c81cc153
Merge pull request #2169 from thedolphin/master
Switch from ExecParams to Exec in ValidateConnectTargetSessionAttrs
2024-11-28 18:09:29 -06:00
Alexander Rumyantsev 4b7e9942b2 Switch from ExecParams to Exec in ValidateConnectTargetSessionAttrs functions 2024-11-19 19:42:49 +03:00
Jack Christensen b9e2b20fb1
Merge pull request #2162 from evellior/patch-1
Update pgxpool.ParseConfig documentation
2024-11-05 18:14:46 -06:00
Peyton Foley 06a0abb75e
Update pgxpool.ParseConfig documentation
Added default values and example of valid duration string to inline documentation.
2024-11-05 03:09:43 +08:00
Jack Christensen c76a650f75 Improve documentation for QueryExecModes
https://github.com/jackc/pgx/issues/2157
2024-10-29 19:36:33 -05:00
Jack Christensen f57b2854f8
Merge pull request #2151 from ludusrusso/fix-2146
handling double pointer on sql.Scanner interface when scanning rows
2024-10-22 18:52:46 -05:00
Ludovico Russo 5c9b565116 fix: #2146
[![Open Source Saturday](https://img.shields.io/badge/%E2%9D%A4%EF%B8%8F-open%20source%20saturday-F64060.svg)](https://www.meetup.com/it-IT/Open-Source-Saturday-Milano/)

Co-authored-by: Alessio Izzo <alessio.izzo86@gmail.com>
2024-10-19 15:43:56 +02:00
Jack Christensen 2ec900454b
Merge pull request #2145 from grachevko/string
Implement pgtype.UUID.String()
2024-10-09 08:46:03 -05:00
Konstantin Grachev 8723855d95
Implement pgtype.UUID.String() 2024-10-09 14:22:10 +03:00
Jack Christensen 3f84e891de
Merge pull request #2142 from jackc/add-xid8
Add xid8 type
2024-10-08 19:04:07 -05:00
Jack Christensen cc05954369
Merge pull request #2138 from zenkovev/message_body_size_limit
add message body size limits in frontend and backend
2024-10-05 12:35:36 -05:00
Jack Christensen 123b59a57e Ensure planning encodes and scans cannot infinitely recurse
https://github.com/jackc/pgx/issues/2141
2024-10-05 12:20:50 -05:00
zene 10e11952bd changed style of two comments 2024-10-05 19:54:02 +03:00
Jack Christensen 32a6b1b200 Skip xid8 test on PG < 13 and CRDB 2024-10-05 10:44:13 -05:00
Jack Christensen f0783c6fbe Add xid8 type
https://github.com/jackc/pgx/discussions/2137
2024-10-05 10:16:42 -05:00
zene 0290507ff2 remove global atomics 2024-10-04 09:26:37 +03:00
zene 8f8470edaf add message body size limits in frontend and backend 2024-09-27 15:17:47 +03:00
Jack Christensen a95cfbb433
Merge pull request #2129 from s-montigny-desautels/fix/timestamp-json-unmarshal
Fix pgtype.Timestamp json unmarshal
2024-09-24 17:47:28 -05:00
Shean de Montigny-Desautels 7803ec3661
Fix pgtype.Timestamp json unmarshal
Add the missing 'Z' at the end of the timestamp string, so it can be
parsed as timestamp in the RFC3339 format.
2024-09-23 18:12:32 -04:00
Lucas Hild 64ca07e31b Add commit query to tx options 2024-09-23 16:46:58 +02:00
Jack Christensen fd0c65478e Fix prepared statement already exists on batch prepare failure
When a batch successfully prepared some statements, but then failed to
prepare others, the prepared statements that were successfully prepared
were not properly cleaned up. This could lead to a "prepared statement
already exists" error on subsequent attempts to prepare the same
statement.

https://github.com/jackc/pgx/issues/1847#issuecomment-2347858887
2024-09-13 08:03:37 -05:00
Jack Christensen 672c4a3a24 Release v5.7.1 2024-09-10 07:25:07 -05:00
Jack Christensen f8a5a5c9e3 Update golang.org/x/crypto and golang.org/x/text 2024-09-10 07:17:03 -05:00
Jack Christensen ab36c2c0dd Upgrade puddle to v2.2.2
This removes the import of nanotime via linkname.
2024-09-10 07:11:44 -05:00
Jack Christensen ce66b1dae4 Fix data race with TraceLog.Config initialization
https://github.com/jackc/pgx/pull/2120
2024-09-10 07:06:39 -05:00
Jack Christensen d1205a6dbc Release v5.7.0 2024-09-07 10:23:34 -05:00
Jack Christensen 97d20ccfad
Merge pull request #2115 from ninedraft/sql-err-no-rows
Use sql.ErrNoRows as value for pgx.ErrNoRows
2024-08-26 07:40:46 -05:00
Jack Christensen e9bd382c51
Merge pull request #2114 from jennifersp/master
add byte length check to uint32
2024-08-26 07:28:47 -05:00
Jack Christensen 603f2337d6
Merge pull request #2113 from mateuszkowalke/master
Add comment for pgtype.Interval struct
2024-08-26 07:28:29 -05:00
merlin 035bbbe0cb
Use sql.ErrNoRows as value for pgx.ErrNoRows 2024-08-26 14:01:37 +03:00
jennifersp 73bbced270 add byte length check to uint32 2024-08-23 16:17:07 -07:00
mateuszkowalke 4171f554d4 Add additional info for nullable pgtype types
Additional information warns about using nullable types being
used as parameters to query with Valid set to false.
2024-08-23 15:15:40 +02:00
Jack Christensen b197994b1f
Merge pull request #2112 from jennifersp/master
support text scanner for binary format for uint32
2024-08-23 07:05:15 -05:00
jennifersp 57fd684068 update struct name 2024-08-22 16:51:42 -07:00
jennifersp 926913ad66 rm bound check 2024-08-21 15:12:36 -07:00
jennifersp b9f77cb1b3 fix typo 2024-08-21 12:27:23 -07:00
jennifersp 218c15a4eb support text scanner for binary format for uint32 2024-08-21 12:04:54 -07:00