Releases: javascriptdata/danfojs
Releases · javascriptdata/danfojs
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