Skip to content

Commit 2ed90da

Browse files
authored
[receiver/sqlquery, receiver/snowflake] Downgrade gosnowflake from v1.16.0 to v1.15.0 (#42607)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description [PR bumping dep](#42099) [gosnowflake issue](snowflakedb/gosnowflake#1533) <!-- Issue number (e.g. #1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes #42605
1 parent 219a4a0 commit 2ed90da

File tree

5 files changed

+35
-6
lines changed

5 files changed

+35
-6
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: bug_fix
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
7+
component: receiver/snowflake, receiver/sqlquery
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Fix panic on startup caused by gosnowflake `v1.16.0`
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [42605]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext: |
19+
The solution was to downgrade the dependency version to `v1.15.0`.
20+
For more information, refer to the [upstream gosnowflake issue](https://github.com/snowflakedb/gosnowflake/issues/1533)
21+
22+
# If your change doesn't affect end users or the exported elements of any package,
23+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
24+
# Optional: The change log or logs in which this entry should be included.
25+
# e.g. '[user]' or '[user, api]'
26+
# Include 'user' if the change is relevant to end users.
27+
# Include 'api' if there is a change to a library API.
28+
# Default: '[user]'
29+
change_logs: []

receiver/snowflakereceiver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/google/go-cmp v0.7.0
88
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.135.0
99
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.135.0
10-
github.com/snowflakedb/gosnowflake v1.16.0
10+
github.com/snowflakedb/gosnowflake v1.15.0
1111
github.com/stretchr/testify v1.11.1
1212
go.opentelemetry.io/collector/component v1.41.0
1313
go.opentelemetry.io/collector/component/componenttest v0.135.0

receiver/snowflakereceiver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/sqlqueryreceiver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ require (
3030
github.com/lib/pq v1.10.9
3131
github.com/microsoft/go-mssqldb v1.9.3
3232
github.com/sijms/go-ora/v2 v2.9.0
33-
github.com/snowflakedb/gosnowflake v1.16.0
33+
github.com/snowflakedb/gosnowflake v1.15.0
3434
github.com/thda/tds v0.1.7
3535
go.opentelemetry.io/collector/component/componenttest v0.135.0
3636
go.opentelemetry.io/collector/confmap/xconfmap v0.135.0

receiver/sqlqueryreceiver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)