Skip to content

Commit e63a9de

Browse files
SNOW-2337821 Add changelog (#1579)
1 parent bd15b36 commit e63a9de

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.github/workflows/changelog.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Changelog Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, labeled, unlabeled]
6+
branches:
7+
- master
8+
9+
jobs:
10+
check_change_log:
11+
runs-on: ubuntu-latest
12+
if: ${{!contains(github.event.pull_request.labels.*.name, 'NO-CHANGELOG-UPDATES')}}
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Ensure CHANGELOG.md is updated
20+
run: git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | grep -wq "CHANGELOG.md"

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## 1.17.0
4+
5+
- Added ability to configure OCSP per connection (snowflakedb/gosnowflake#1528)
6+
- Added `DECFLOAT` support, see details in `doc.go` (snowflakedb/gosnowflake#1504, snowflakedb/gosnowflake#1506)
7+
- Added support for Go 1.25, dropped support for Go 1.22 (snowflakedb/gosnowflake#1544)
8+
- Added proxy options to connection parameters (snowflakedb/gosnowflake#1511)
9+
- Added `client_session_keep_alive_heartbeat_frequency` connection param (snowflakedb/gosnowflake#1576)
10+
- Added support for multi-part downloads for S3, Azure and GCP (snowflakedb/gosnowflake#1549)
11+
- Added `singleAuthenticationPrompt` to control whether only one authentication should be performed at the same time for authentications that need human interactions (like MFA or OAuth authorization code). Default is true. (snowflakedb/gosnowflake#1561)
12+
- Fixed missing `DisableTelemetry` option in connection parameters (snowflakedb/gosnowflake#1520)
13+
- Fixed multistatements in large result sets (snowflakedb/gosnowflake#1539, snowflakedb/gosnowflake#1543, snowflakedb/gosnowflake#1547)
14+
- Fixed unnecessary retries when context is cancelled (snowflakedb/gosnowflake#1540)
15+
- Fixed regression in TOML connection file (snowflakedb/gosnowflake#1530)
16+
- Fixed race conditions in stage downloads (snowflakedb/gosnowflake#1577)
17+
18+
## Prior Releases
19+
20+
Release notes available at https://docs.snowflake.com/en/release-notes/clients-drivers/golang

0 commit comments

Comments
 (0)