Skip to content

Commit a4ec4ca

Browse files
authored
Merge pull request #189 from turbot/v0.4.x
V0.4.x
2 parents d3d924c + 5ee6b27 commit a4ec4ca

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v0.4.0 [2025-04-25]
2+
3+
_Whats new_
4+
* Add WithHeaderRowNotification RowSourceOption, which can be set to enable a mapper to be notified of the header row of an artifact. ([#186](https://github.com/turbot/tailpipe-plugin-sdk/issues/186))
5+
6+
_Bug fixes_
7+
* Fix source file error for custom tables when using S3 or other external source. ([#188](https://github.com/turbot/tailpipe-plugin-sdk/issues/188))
8+
19
## v0.3.1 [2025-04-16]
210

311
_Bug fixes_

table/artifact_conversion_collector.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func (c *ArtifactConversionCollector) handleArtifactDownloaded(ctx context.Conte
176176

177177
func (c *ArtifactConversionCollector) executeConversionQuery(e *events.ArtifactDownloaded, destFile string) (_ int64, err error) {
178178
// First build query to select source data into temp table and get its columns
179-
tempTableQuery, err := getTempTableQuery(e.Info.Name, c.table.GetFormat())
179+
tempTableQuery, err := getTempTableQuery(e.Info.LocalName, c.table.GetFormat())
180180
if err != nil {
181181
slog.Error("ArtifactConversionCollector: error getting temp table query", "error", err)
182182
return 0, err

0 commit comments

Comments
 (0)