Conversation
e13b6b2 to
460a3e1
Compare
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughBumps project version from 0.1.0 to 0.2.0: updates release manifest and public version header, and adds a new Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@CHANGELOG.md`:
- Line 65: The markdown entry contains unescaped asterisks in the C-style block
comment `/* */` which triggers MD037; update the CHANGELOG.md entry for the
lexer line (the commit referenced by 0277001) to wrap the block comment in an
inline code span (i.e., replace `/* */` with backtick-wrapped `/* */`) so the
asterisks are not treated as emphasis, or alternatively fix the original commit
subject that produced this release-please entry.
| * **lexer,parser:** implement record update syntax ({ base | field: value }) ([dafe27a](https://github.com/niklas-heer/fern/commit/dafe27a5bb6732efeead02a3445ac62c47ca8c92)) | ||
| * **lexer,parser:** implement string interpolation ([1d608bb](https://github.com/niklas-heer/fern/commit/1d608bbcaf7fb7d00516fc4df85cf40bf16a66a7)) | ||
| * **lexer,parser:** implement where clauses on function definitions ([57f94ff](https://github.com/niklas-heer/fern/commit/57f94ff5640d639b6c3527b2e8bb7c0bc880d16a)) | ||
| * **lexer:** add block comment support (/* */) ([0277001](https://github.com/niklas-heer/fern/commit/0277001b2524bb2e732479b02434d70093e5b4e2)) |
There was a problem hiding this comment.
Markdown lint: unescaped * in /* */ triggers MD037 (spaces inside emphasis markers).
The C-style block comment syntax /* */ contains bare asterisks that some Markdown renderers may misinterpret as emphasis markers. Wrapping it in an inline code span would fix the lint warning and ensure correct rendering.
Proposed fix
-* **lexer:** add block comment support (/* */) ([0277001](https://github.com/niklas-heer/fern/commit/0277001b2524bb2e732479b02434d70093e5b4e2))
+* **lexer:** add block comment support (`/* */`) ([0277001](https://github.com/niklas-heer/fern/commit/0277001b2524bb2e732479b02434d70093e5b4e2))Note: Since this file is auto-generated by release-please from the commit message, you may prefer to fix the original commit's subject instead, or accept this as a known cosmetic limitation of the generator.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| * **lexer:** add block comment support (/* */) ([0277001](https://github.com/niklas-heer/fern/commit/0277001b2524bb2e732479b02434d70093e5b4e2)) | |
| * **lexer:** add block comment support (`/* */`) ([0277001](https://github.com/niklas-heer/fern/commit/0277001b2524bb2e732479b02434d70093e5b4e2)) |
🧰 Tools
🪛 markdownlint-cli2 (0.20.0)
[warning] 65-65: Spaces inside emphasis markers
(MD037, no-space-in-emphasis)
[warning] 65-65: Spaces inside emphasis markers
(MD037, no-space-in-emphasis)
🤖 Prompt for AI Agents
In `@CHANGELOG.md` at line 65, The markdown entry contains unescaped asterisks in
the C-style block comment `/* */` which triggers MD037; update the CHANGELOG.md
entry for the lexer line (the commit referenced by 0277001) to wrap the block
comment in an inline code span (i.e., replace `/* */` with backtick-wrapped `/*
*/`) so the asterisks are not treated as emphasis, or alternatively fix the
original commit subject that produced this release-please entry.
fbebe72 to
5e70153
Compare
5e70153 to
ddac954
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@CHANGELOG.md`:
- Line 137: Replace the incorrect GitHub user link for the `@doc` annotation in
the changelog entry that currently reads "* **test:** run
[`@doc`](https://github.com/doc) examples via fern test --doc ([0db0e53](...))" by
removing the hyperlink around `@doc` (or changing it to plain `@doc` or to a
proper documentation link) so the annotation is not converted into a GitHub
profile link; update the changelog line accordingly and, if desired, correct the
original commit message that produced this auto-generated entry to prevent
recurrence.
| * **style:** add git hygiene and improve style checker ([99c723f](https://github.com/niklas-heer/fern/commit/99c723f60e04012c1766e86aee08c60ff7bffa62)) | ||
| * **style:** add uv support and rich TUI to style checker ([eae5038](https://github.com/niklas-heer/fern/commit/eae5038d98544c392a9fd5e240b5a15b347eb4ab)) | ||
| * **system:** add cwd, chdir, hostname, user, home functions ([0a2f5d9](https://github.com/niklas-heer/fern/commit/0a2f5d96466a44c25af92c1a4f9c8ff4d0bfbbf6)) | ||
| * **test:** run [@doc](https://github.com/doc) examples via fern test --doc ([0db0e53](https://github.com/niklas-heer/fern/commit/0db0e53bd0216af8d7893273267fd1836fd94cc8)) |
There was a problem hiding this comment.
Incorrect auto-generated link for @doc annotation.
The Release Please generator converted @doc into a GitHub user link pointing to https://github.com/doc, which is likely incorrect. The @doc appears to be a documentation annotation rather than a GitHub mention.
Proposed fix
-* **test:** run [`@doc`](https://github.com/doc) examples via fern test --doc ([0db0e53](https://github.com/niklas-heer/fern/commit/0db0e53bd0216af8d7893273267fd1836fd94cc8))
+* **test:** run `@doc` examples via fern test --doc ([0db0e53](https://github.com/niklas-heer/fern/commit/0db0e53bd0216af8d7893273267fd1836fd94cc8))Note: Since this file is auto-generated from commit messages, you may prefer to fix the source commit message to prevent recurrence in future releases, or accept this as a known cosmetic limitation.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| * **test:** run [@doc](https://github.com/doc) examples via fern test --doc ([0db0e53](https://github.com/niklas-heer/fern/commit/0db0e53bd0216af8d7893273267fd1836fd94cc8)) | |
| * **test:** run `@doc` examples via fern test --doc ([0db0e53](https://github.com/niklas-heer/fern/commit/0db0e53bd0216af8d7893273267fd1836fd94cc8)) |
🤖 Prompt for AI Agents
In `@CHANGELOG.md` at line 137, Replace the incorrect GitHub user link for the
`@doc` annotation in the changelog entry that currently reads "* **test:** run
[`@doc`](https://github.com/doc) examples via fern test --doc ([0db0e53](...))" by
removing the hyperlink around `@doc` (or changing it to plain `@doc` or to a
proper documentation link) so the annotation is not converted into a GitHub
profile link; update the changelog line accordingly and, if desired, correct the
original commit message that produced this auto-generated entry to prevent
recurrence.
🤖 I have created a release beep boop
0.2.0 (2026-02-09)
⚠ BREAKING CHANGES
Features
Bug Fixes
This PR was generated with Release Please. See documentation.
Summary by CodeRabbit
Release Notes
New Features
Breaking Changes
Bug Fixes
Documentation