Skip to content

Update changelog for 0.12.15#1382

Merged
yuxincs merged 1 commit intomasterfrom
0.12.15-changelog
Dec 19, 2025
Merged

Update changelog for 0.12.15#1382
yuxincs merged 1 commit intomasterfrom
0.12.15-changelog

Conversation

@msridhar
Copy link
Copy Markdown
Collaborator

@msridhar msridhar commented Dec 19, 2025

Summary by CodeRabbit

  • Bug Fixes

    • Fixed handling of annotations on type variables in returns and fields
    • Improved dataflow recursion detection accuracy
    • Enhanced dataflow analysis for lambda bodies in generic methods
    • Corrected documentation URL for RequireExplicitNullMarking checker
  • New Features

    • Introduced BOM artifact for simplified dependency management
  • Chores

    • Updated internals for improved maintainability

✏️ Tip: You can customize this high-level summary in your review settings.

@msridhar msridhar changed the title Update Changelog for 0.12.15 Update changelog for 0.12.15 Dec 19, 2025
@msridhar msridhar requested a review from yuxincs December 19, 2025 17:29
@codecov
Copy link
Copy Markdown

codecov Bot commented Dec 19, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 88.35%. Comparing base (f4f03c0) to head (72c66cb).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff            @@
##             master    #1382   +/-   ##
=========================================
  Coverage     88.35%   88.35%           
  Complexity     2642     2642           
=========================================
  Files            97       97           
  Lines          8888     8888           
  Branches       1775     1775           
=========================================
  Hits           7853     7853           
  Misses          518      518           
  Partials        517      517           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Dec 19, 2025

Walkthrough

The pull request adds a new changelog entry for Version 0.12.15 at the top of the CHANGELOG.md file. This version documents the release of a BOM artifact, multiple bug fixes, and JSpecify-related improvements. The changelog captures changes including a URL fix for RequireExplicitNullMarking, annotation handling on type variables, dataflow recursion adjustments, type-variable specific behavior in JSpecify, method type parameter inclusion in astubx files, a new nullaway-bom project, lambda body dataflow analysis improvements, and refactoring notes for Handler class modifications. The existing Version 0.12.14 section remains unchanged.

Suggested reviewers

  • yuxincs

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Update changelog for 0.12.15' directly and accurately reflects the changeset, which adds a new changelog section documenting Version 0.12.15 release notes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch 0.12.15-changelog

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f4f03c0 and 72c66cb.

📒 Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
🧰 Additional context used
🧠 Learnings (3)
📚 Learning: 2025-08-14T18:50:06.159Z
Learnt from: msridhar
Repo: uber/NullAway PR: 1245
File: guava-recent-unit-tests/src/test/java/com/uber/nullaway/guava/NullAwayGuavaParametricNullnessTests.java:101-102
Timestamp: 2025-08-14T18:50:06.159Z
Learning: In NullAway JSpecify tests, when JDK version requirements exist due to bytecode annotation reading capabilities, prefer failing tests over skipping them on unsupported versions to ensure CI catches regressions and enforces proper JDK version usage for developers.

Applied to files:

  • CHANGELOG.md
📚 Learning: 2025-08-29T18:41:43.584Z
Learnt from: msridhar
Repo: uber/NullAway PR: 1259
File: jdk-recent-unit-tests/src/test/java/com/uber/nullaway/jdk17/SwitchTests.java:318-321
Timestamp: 2025-08-29T18:41:43.584Z
Learning: Classes annotated with NullMarked are analyzed by NullAway even if they are not in packages specified by the AnnotatedPackages configuration. The NullMarked annotation guarantees NullAway analysis.

Applied to files:

  • CHANGELOG.md
📚 Learning: 2025-08-28T04:54:20.953Z
Learnt from: msridhar
Repo: uber/NullAway PR: 1248
File: nullaway/src/main/java/com/uber/nullaway/generics/GenericsChecks.java:847-857
Timestamp: 2025-08-28T04:54:20.953Z
Learning: In NullAway's GenericsChecks.java, NewClassTree support for explicit type argument substitution requires more extensive changes beyond just modifying the conditional in compareGenericTypeParameterNullabilityForCall. The maintainers prefer to handle NewClassTree support in a separate follow-up rather than expanding the scope of PRs focused on specific issues like super constructor calls.

Applied to files:

  • CHANGELOG.md
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: Build and test on macos-latest
  • GitHub Check: Build caffeine with snapshot
  • GitHub Check: Build and test on windows-latest
🔇 Additional comments (1)
CHANGELOG.md (1)

4-19: Changelog structure and content look solid.

The new Version 0.12.15 section follows the established format consistently: clear introductory paragraph explaining the release focus (BOM artifact and improvements), well-organized bullet points covering bug fixes and enhancements, and a maintenance subsection with proper indentation. All changes are attributed with PR numbers and contributor credits where applicable. Once the minor formatting issue on line 14 is corrected, this changelog entry is ready.

Comment thread CHANGELOG.md
* Handle annotations on type variables in return and field types (#1371)
* Change how recursive calls to dataflow are detected (#1374)
* JSpecify: use type on identifier when its type is a type variable (#1378)
* Include method type parameters in astubx files. by @haewiful (#1370)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove extra period before contributor attribution.

Line 14 has an inconsistent formatting pattern. The period before "by @haewiful" should be removed to match the established convention in the changelog (see lines 48, 51, and others).

🔎 Proposed fix
-* Include method type parameters in astubx files. by @haewiful (#1370)
+* Include method type parameters in astubx files by @haewiful (#1370)
📝 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.

Suggested change
* Include method type parameters in astubx files. by @haewiful (#1370)
* Include method type parameters in astubx files by @haewiful (#1370)
🤖 Prompt for AI Agents
In CHANGELOG.md around line 14, remove the stray period before the contributor
attribution so the entry reads "* Include method type parameters in astubx files
by @haewiful (#1370)" (ensure a single space before "by" and no extra
punctuation), matching the established changelog formatting used elsewhere.

@yuxincs yuxincs merged commit 0430a42 into master Dec 19, 2025
10 of 11 checks passed
@yuxincs yuxincs deleted the 0.12.15-changelog branch December 19, 2025 17:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants