Skip to content

File tree

22 files changed

+139
-19
lines changed

22 files changed

+139
-19
lines changed

demo/browser/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2021-11-19)
7+
8+
9+
### Features
10+
11+
* **csv-demo-webpack:** split usages by packages ([214c759](https://github.com/adaltas/node-csv/commit/214c75980d61bf96ec1d6892858887ba29235987))

demo/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-demo-browser",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"main": "index.js",
55
"license": "MIT",
66
"type": "module",

demo/cjs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2021-11-19)
7+
8+
9+
### Features
10+
11+
* backward support for node 8 ([496231d](https://github.com/adaltas/node-csv/commit/496231dfd838f0a6a72269a5a2390a4c637cef95))

demo/cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-demo-cjs",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"main": "index.js",
55
"license": "MIT",
66
"type": "commonjs",

demo/esm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 0.0.1 (2021-11-19)
7+
8+
**Note:** Version bump only for package csv-demo-esm

demo/esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-demo-esm",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"main": "index.js",
55
"license": "MIT",
66
"type": "module",

demo/issues-cjs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 0.0.1 (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* dont insert polyfills in cjs [#303](https://github.com/adaltas/node-csv/issues/303) ([9baf334](https://github.com/adaltas/node-csv/commit/9baf334044dab90b4a0d096a7e456d0fd5807d5b))

demo/issues-cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-issues-cjs",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"main": "index.js",
55
"license": "MIT",
66
"private": true,

demo/issues-esm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 0.0.1 (2021-11-19)
7+
8+
**Note:** Version bump only for package csv-issues-esm

demo/issues-esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-issues-esm",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"main": "index.js",
55
"license": "MIT",
66
"type": "module",

demo/webpack/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **csv-demo-webpack:** start with version 0.0.0 ([3369efa](https://github.com/adaltas/node-csv/commit/3369efa09831fabb57fef9c94cd4ca14e0b05981))
12+
13+
14+
### Features
15+
16+
* **csv-demo-webpack:** split usages by packages ([214c759](https://github.com/adaltas/node-csv/commit/214c75980d61bf96ec1d6892858887ba29235987))

demo/webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-demo-webpack",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "",
55
"private": true,
66
"scripts": {

packages/csv-generate/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/adaltas/node-csv/compare/[email protected]@4.0.3) (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* expose browser esm modules ([eb87355](https://github.com/adaltas/node-csv/commit/eb873557c65912f065d2581d30a17a96b0bfd2d6))
12+
13+
14+
15+
16+
617
## [4.0.2](https://github.com/adaltas/node-csv/compare/[email protected]@4.0.2) (2021-11-18)
718

819

packages/csv-generate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.0.2",
2+
"version": "4.0.3",
33
"name": "csv-generate",
44
"description": "CSV and object generation implementing the Node.js `stream.Readable` API",
55
"keywords": [

packages/csv-parse/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.3](https://github.com/adaltas/node-csv/compare/[email protected]@5.0.3) (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* expose browser esm modules ([eb87355](https://github.com/adaltas/node-csv/commit/eb873557c65912f065d2581d30a17a96b0bfd2d6))
12+
13+
14+
15+
16+
617
## [5.0.2](https://github.com/adaltas/node-csv/compare/[email protected]@5.0.2) (2021-11-18)
718

819

packages/csv-parse/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.0.2",
2+
"version": "5.0.3",
33
"name": "csv-parse",
44
"description": "CSV parsing implementing the Node.js `stream.Transform` API",
55
"keywords": [
@@ -47,7 +47,7 @@
4747
"@types/node": "^16.11.7",
4848
"coffeelint": "^2.1.0",
4949
"coffeescript": "^2.6.1",
50-
"csv-generate": "^4.0.2",
50+
"csv-generate": "^4.0.3",
5151
"csv-spectrum": "^1.0.0",
5252
"each": "^1.2.2",
5353
"eslint": "^8.2.0",
@@ -57,7 +57,7 @@
5757
"rollup-plugin-node-builtins": "^2.1.2",
5858
"rollup-plugin-node-globals": "^1.4.0",
5959
"should": "^13.2.3",
60-
"stream-transform": "^3.0.2",
60+
"stream-transform": "^3.0.3",
6161
"ts-node": "^10.4.0",
6262
"typescript": "^4.4.4"
6363
},

packages/csv-stringify/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.0.3](https://github.com/adaltas/node-csv/compare/[email protected]@6.0.3) (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* expose browser esm modules ([eb87355](https://github.com/adaltas/node-csv/commit/eb873557c65912f065d2581d30a17a96b0bfd2d6))
12+
13+
14+
15+
16+
617
## [6.0.2](https://github.com/adaltas/node-csv/compare/[email protected]@6.0.2) (2021-11-18)
718

819

packages/csv-stringify/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.0.2",
2+
"version": "6.0.3",
33
"name": "csv-stringify",
44
"description": "CSV stringifier implementing the Node.js `stream.Transform` API",
55
"keywords": [
@@ -15,7 +15,7 @@
1515
"@types/node": "^16.11.7",
1616
"@types/should": "^13.0.0",
1717
"coffeescript": "~2.6.1",
18-
"csv-generate": "^4.0.2",
18+
"csv-generate": "^4.0.3",
1919
"each": "^1.2.2",
2020
"eslint": "^8.2.0",
2121
"express": "^4.17.1",

packages/csv/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.0.3](https://github.com/adaltas/node-csv/compare/[email protected]@6.0.3) (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* expose browser esm modules ([eb87355](https://github.com/adaltas/node-csv/commit/eb873557c65912f065d2581d30a17a96b0bfd2d6))
12+
13+
14+
15+
16+
617
## [6.0.2](https://github.com/adaltas/node-csv/compare/[email protected]@6.0.2) (2021-11-18)
718

819

packages/csv/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
55
"keywords": [
66
"node",
@@ -21,10 +21,10 @@
2121
"David Worms <[email protected]> (https://www.adaltas.com)"
2222
],
2323
"dependencies": {
24-
"csv-generate": "^4.0.2",
25-
"csv-parse": "^5.0.2",
26-
"csv-stringify": "^6.0.2",
27-
"stream-transform": "^3.0.2"
24+
"csv-generate": "^4.0.3",
25+
"csv-parse": "^5.0.3",
26+
"csv-stringify": "^6.0.3",
27+
"stream-transform": "^3.0.3"
2828
},
2929
"devDependencies": {
3030
"@rollup/plugin-eslint": "^8.0.1",

packages/stream-transform/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.0.3](https://github.com/adaltas/node-csv/compare/[email protected]@3.0.3) (2021-11-19)
7+
8+
9+
### Bug Fixes
10+
11+
* expose browser esm modules ([eb87355](https://github.com/adaltas/node-csv/commit/eb873557c65912f065d2581d30a17a96b0bfd2d6))
12+
13+
14+
15+
16+
617
## [3.0.2](https://github.com/adaltas/node-csv/compare/[email protected]@3.0.2) (2021-11-18)
718

819

packages/stream-transform/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.0.2",
2+
"version": "3.0.3",
33
"name": "stream-transform",
44
"description": "Object transformations implementing the Node.js `stream.Transform` API",
55
"keywords": [
@@ -15,7 +15,7 @@
1515
"@types/mocha": "^9.0.0",
1616
"@types/node": "^16.11.7",
1717
"coffeescript": "~2.6.1",
18-
"csv-generate": "^4.0.2",
18+
"csv-generate": "^4.0.3",
1919
"each": "^1.2.2",
2020
"eslint": "^8.2.0",
2121
"mocha": "~9.1.3",

0 commit comments

Comments
 (0)