-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(json): Allow empty addendum json #81
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3 console.log
to remove.
const documentStream = DocumentStream.create('prefix', stats); | ||
|
||
test_stream([input], documentStream, function(err, actual) { | ||
// console.log(JSON.stringify(actual, null, 2)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line to remove
|
||
|
||
test_stream([input], documentStream, function(err, actual) { | ||
console.log(JSON.stringify(actual, null, 2)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line to remove
|
||
|
||
test_stream([input], documentStream, function(err, actual) { | ||
console.log(JSON.stringify(actual, null, 2)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line to remove
You did not remove lines with |
Apologies I thought I did push the console log. My computer just restarted
for a forced upgrade. Will check again when it completes.
Also apologies on using merge instead of squash.
What’s conventional commit?
On Fri, Oct 9, 2020 at 6:34 PM Jones Magloire ***@***.***> wrote:
You did not remove lines with console.log?
Don't forget to use Conventional Commit to trigger release...
Use squash instead of merge
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#81 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADMZMF3HWQDHKYSFJCGXATSJ6FXBANCNFSM4SKOTFYA>
.
--
*David Blackman*
creative technologist & wandering
help me find my purpose <http://purpose.blackmad.com>
|
Conventional commit = semantic versioning, got it.
I thought that’s what I was doing by renaming the commit to feat(Json): -
should I have done something different?
On Fri, Oct 9, 2020 at 6:35 PM David Blackman ***@***.***> wrote:
Apologies I thought I did push the console log. My computer just restarted
for a forced upgrade. Will check again when it completes.
Also apologies on using merge instead of squash.
What’s conventional commit?
On Fri, Oct 9, 2020 at 6:34 PM Jones Magloire ***@***.***>
wrote:
> You did not remove lines with console.log?
> Don't forget to use Conventional Commit to trigger release...
> Use squash instead of merge
>
> —
> You are receiving this because you modified the open/close state.
> Reply to this email directly, view it on GitHub
> <#81 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AADMZMF3HWQDHKYSFJCGXATSJ6FXBANCNFSM4SKOTFYA>
> .
>
--
*David Blackman*
creative technologist & wandering
help me find my purpose <http://purpose.blackmad.com>
--
*David Blackman*
creative technologist & wandering
help me find my purpose <http://purpose.blackmad.com>
|
This means that the first line of the commit should use the conventional commit spec. Here, you use the Conventional Commit on the PR title and not on your commits. And in the merge commit, |
I had a csv import that was silently failing because my addendum_json_XXX field was empty in some rows.
This change allows for empty values in addenum_json_XXX fields and adds a lot of tests for both that field and other json fields in csv import
In a separate change, I will attempt to print out badRecordCount somewhere, and in another I will propose we log failed rows to stderr