Skip to content

Releases: MeltanoLabs/target-snowflake

v0.9.1

29 Jul 20:49
7ac7c58
Compare
Choose a tag to compare

What's Changed

  • chore: pre-commit autoupdate by @pre-commit-ci in #233
  • feat(deps): bump snowflake-connector-python from 3.11.0 to 3.12.0 by @dependabot in #235
  • chore(deps-dev): bump pytest from 8.3.1 to 8.3.2 in the development-dependencies group by @dependabot in #234

Full Changelog: v0.9.0...v0.9.1

v0.9.0

25 Jul 14:48
03c428e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.0...v0.9.0

v0.8.0

06 Jul 02:29
e519516
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.1...v0.8.0

v0.7.1

17 Jun 13:26
9c4e616
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.0...v0.7.1

v0.7.0

20 Mar 19:36
4847908
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.7.0

v0.6.0

20 Mar 19:15
e02d39d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.1...v0.6.0

v0.5.1

12 Sep 19:03
8184ffc
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.5.1

v0.5.0

14 Aug 19:06
ae8f1aa
Compare
Choose a tag to compare

What's Changed

⚠️ Potential Breaking Change ⚠️ :

  • fix: Numbers to floats by @pnadolny13 in #106 choses to use floats to handle numeric values in a safer way. As part of that switch an existing sync that is writing to number columns might try to alter them to float types which would fail with a snowflake error like ..cannot change column NUM_COL from type NUMBER(38,0) to FLOAT... In this case you should either do one of the following manually steps to alter these types:
  1. If the data isnt large you can reload it into the new schema.
  2. Alter/Update Column
  • alter existing number column
  • create new column with type float
  • update new column and set as value of altered column
  1. Create new table as select and cast the number columns to floats

Full Changelog: v0.4.3...v0.5.0

v0.4.3

25 Jul 14:20
045b614
Compare
Choose a tag to compare

What's Changed

  • fix: handle precision from multipleOf number types by @pnadolny13 in #97
  • feat: raise exception if database doesnt exist by @pnadolny13 in #96

Full Changelog: v0.4.2...v0.4.3

v0.4.2

13 Jul 16:54
97cb0c8
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @visch made their first contribution in #89

Full Changelog: v0.4.1...v0.4.2