Skip to content

Releases: s7clarke10/tap-sybase

Downgrading FreeTDS version if connection fails

01 Dec 08:28
40953cc
Compare
Choose a tag to compare

1.1.0

  • Downgrading FreeTDS version if connection fails for older versions of Sybase.

Using correct format for time datatype

01 Dec 08:11
783c67a
Compare
Choose a tag to compare

1.0.13

  • Using correct format sybase time datatype

Patching tap-sybase resolving dependencies

29 Oct 22:16
c71c20c
Compare
Choose a tag to compare

1.0.12

  • Patching tap-sybase with the latest dependencies
    • attrs -> ">=24.2.0"
    • backoff -> ">=1.8.0"
    • pendulum -> ">=1.2.0"
    • pymssql -> ">=2.1.4,!=2.2.8"
    • singer-python -> Replaced with a patched version realit-singer-python = ">=5.0.0"

Restricting pymssql library to 2.2.7 as the upper limit

24 Oct 02:17
46cd1d3
Compare
Choose a tag to compare

Restricting the upper limit on pymssql to version 2.2.7 for now. There was a breaking change in 2.2.9
where the SQL syntax is not compatible with Sybase. Need to investigate and raise a PR with pymssql,
for now restrict higher versions of pymssql.

Patching pymssql and Bump attrs from 22.2.0 to 23.1.0

31 Jul 23:58
5f3d04f
Compare
Choose a tag to compare

This release resolves library dependencies.

  • Bump attrs from 22.2.0 to 23.1.0
  • Patches pymssql by excluding version 2.2.8 which has an error

Bump singer-python from 5.9.0 to 5.13.0

27 Feb 01:30
3659c55
Compare
Choose a tag to compare

Bump singer-python from 5.9.0 to 5.13.0 (#14)

  • Bump singer-python from 5.9.0 to 5.13.0

Bumps singer-python from 5.9.0 to 5.13.0.


updated-dependencies:

  • dependency-name: singer-python
    dependency-type: direct:production
    update-type: version-update:semver-minor
    ...

Signed-off-by: dependabot[bot] [email protected]

  • Update CHANGELOG.md

Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Steve Clarke [email protected]

Bump attrs from 16.3.0 to 22.2.0

27 Feb 00:49
bc09ac9
Compare
Choose a tag to compare

Bump attrs from 16.3.0 to 22.2.0 (#15)

  • Bump attrs from 16.3.0 to 22.2.0

Bumps attrs from 16.3.0 to 22.2.0.


updated-dependencies:

  • dependency-name: attrs
    dependency-type: direct:production
    update-type: version-update:semver-major
    ...

Signed-off-by: dependabot[bot] [email protected]

  • Update CHANGELOG.md

Signed-off-by: dependabot[bot] [email protected]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Steve Clarke [email protected]

Fixing currently_syncing with no bookmark sync issue.

05 Oct 04:54
d91d73d
Compare
Choose a tag to compare
Feature/fix currently syncing rerun bug (#10)

* Fix to stream not running currently_syncing, no bookmark

* Bumping version

* Ensuring all currently_syncing streams are loaded

We have encountered a scenario where a stream starts but it failed and there was no bookmark written.

When the job is re-run the state file had currently_syncing for the given stream but with no bookmark written it didn't appear in the streams_with_state list. This small change will ensure that the currently_syncing_list will be populated whether there is a bookmark or not by filtering against the ordered_streams list which includes both streams_without_state and streams_with_state.

Example:

state.json looks like the example below. In this scenario the "YELLOW_BANANAS" stream would not sync with the previous code because it is Currently Syncing with no bookmark / state.

{"currently_syncing": "YELLOW_BANANAS"}

Fixing issue with NULL's/None in Columns with Singer.Decimal

03 Oct 02:02
d30b180
Compare
Choose a tag to compare
Feature/fix nulls singer decimal (#9)

* Bumping Version

Handling NULL's / None Columns with Singer.Decimal

* Bumping Version

Handling NULL's / None Columns with Singer.Decimal

* Handling NULL's/None in Columns with Singer.Decimal