-
Notifications
You must be signed in to change notification settings - Fork 289
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: adaltas/node-csv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: [email protected]
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: adaltas/node-csv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: [email protected]
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 8 commits
- 58 files changed
- 3 contributors
Commits on Jun 20, 2026
-
fix(csv-stringify): quote fields fusing with a multi-character separator
A field whose tail is a non-empty prefix of a multi-character delimiter or record delimiter must be quoted, otherwise the separator appended after it re-tokenizes the boundary on parse and the value is silently corrupted: stringify([["a:", "b"]], { delimiter: "::" }) // a:::b parse("a:::b", { delimiter: "::" }) // [["a", ":b"]] The quoting predicate only checked `value.indexOf(separator) >= 0`, which catches a field that contains the whole separator but misses this boundary fusion. The same gap affected `record_delimiter`. Both now share an `emits_separator` helper; single-character separators and non-fusing fields are unaffected (no extra quoting). RFC 4180 §2.6, generalized to the library's multi-character separators.Configuration menu - View commit details
-
Copy full SHA for 46cab38 - Browse repository at this point
Copy the full SHA 46cab38View commit details -
fix(csv-parse): ship stream cjs export (#490)
* fix: ship csv-parse stream cjs export * test: cover csv-parse stream in cjs demo
Configuration menu - View commit details
-
Copy full SHA for 230af8e - Browse repository at this point
Copy the full SHA 230af8eView commit details
Commits on Jun 26, 2026
-
Configuration menu - View commit details
-
Copy full SHA for a5ef896 - Browse repository at this point
Copy the full SHA a5ef896View commit details
Commits on Jun 29, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 9d29553 - Browse repository at this point
Copy the full SHA 9d29553View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ca79e9 - Browse repository at this point
Copy the full SHA 5ca79e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for abfe4de - Browse repository at this point
Copy the full SHA abfe4deView commit details
Commits on Jul 2, 2026
-
fix(csv-stringify): double regexp-metacharacter escape/quote literally (
#494) * fix(csv-stringify): double regexp-metacharacter escape/quote literally The escape and quote characters are configurable to any single character, but when a quoted field contained the escape or quote char, the code doubled occurrences via `new RegExp(escape, "g")` / `new RegExp(quote, "g")`. That interpolates the user char into a pattern, so metacharacters misbehave: `|` and `.` match everywhere and inject the doubled char at every position, `*`/`+`/`?` throw "Nothing to repeat", and `^`/`$` anchor and silently no-op. Replace the RegExp doubling with a literal `replaceAll` using a function replacer, so neither the pattern nor a `$` in the replacement is interpreted. This restores the round-trip invariant parse(stringify(x)) === x for any configured escape/quote character. * test(csv-stringify): dispatch 494 tests (cherry picked from commit 662726b) --------- Co-authored-by: David Worms <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for db852d1 - Browse repository at this point
Copy the full SHA db852d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e0d5a3 - Browse repository at this point
Copy the full SHA 6e0d5a3View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff [email protected]@7.0.1