File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed
google/cloud/sql/connector Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.18.3] ( https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/compare/v1.18.2...v1.18.3 ) (2025-07-11)
4+
5+
6+ ### Bug Fixes
7+
8+ * suppress lint check for _ scopes property ([ #1308 ] ( https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/issues/1308 ) ) ([ 821245c] ( https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/commit/821245c1911fb970e3409b3e249698937a8b7867 ) )
9+
310## [ 1.18.2] ( https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/compare/v1.18.1...v1.18.2 ) (2025-05-20)
411
512
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ The Cloud SQL Python Connector is a package to be used alongside a database driv
4242Currently supported drivers are:
4343 - [ ` pymysql ` ] ( https://github.com/PyMySQL/PyMySQL ) (MySQL)
4444 - [ ` pg8000 ` ] ( https://github.com/tlocke/pg8000 ) (PostgreSQL)
45+ - [ ` psycopg ` ] ( https://github.com/psycopg/psycopg ) (PostgreSQL)
4546 - [ ` asyncpg ` ] ( https://github.com/MagicStack/asyncpg ) (PostgreSQL)
4647 - [ ` pytds ` ] ( https://github.com/denisenkom/pytds ) (SQL Server)
4748
@@ -587,7 +588,7 @@ async def main():
587588 # acquire connection and query Cloud SQL database
588589 async with pool.acquire() as conn:
589590 res = await conn.fetch(" SELECT NOW()" )
590-
591+
591592 # close Connector
592593 await connector.close_async()
593594```
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- __version__ = "1.18.2 "
15+ __version__ = "1.18.3 "
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ Changelog = "https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/b
5959[project .optional-dependencies ]
6060pymysql = [" PyMySQL>=1.1.0" ]
6161pg8000 = [" pg8000>=1.31.1" ]
62+ psycopg = [" psycopg>=3.2.9" ]
6263pytds = [" python-tds>=1.15.0" ]
6364asyncpg = [" asyncpg>=0.30.0" ]
6465
You can’t perform that action at this time.
0 commit comments