Releases: vizhub-core/llm-code-format
Releases · vizhub-core/llm-code-format
v3.0.0
What's Changed
- Implement async callbacks for streaming parser by @Copilot in #16
- Update README for async callbacks by @curran in #17
- Fix: Handle extra characters after file name in Bold Format parsing by @Copilot in #14
New Contributors
- @Copilot made their first contribution in #16
Full Changelog: v2.1.0...v3.0.0
v2.1.0
v2.0.1
Fix NPM dist
Full Changelog: v2.0.0...v2.0.1
v2.0.0
What's Changed
Both of these are breaking changes:
- Adopt viz-types FileCollection data structure by @curran in #9
- Rename format function from
serializeMarkdownFiles
toformatMarkdownFiles
by @curran in #11
Vibe coding prompt for automatic migration:
We need to upgrade to the latest dependencies, which have breaking changes: 1.) `llm-code-format` has renamed `serializeMarkdownFiles` to `formatMarkdownFil
es`. 2.) With both of those functions, they don't represent files as arrays anymore, but rather as objects: ```// FileCollection
// * A simple collection of files.
// * Keys are file names.
// * Values are file contents.
// * This is used for scenarios where we need to
// work with files in a simple way, without
// the complexity of a full VizFile structure.
export type FileCollection = Record<string, string>;
```. You can `import { FileCollection } from "@vizhub/viz-types";` to get the correct type. Please update all files as needed to accommodate these breaking
changes in `llm-code-format`.
Full Changelog: v1.0.2...v2.0.0
v1.0.2
v1.0.1
v1.0.0
v0.3.0
v0.1.0
First stab at the library
Full Changelog: https://github.com/curran/llm-code-format/commits/v0.1.0