Releases: javascriptdata/danfojs
Releases · javascriptdata/danfojs
v1.2.0
What's Changed
- Fix
webpack.config.js
to matchpackage.json
by @pensono in #516 - Upgrade of SheetJS dependency by @geoextra in #575
- Fixes #569 by @acctsi1 in #570
- 559 replace does not accept falsy strings or numbers by @babennettdev in #562
- adds function overload to NDFrame toCSV and toJSON so danfojs-base an… by @kitfit-dave in #566
- chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /src/danfojs-node by @dependabot in #590
- chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /src/danfojs-base by @dependabot in #588
- chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /src/danfojs-browser by @dependabot in #589
- chore(deps): bump get-func-name from 2.0.0 to 2.0.2 in /src/danfojs-base by @dependabot in #600
- chore(deps): bump get-func-name from 2.0.0 to 2.0.2 in /src/danfojs-browser by @dependabot in #601
- fix: fix for tests by @ekynoxe in #603
- Fix/594 exports by @ekynoxe in #604
- Allow user to handle errors by @nucoinha in #638
- chore(deps): bump elliptic from 6.5.4 to 6.6.1 in /src/danfojs-browser by @dependabot in #655
- Update io.excel.ts by @lyhue1991 in #652
- fix dtypes not used on csv parse by @risenW in #657
- fix isEmpty bug with bigInt by @risenW in #661
New Contributors
- @pensono made their first contribution in #516
- @geoextra made their first contribution in #575
- @acctsi1 made their first contribution in #570
- @babennettdev made their first contribution in #562
- @kitfit-dave made their first contribution in #566
- @ekynoxe made their first contribution in #603
- @nucoinha made their first contribution in #638
- @lyhue1991 made their first contribution in #652
Full Changelog: v1.1.2...v1.2.0
Latest Release Node (v1.1.2), Browser (v1.1.2)
What's Changed
- fix copy/paste error in df.apply documentation by @kgeis in #469
- Makes an ESM bundle using esbuild by @dcrescim in #447
- Fix invalid assert.throws statements by @igonro in #419
- chore(deps): bump shell-quote from 1.7.2 to 1.7.3 in /src/danfojs-browser by @dependabot in #477
- chore(deps): bump terser from 5.11.0 to 5.14.2 in /src/danfojs-browser by @dependabot in #474
- chore(deps): bump terser from 5.10.0 to 5.14.2 in /src/danfojs-base by @dependabot in #473
- Allow Series.append() to use zero, fixes #486 by @BowTiedAztec in #487
- Add error handler for io functions by @risenW in #503
- chore(deps): bump json-schema and jsprim in /src/danfojs-node by @dependabot in #504
- add support for excel parsing options arg by @risenW in #505
- Chore/add default support for datetime by @risenW in #511
- Master merge by @steveoni in #478
New Contributors
- @kgeis made their first contribution in #469
- @BowTiedAztec made their first contribution in #487
Full Changelog: v1.1.1...v1.1.2
Release Node (v1.1.1), Browser (v1.1.1)
What's Changed
- fix: fillNa throws an error when values is an empty string by @ankitskvmdam in #441
- Fix for readCSV mismatch between Browser and Node by @dcrescim in #443
- Fix breaking import in client-side library
New Contributors
- @ankitskvmdam made their first contribution in #441
- @dcrescim made their first contribution in #443
Full Changelog: v1.1.0...v1.1.1
Release Node (v1.1.0), Browser (v1.1.0)
What's Changed
Full Changelog: v1.0.5...v1.1.0
Release Node (v1.0.5), Browser (v1.0.5) Latest
What's Changed
- feat: Added diff() function to DataFrame by @NeonSpork in #414
- Fix empty dataframe not adding columns information by @igonro in #417
- feat: Added
pctChange()
to DataFrame anddivNoNan()
to$MathOps
in DataFrame by @NeonSpork in #418 - test: Added missing unit tests for
diff()
andpctChange()
by @NeonSpork in #422 - Fix/breaking import by @risenW in #438
Full Changelog: v1.0.3...v1.0.5
Release Node (v1.0.3), Browser (v1.0.3)
What's Changed
- add max to list of arithmetic operations by @steveoni in #367
- correct lenght -> length by @adamgilman in #393
- Bug fixes by @risenW in #395
- Fix bug in groupby checking wrong colDtype by @igonro in #398
- fix(test): Explicit type in test allows TS to compile by @NeonSpork in #411
- Jan kaul esmodule by @risenW in #415
New Contributors
- @adamgilman made their first contribution in #393
- @igonro made their first contribution in #398
- @NeonSpork made their first contribution in #411
Full Changelog: v1.0.2...v1.0.3
Release Node (v1.0.2), Browser (v1.0.2)
Release Node (v1.0.1), Browser (v1.0.1)
What's Changed
- Added type to DataFrame.rename mapper by @Devwulf in #347
- Added the missing groupby.std() by @Devwulf in #351
- Bump follow-redirects from 1.13.1 to 1.14.7 in /src/danfojs-browser by @dependabot in #352
- Bump follow-redirects from 1.14.6 to 1.14.7 in /src/danfojs-base by @dependabot in #353
New Contributors
Full Changelog: v1.0.0...v1.0.1
Release Node (v1.0.0), Browser (v1.0.0)
Major breaking update. See the migration guide for pre-v1 users.
New Features
- Full Typescript support
- streamCsvTransforme ==> Pipable stream transformer for incrementally transforming DataFrames
- streamJSON ==> Supports streaming of local or remote JSON files into DataFrame.
- streamCSV ==> Supports streaming of local or remote CSV files into DataFrame.
- openCsvInputStream ==> Open a local/remote CSV file as a readable stream
- writeCsvOutputStream ==> Open a local/remote CSV file as a writable stream
- #325
- #296