Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
 - csv-demo-esm@0.0.15
 - csv-issues-esm@0.0.6
 - csv-parse@5.3.4
 - csv@6.2.6
  • Loading branch information
wdavidw committed Jan 31, 2023
1 parent ca3f55b commit 466e752
Show file tree
Hide file tree
Showing 12 changed files with 64 additions and 23 deletions.
8 changes: 8 additions & 0 deletions demo/esm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.15](https://github.com/adaltas/node-csv/compare/csv-demo-esm@0.0.14...csv-demo-esm@0.0.15) (2023-01-31)

**Note:** Version bump only for package csv-demo-esm





## [0.0.14](https://github.com/adaltas/node-csv/compare/csv-demo-esm@0.0.13...csv-demo-esm@0.0.14) (2022-11-30)

**Note:** Version bump only for package csv-demo-esm
Expand Down
6 changes: 3 additions & 3 deletions demo/esm/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "csv-demo-esm",
"version": "0.0.14",
"version": "0.0.15",
"main": "index.js",
"license": "MIT",
"type": "module",
"private": true,
"dependencies": {
"csv": "^6.2.5",
"csv-parse": "^5.3.3"
"csv": "^6.2.6",
"csv-parse": "^5.3.4"
},
"devDependencies": {
"coffeescript": "^2.7.0",
Expand Down
8 changes: 8 additions & 0 deletions demo/issues-esm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.6](https://github.com/adaltas/node-csv/compare/csv-issues-esm@0.0.5...csv-issues-esm@0.0.6) (2023-01-31)

**Note:** Version bump only for package csv-issues-esm





## [0.0.5](https://github.com/adaltas/node-csv/compare/csv-issues-esm@0.0.4...csv-issues-esm@0.0.5) (2022-11-08)

**Note:** Version bump only for package csv-issues-esm
Expand Down
2 changes: 1 addition & 1 deletion demo/issues-esm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv-issues-esm",
"version": "0.0.5",
"version": "0.0.6",
"main": "index.js",
"license": "MIT",
"type": "module",
Expand Down
9 changes: 9 additions & 0 deletions packages/csv-parse/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.3.4](https://github.com/adaltas/node-csv/compare/csv-parse@5.3.3...csv-parse@5.3.4) (2023-01-31)


### Bug Fixes

* **csv-parse:** destroy on end and call close event (fix [#333](https://github.com/adaltas/node-csv/issues/333)) ([ca3f55b](https://github.com/adaltas/node-csv/commit/ca3f55b7cf556b45377677428783608a2d9ebbb2))



## [5.3.3](https://github.com/adaltas/node-csv/compare/csv-parse@5.3.2...csv-parse@5.3.3) (2022-11-28)


Expand Down
2 changes: 1 addition & 1 deletion packages/csv-parse/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.3.3",
"version": "5.3.4",
"name": "csv-parse",
"description": "CSV parsing implementing the Node.js `stream.Transform` API",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/csv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.2.6](https://github.com/adaltas/node-csv/compare/csv@6.2.5...csv@6.2.6) (2023-01-31)

**Note:** Version bump only for package csv





## [6.2.5](https://github.com/adaltas/node-csv/compare/csv@6.2.4...csv@6.2.5) (2022-11-30)

**Note:** Version bump only for package csv
Expand Down
10 changes: 6 additions & 4 deletions packages/csv/dist/cjs/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1575,9 +1575,10 @@ class Parser extends stream.Transform {
return;
}
const err = this.api.parse(buf, false, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
if(err !== undefined){
this.state.stop = true;
Expand All @@ -1590,9 +1591,10 @@ class Parser extends stream.Transform {
return;
}
const err = this.api.parse(undefined, true, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
callback(err);
}
Expand Down
10 changes: 6 additions & 4 deletions packages/csv/dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6702,9 +6702,10 @@ class Parser extends Transform {
return;
}
const err = this.api.parse(buf, false, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
if(err !== undefined){
this.state.stop = true;
Expand All @@ -6717,9 +6718,10 @@ class Parser extends Transform {
return;
}
const err = this.api.parse(undefined, true, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
callback(err);
}
Expand Down
10 changes: 6 additions & 4 deletions packages/csv/dist/iife/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6705,9 +6705,10 @@ var csv = (function (exports) {
return;
}
const err = this.api.parse(buf, false, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
if(err !== undefined){
this.state.stop = true;
Expand All @@ -6720,9 +6721,10 @@ var csv = (function (exports) {
return;
}
const err = this.api.parse(undefined, true, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
callback(err);
}
Expand Down
10 changes: 6 additions & 4 deletions packages/csv/dist/umd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6708,9 +6708,10 @@
return;
}
const err = this.api.parse(buf, false, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
if(err !== undefined){
this.state.stop = true;
Expand All @@ -6723,9 +6724,10 @@
return;
}
const err = this.api.parse(undefined, true, (record) => {
this.push.call(this, record);
this.push(record);
}, () => {
this.push.call(this, null);
this.push(null);
this.on('end', this.destroy);
});
callback(err);
}
Expand Down
4 changes: 2 additions & 2 deletions packages/csv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv",
"version": "6.2.5",
"version": "6.2.6",
"description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
"keywords": [
"node",
Expand All @@ -22,7 +22,7 @@
],
"dependencies": {
"csv-generate": "^4.2.1",
"csv-parse": "^5.3.3",
"csv-parse": "^5.3.4",
"csv-stringify": "^6.2.3",
"stream-transform": "^3.2.1"
},
Expand Down

0 comments on commit 466e752

Please sign in to comment.