Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Releases: OpenFn/language-mysql

v1.2.0

09 Jul 06:46
Compare
Choose a tag to compare

77f3021 minor version bump
189beac Merge pull request #7 from dsurrao/master
cd1626d use onDupUpdate() in upsertMany
f3ca343 Added upsertMany function
b886609 repo in package.json

v1.1.2

02 Jul 11:09
Compare
Choose a tag to compare

887e8c9 patch version bump
bbd27d2 newer language-common
e990a33 add ast, update language-common
299fa88 Merge pull request #6 from OpenFn/dependabot/npm_and_yarn/browserslist-4.16.6
6915990 Merge pull request #5 from OpenFn/dependabot/npm_and_yarn/lodash-4.17.21
3c0aafb Bump browserslist from 4.16.3 to 4.16.6
3f37825 Bump lodash from 4.17.20 to 4.17.21

Update docs and dependencies

22 Feb 18:46
Compare
Choose a tag to compare

Updating documentation (and readme), check dependency to language-commonand updating whole package.jsonas well.

Expose full query function from node mysql

21 Dec 00:57
Compare
Choose a tag to compare

Allow all configurations to be passed to the mysql package using the "third form": https://www.npmjs.com/package/mysql#performing-queries

The callback is handled by the adaptor, still, and subsequent callbacks can be performed in subsequent operations.

fixed tests

21 Mar 16:05
Compare
Choose a tag to compare
v0.3.1

cleanup adaptor

added upsert(table, fields)

21 Mar 15:59
Compare
Choose a tag to compare

note that this is a full upsert, so all values must be present in the source data

new sql generation module

21 Mar 13:16
Compare
Choose a tag to compare
v0.2.0

update sql generation package

better logs

17 Mar 22:10
Compare
Choose a tag to compare
v0.1.1

Merge branch 'master' of github.com:OpenFn/language-mysql

Initial release

25 Feb 21:20
Compare
Choose a tag to compare

sqlString takes a function that returns your SQL query.
insert takes a table name and an object with key:value pairs—works with the fields(...) helper function.