Skip to content

[refactor] Separate CHANGELOG files for each minor version - #3454

Open
vankichi wants to merge 4 commits into
mainfrom
refactor/docs/separate-changelog-each-minor-version
Open

[refactor] Separate CHANGELOG files for each minor version#3454
vankichi wants to merge 4 commits into
mainfrom
refactor/docs/separate-changelog-each-minor-version

Conversation

@vankichi

@vankichi vankichi commented Jan 20, 2026

Copy link
Copy Markdown
Contributor

Description

I have updated the directory structure and release logic for divide CHANGELOG.

In my first commit, I have updated below:

  • create directory of CHANGELOG: such as release/v${major}-${minor}
  • add make command for update minor CHANGELOG
  • rename previous make command changelog/update to changelog/update/origin

I DO NOT apply yet:

  • What should we handle previous CHANGELOG? delete it or edit it?

@kpango @kmrmt @Matts966
Let me know how it handle and any feedback.

Related Issue

close #3103

Versions

  • Vald Version: v1.7.17
  • Go Version: v1.25.5
  • Rust Version: v1.92.0
  • Docker Version: v29.1.3
  • Kubernetes Version: v1.34.3
  • Helm Version: v4.0.4
  • NGT Version: v2.5.0
  • Faiss Version: v1.13.1

Checklist

Special notes for your reviewer

Summary by CodeRabbit

  • Documentation

    • Expanded and organized versioned changelogs with a central index for easier browsing of release history.
    • Added templated README entries to surface per-version release notes.
  • Chores

    • Improved release generation so new changelog entries are produced and included automatically in release PRs.
    • Streamlined release targets for consistent changelog output.

@vankichi
vankichi requested a review from kpango January 20, 2026 15:41
@coderabbitai

coderabbitai Bot commented Jan 20, 2026

Copy link
Copy Markdown
Contributor

Caution

Review failed

Failed to post review comments

📝 Walkthrough

Walkthrough

This PR splits changelog management into per-minor-version files, updates the Makefile to extract a RELEASE_TARGET_VERSION (major.minor) and emit versioned changelogs and a CHANGELOG/README.md index, and adjusts the release workflow to stage the generated CHANGELOG path for commits. New changelog templates are added under hack/.

Changes

Cohort / File(s) Summary
Release workflow & make targets
.github/workflows/_release-pr.yaml, Makefile
Removed intermediate changelog/next/print step in release workflow; added RELEASE_TARGET_VERSION (major.minor) extraction; reworked changelog/update to write versioned files under CHANGELOG/CHANGELOG-$(RELEASE_TARGET_VERSION).md and CHANGELOG/README.md; added changelog/readme/print phony target.
Git manifest
.gitfiles
Added tracking entries for CHANGELOG/CHANGELOG-*.md, CHANGELOG/README.md, and hack/CHANGELOG-README.template.md / hack/CHANGELOG.template.md.
Versioned changelogs
CHANGELOG/CHANGELOG-0.0.md, CHANGELOG/CHANGELOG-1.0.md, CHANGELOG/CHANGELOG-1.1.md, CHANGELOG/CHANGELOG-1.2.md, CHANGELOG/CHANGELOG-1.3.md, CHANGELOG/CHANGELOG-1.4.md, CHANGELOG/CHANGELOG-1.5.md, CHANGELOG/CHANGELOG-1.6.md, CHANGELOG/CHANGELOG-1.7.md
Added new top-of-file entries for new releases across multiple minor versions (v0.0.66, v1.0.4, v1.1.2, v1.2.4, v1.3.1, v1.4.1, v1.5.6, v1.6.3, v1.7.17) including Docker image tables, docs links, and categorized change lists; preserved prior history.
Changelog index & templates
CHANGELOG/README.md, CHANGELOG.md, hack/CHANGELOG-README.template.md
Added CHANGELOG/README.md index linking to versioned changelogs, introduced README template for generating per-version links, and updated root CHANGELOG.md references.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor "GitHub Actions" as GH
  participant "Release Makefile" as Makefile
  participant "Repo FS" as FS
  participant "Git (commit/push)" as Git

  GH->>Makefile: trigger release job
  Makefile->>Makefile: read versions/VALD_VERSION
  Makefile->>Makefile: derive RELEASE_TARGET_VERSION (major.minor)
  Makefile->>FS: render next changelog -> $(TEMP_DIR)/CHANGELOG.md
  Makefile->>FS: render README template -> $(TEMP_DIR)/README.md
  Makefile->>FS: move files -> CHANGELOG/CHANGELOG-$(RELEASE_TARGET_VERSION).md and CHANGELOG/README.md
  Makefile->>Git: add `CHANGELOG`, `CHANGELOG.md`, `CHANGELOG/...` paths
  Git->>Git: commit & push release PR
  Git->>GH: return PR status
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~22 minutes

Possibly related PRs

Suggested labels

type/documentation

Suggested reviewers

  • kpango
  • kmrmt
  • Matts966

Poem

✨ Changelogs split by minor line,
Templates hum and versions shine,
Makefile plots the release way,
README points the readers' day,
Commits march forth — tidy and fine.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main refactoring change: separating CHANGELOG files by minor version, which aligns with the primary objective of dividing the monolithic CHANGELOG into per-minor-version files.
Linked Issues check ✅ Passed The PR successfully addresses #3103's core objectives: CHANGELOG files are divided by minor version (CHANGELOG/CHANGELOG-*.md structure), the Makefile includes automation to generate per-version changelogs via the new changelog/readme/print target and refactored changelog/update logic, and the release workflow (.github/workflows/_release-pr.yaml) integrates with the new structure by staging CHANGELOG artifacts.
Out of Scope Changes check ✅ Passed All changes remain tightly scoped to the per-minor-version CHANGELOG refactoring: Makefile changes implement version-aware changelog generation, workflow updates handle the new directory structure, .gitfiles tracks versioned changelog artifacts, and the CHANGELOG/ directory contains only release notes—no unrelated code modifications detected.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch refactor/docs/separate-changelog-each-minor-version

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.

@vankichi
vankichi requested a review from Matts966 January 20, 2026 15:42
@vdaas-ci

Copy link
Copy Markdown
Collaborator

[CHATOPS:HELP] ChatOps commands.

  • 🙆‍♀️ /approve - approve
  • 🍱 /format - format codes and add licenses
  • /gen-test - generate test codes
  • 🏷️ /label - add labels
  • 🔚 2️⃣ 🔚 /label actions/e2e-deploy - run E2E deploy & integration test

@coderabbitai coderabbitai Bot left a comment

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.

Actionable comments posted: 5

🤖 Fix all issues with AI agents
In @.github/workflows/_release-pr.yaml:
- Line 129: The workflow contains a typo: the command invocation "makr
changelog/update/minor BODY=\"$BODY\"" is invalid; replace "makr" with "make" so
the line reads "make changelog/update/minor BODY=\"$BODY\"" to ensure the
release job invokes the correct Make target.
- Around line 128-129: Fix the typo in the workflow by changing the `makr`
command to `make` for the `changelog/update/minor` invocation, and correct the
Makefile .PHONY declaration so the phony name matches the actual target: replace
the misspelled `chagenlog/update/minor` with `changelog/update/minor` so the
`.PHONY` entry exactly matches the `changelog/update/minor` target.

In `@Makefile`:
- Around line 1014-1023: Fix the typo in the phony declaration and make the
minor changelog header consistent: change ".PHONY: chagenlog/update/minor" to
".PHONY: changelog/update/minor" so the phony target matches the actual target
name, and update the header echo in the changelog/update/minor recipe (the line
that writes "# CHANGELOG $(VERSION_RELEASE_DIR).x" into
$(TEMP_DIR)/CHANGELOG.md) to use the same header level/format used by existing
changelog files (e.g., "## CHANGELOG $(VERSION_RELEASE_DIR).x") so the generated
file matches repository conventions.

In `@release/v1-1/CHANGELOG.md`:
- Around line 95-98: Fix spelling/grammar in the changelog lines: change "non
exsiting" to "non-existing" in the entry "bugfix remove api return wrong error
of non exsiting replicas (`#1318`)" (and rephrase to "Bugfix: remove API returned
wrong error for non-existing replicas"), change "alogrithm" to "algorithm" in
"Implement test for internal/core/alogrithm/ngt/option and refactor (`#1251`)" (to
"Implement test for internal/core/algorithm/ngt/option and refactor"), and
reword "fix build error due to e2e benchmark invalid creating new client
(`#1221`)" to correct grammar such as "Fix build error due to e2e benchmark
invalid creation of new client (`#1221`)"; also normalize capitalization
(capitalize "Bugfix"/"Fix"/"Implement"/"Update") and apply the same typo fixes
to the duplicate occurrences noted (lines 357-359).

In `@release/v1-5/CHANGELOG.md`:
- Around line 447-452: Update the three changelog bullets to correct spelling
and casing: change "helm operator" to "Helm operator" (or "Helm Operator" for
consistent title casing), fix "depentency" to "dependency" in the third bullet,
and normalize "security" / "Security" capitalization consistently (e.g., all
start with a capital letter). Apply the same corrections to the duplicate
entries at lines 629-632 so both sections match.

Comment thread .github/workflows/_release-pr.yaml Outdated
Comment thread .github/workflows/_release-pr.yaml Outdated
Comment thread Makefile Outdated
Comment thread CHANGELOG/CHANGELOG-1.1.md
Comment thread CHANGELOG/CHANGELOG-1.5.md
@vankichi
vankichi force-pushed the refactor/docs/separate-changelog-each-minor-version branch from b59efaf to eccc40a Compare January 20, 2026 15:53
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jan 20, 2026

Copy link
Copy Markdown

Deploying vald with  Cloudflare Pages  Cloudflare Pages

Latest commit: 09aedda
Status: ✅  Deploy successful!
Preview URL: https://f92d4e8c.vald.pages.dev
Branch Preview URL: https://refactor-docs-separate-chang.vald.pages.dev

View logs

@vankichi
vankichi force-pushed the refactor/docs/separate-changelog-each-minor-version branch from eccc40a to 85d2709 Compare January 20, 2026 15:56

@coderabbitai coderabbitai Bot left a comment

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.

Actionable comments posted: 5

🤖 Fix all issues with AI agents
In `@release/v1-0/CHANGELOG.md`:
- Line 547: Update the changelog entry that currently reads "change grpc
bidi-stream error handling and change grpc API interface" to remove the
redundant phrase "API interface" and use either "gRPC API" or "gRPC interface"
instead (e.g., "change gRPC bidi-stream error handling and change gRPC API" or
"change gRPC bidi-stream error handling and change gRPC interface") so the
wording is concise and consistent; locate the exact phrase "grpc API interface"
in the CHANGELOG.md and replace it accordingly.

In `@release/v1-2/CHANGELOG.md`:
- Line 69: The CHANGELOG entry contains a typo and malformed text: replace "fix
unlimited gorountine processing in kvsdb (`#1458`)" with a correctly spelled and
consistently formatted line such as "fix: unlimited goroutine processing in
kvsdb (`#1458`)" (or follow the repo's existing changelog casing/prefix style),
and apply the same correction to the other occurrences referenced (lines
matching the same phrase at the other locations). Locate the occurrences of that
exact phrase in CHANGELOG.md and update spelling ("goroutine") and formatting to
match other changelog entries.

In `@release/v1-4/CHANGELOG.md`:
- Line 136: Fix the two typos in the changelog by replacing the erroneous
tokens: change "minnum" to "min_num" in the entry that reads "Add agent minnum
field and support fp16" and change "Cellebration" to "Celebration" where that
token appears; update the exact strings in CHANGELOG.md so the corrected entries
read "Add agent min_num field and support fp16" and "Celebration" respectively.

In `@release/v1-6/CHANGELOG.md`:
- Line 305: Update the changelog entry that currently reads "- Fix failed github
workflow [`#1745`](https://github.com/vdaas/vald/pull/1745)" to capitalize
"GitHub" (i.e., change "github" to "GitHub") so the entry becomes "- Fix failed
GitHub workflow [`#1745`](https://github.com/vdaas/vald/pull/1745)"; locate the
exact string "- Fix failed github workflow
[`#1745`](https://github.com/vdaas/vald/pull/1745)" in CHANGELOG.md and edit it
accordingly.

In `@release/v1-7/CHANGELOG.md`:
- Around line 95-101: Fix the user-visible typos and capitalization
inconsistencies in the CHANGELOG entries: correct "despcription" to
"description" in the "[VALD-148] hotfix: Fix name & despcription of metrics"
line, standardize casing for section labels (e.g., change "hotfix" to "Hotfix"
or make all bracketed tags consistently capitalized like "[Bugfix]"), and ensure
the emoji/label line ":bug: Bugfix" and the "[BUGFIX] use client config for tls
dialer" entry have consistent capitalization (e.g., "[Bugfix] Use client config
for TLS dialer"); apply these same fixes to the other occurrences mentioned
(lines around 185-197 and 1328-1331) so all release note entries match the
corrected spelling and capitalization.
♻️ Duplicate comments (2)
Makefile (1)

1014-1020: Align minor changelog header with dotted version format.

The generated header currently becomes v1-7.x, but existing changelogs (e.g., release/v1-7/CHANGELOG.md) use v1.7.x.

🔧 Proposed fix
-	echo "# CHANGELOG $(VERSION_RELEASE_DIR).x" > $(TEMP_DIR)/CHANGELOG.md
+	echo "# CHANGELOG $(subst -,.,$(VERSION_RELEASE_DIR)).x" > $(TEMP_DIR)/CHANGELOG.md
release/v1-1/CHANGELOG.md (1)

95-98: Fix spelling/grammar in the changelog entries.

✏️ Proposed fix
- - bugfix remove api return wrong error of non exsiting replicas (`#1318`)
+ - Bugfix: remove API returning wrong error for non-existing replicas (`#1318`)
- - Implement test for internal/core/alogrithm/ngt/option and refactor (`#1251`)
+ - Implement test for internal/core/algorithm/ngt/option and refactor (`#1251`)
- - fix build error due to e2e benchmark invalid creating new client (`#1221`)
+ - Fix build error due to invalid e2e benchmark client creation (`#1221`)

- - Update Tutotial/Get-Started (`#1203`)
+ - Update Tutorial/Get-Started (`#1203`)

Also applies to: 357-359

Comment thread CHANGELOG/CHANGELOG-1.0.md
Comment thread CHANGELOG/CHANGELOG-1.2.md
Comment thread CHANGELOG/CHANGELOG-1.4.md
Comment thread CHANGELOG/CHANGELOG-1.6.md
Comment thread CHANGELOG/CHANGELOG-1.7.md
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jan 20, 2026
@kpango

kpango commented Jan 21, 2026

Copy link
Copy Markdown
Collaborator

Can you modify your approach to align with this pattern?
https://github.com/kubernetes/kubernetes/tree/master/CHANGELOG

And you can remove current CHANGELOG.md and create CHANGELOG directory

Additionally, in accordance with the two-branch workflow, please ensure that the changelog for the minor version is updated whenever changes are made to the release branch.

@vankichi
vankichi force-pushed the refactor/docs/separate-changelog-each-minor-version branch from 85d2709 to 200380d Compare February 11, 2026 16:49
@vankichi
vankichi force-pushed the refactor/docs/separate-changelog-each-minor-version branch from 200380d to dd5eb6e Compare March 17, 2026 03:02

ghost left a comment

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.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

LanguageTool

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix dead link [#1807](https://github.com/vdaas/vald/pull/1807)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix string concat buffer overflow [#1806](https://github.com/vdaas/vald/pull/1806)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- fix metrics bug [#1800](https://github.com/vdaas/vald/pull/1800)


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Fix fossa workflow bug [#1787](https://github.com/vdaas/vald/pull/1787)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Mod, mod
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Sum, sum
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor merge docker and github actions workflow gen logic [#2769](https://github.com/vdaas/vald/pull/2769) ([#2774](https://github.com/vdaas/vald/pull/2774))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2773](https://github.com/vdaas/vald/pull/2773) ([#2779](https://github.com/vdaas/vald/pull/2779))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The word ‘informations’ is a legal term. In standard English, the word ‘information’ is a non-count noun. (INFORMATIONS[1])
Suggestions: information
URL: https://www.lexico.com/definition/information
Rule: https://community.languagetool.org/rule/show/INFORMATIONS?lang=en-US&subId=1
Category: NONSTANDARD_PHRASES

3. refactor index manager service add index service API to expose index informations [#2525](https://github.com/vdaas/vald/pull/2525) ([#2532](https://github.com/vdaas/vald/pull/2532))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2141](https://github.com/vdaas/vald/pull/2141)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update docs: search API and client API config [#2081](https://github.com/vdaas/vald/pull/2081)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update golangci-lint configuration: use white-list configuration pattern [#2106](https://github.com/vdaas/vald/pull/2106)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove some linters to make ci faster [#2116](https://github.com/vdaas/vald/pull/2116)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add broken index count metrics [#2083](https://github.com/vdaas/vald/pull/2083)


[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: SVG
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING

- Modified svg images [#2178](https://github.com/vdaas/vald/pull/2178)


[LanguageTool] reported by reviewdog 🐶
After the auxiliary verb ‘do’, use the base form of a verb. Did you mean “exist”? (AUXILIARY_DO_WITH_INCORRECT_VERB_FORM[1])
Suggestions: exist
URL: https://grammar.collinsdictionary.com/easy-learning/how-do-you-use-the-verb-do-in-english
Rule: https://community.languagetool.org/rule/show/AUXILIARY_DO_WITH_INCORRECT_VERB_FORM?lang=en-US&subId=1
Category: GRAMMAR

- Fix to create index_path when it does not exists [#2060](https://github.com/vdaas/vald/pull/2060)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Create README for each docker image [#2014](https://github.com/vdaas/vald/pull/2014)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Format code with prettier and gofumpt [#2015](https://github.com/vdaas/vald/pull/2015)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fixed duplicate counting in CPU graphs [#2019](https://github.com/vdaas/vald/pull/2019)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove nvimlog [#1994](https://github.com/vdaas/vald/pull/1994)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update unit test guideline for unimplemented test [#1983](https://github.com/vdaas/vald/pull/1983)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update internal/info test and add new case for coverage [#2003](https://github.com/vdaas/vald/pull/2003)


[LanguageTool] reported by reviewdog 🐶
This word is normally spelled as one. (EN_COMPOUNDS_RE_PARSE)
Suggestions: reparse
Rule: https://community.languagetool.org/rule/show/EN_COMPOUNDS_RE_PARSE?lang=en-US
Category: MISC

- Non-gRPC style error parse result returns Unknown status, it should be re-parse to find inside status [#1981](https://github.com/vdaas/vald/pull/1981)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add new API parameter and update observability docs [#1966](https://github.com/vdaas/vald/pull/1966)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update test template to exclude deepsource warning [#1954](https://github.com/vdaas/vald/pull/1954)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add manifest to deploy opentelemetry-operator [#1819](https://github.com/vdaas/vald/pull/1819)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor circuitbreaker [#1816](https://github.com/vdaas/vald/pull/1816)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor Insert Upsert Testing [#1919](https://github.com/vdaas/vald/pull/1919)

ghost left a comment

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.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

LanguageTool

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix dead link [#1807](https://github.com/vdaas/vald/pull/1807)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix string concat buffer overflow [#1806](https://github.com/vdaas/vald/pull/1806)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- fix metrics bug [#1800](https://github.com/vdaas/vald/pull/1800)


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Fix fossa workflow bug [#1787](https://github.com/vdaas/vald/pull/1787)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Mod, mod
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Sum, sum
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor merge docker and github actions workflow gen logic [#2769](https://github.com/vdaas/vald/pull/2769) ([#2774](https://github.com/vdaas/vald/pull/2774))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2773](https://github.com/vdaas/vald/pull/2773) ([#2779](https://github.com/vdaas/vald/pull/2779))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The word ‘informations’ is a legal term. In standard English, the word ‘information’ is a non-count noun. (INFORMATIONS[1])
Suggestions: information
URL: https://www.lexico.com/definition/information
Rule: https://community.languagetool.org/rule/show/INFORMATIONS?lang=en-US&subId=1
Category: NONSTANDARD_PHRASES

3. refactor index manager service add index service API to expose index informations [#2525](https://github.com/vdaas/vald/pull/2525) ([#2532](https://github.com/vdaas/vald/pull/2532))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2141](https://github.com/vdaas/vald/pull/2141)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update docs: search API and client API config [#2081](https://github.com/vdaas/vald/pull/2081)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update golangci-lint configuration: use white-list configuration pattern [#2106](https://github.com/vdaas/vald/pull/2106)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove some linters to make ci faster [#2116](https://github.com/vdaas/vald/pull/2116)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add broken index count metrics [#2083](https://github.com/vdaas/vald/pull/2083)


[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: SVG
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING

- Modified svg images [#2178](https://github.com/vdaas/vald/pull/2178)


[LanguageTool] reported by reviewdog 🐶
After the auxiliary verb ‘do’, use the base form of a verb. Did you mean “exist”? (AUXILIARY_DO_WITH_INCORRECT_VERB_FORM[1])
Suggestions: exist
URL: https://grammar.collinsdictionary.com/easy-learning/how-do-you-use-the-verb-do-in-english
Rule: https://community.languagetool.org/rule/show/AUXILIARY_DO_WITH_INCORRECT_VERB_FORM?lang=en-US&subId=1
Category: GRAMMAR

- Fix to create index_path when it does not exists [#2060](https://github.com/vdaas/vald/pull/2060)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Create README for each docker image [#2014](https://github.com/vdaas/vald/pull/2014)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Format code with prettier and gofumpt [#2015](https://github.com/vdaas/vald/pull/2015)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fixed duplicate counting in CPU graphs [#2019](https://github.com/vdaas/vald/pull/2019)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove nvimlog [#1994](https://github.com/vdaas/vald/pull/1994)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update unit test guideline for unimplemented test [#1983](https://github.com/vdaas/vald/pull/1983)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update internal/info test and add new case for coverage [#2003](https://github.com/vdaas/vald/pull/2003)


[LanguageTool] reported by reviewdog 🐶
This word is normally spelled as one. (EN_COMPOUNDS_RE_PARSE)
Suggestions: reparse
Rule: https://community.languagetool.org/rule/show/EN_COMPOUNDS_RE_PARSE?lang=en-US
Category: MISC

- Non-gRPC style error parse result returns Unknown status, it should be re-parse to find inside status [#1981](https://github.com/vdaas/vald/pull/1981)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add new API parameter and update observability docs [#1966](https://github.com/vdaas/vald/pull/1966)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update test template to exclude deepsource warning [#1954](https://github.com/vdaas/vald/pull/1954)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add manifest to deploy opentelemetry-operator [#1819](https://github.com/vdaas/vald/pull/1819)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor circuitbreaker [#1816](https://github.com/vdaas/vald/pull/1816)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor Insert Upsert Testing [#1919](https://github.com/vdaas/vald/pull/1919)

ghost left a comment

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.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

LanguageTool

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix dead link [#1807](https://github.com/vdaas/vald/pull/1807)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix string concat buffer overflow [#1806](https://github.com/vdaas/vald/pull/1806)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- fix metrics bug [#1800](https://github.com/vdaas/vald/pull/1800)


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Fix fossa workflow bug [#1787](https://github.com/vdaas/vald/pull/1787)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Mod, mod
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Sum, sum
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor merge docker and github actions workflow gen logic [#2769](https://github.com/vdaas/vald/pull/2769) ([#2774](https://github.com/vdaas/vald/pull/2774))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2773](https://github.com/vdaas/vald/pull/2773) ([#2779](https://github.com/vdaas/vald/pull/2779))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The word ‘informations’ is a legal term. In standard English, the word ‘information’ is a non-count noun. (INFORMATIONS[1])
Suggestions: information
URL: https://www.lexico.com/definition/information
Rule: https://community.languagetool.org/rule/show/INFORMATIONS?lang=en-US&subId=1
Category: NONSTANDARD_PHRASES

3. refactor index manager service add index service API to expose index informations [#2525](https://github.com/vdaas/vald/pull/2525) ([#2532](https://github.com/vdaas/vald/pull/2532))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2141](https://github.com/vdaas/vald/pull/2141)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update docs: search API and client API config [#2081](https://github.com/vdaas/vald/pull/2081)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update golangci-lint configuration: use white-list configuration pattern [#2106](https://github.com/vdaas/vald/pull/2106)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove some linters to make ci faster [#2116](https://github.com/vdaas/vald/pull/2116)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add broken index count metrics [#2083](https://github.com/vdaas/vald/pull/2083)


[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: SVG
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING

- Modified svg images [#2178](https://github.com/vdaas/vald/pull/2178)


[LanguageTool] reported by reviewdog 🐶
After the auxiliary verb ‘do’, use the base form of a verb. Did you mean “exist”? (AUXILIARY_DO_WITH_INCORRECT_VERB_FORM[1])
Suggestions: exist
URL: https://grammar.collinsdictionary.com/easy-learning/how-do-you-use-the-verb-do-in-english
Rule: https://community.languagetool.org/rule/show/AUXILIARY_DO_WITH_INCORRECT_VERB_FORM?lang=en-US&subId=1
Category: GRAMMAR

- Fix to create index_path when it does not exists [#2060](https://github.com/vdaas/vald/pull/2060)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Create README for each docker image [#2014](https://github.com/vdaas/vald/pull/2014)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Format code with prettier and gofumpt [#2015](https://github.com/vdaas/vald/pull/2015)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fixed duplicate counting in CPU graphs [#2019](https://github.com/vdaas/vald/pull/2019)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove nvimlog [#1994](https://github.com/vdaas/vald/pull/1994)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update unit test guideline for unimplemented test [#1983](https://github.com/vdaas/vald/pull/1983)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update internal/info test and add new case for coverage [#2003](https://github.com/vdaas/vald/pull/2003)


[LanguageTool] reported by reviewdog 🐶
This word is normally spelled as one. (EN_COMPOUNDS_RE_PARSE)
Suggestions: reparse
Rule: https://community.languagetool.org/rule/show/EN_COMPOUNDS_RE_PARSE?lang=en-US
Category: MISC

- Non-gRPC style error parse result returns Unknown status, it should be re-parse to find inside status [#1981](https://github.com/vdaas/vald/pull/1981)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add new API parameter and update observability docs [#1966](https://github.com/vdaas/vald/pull/1966)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update test template to exclude deepsource warning [#1954](https://github.com/vdaas/vald/pull/1954)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add manifest to deploy opentelemetry-operator [#1819](https://github.com/vdaas/vald/pull/1819)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor circuitbreaker [#1816](https://github.com/vdaas/vald/pull/1816)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor Insert Upsert Testing [#1919](https://github.com/vdaas/vald/pull/1919)

@vankichi
vankichi force-pushed the refactor/docs/separate-changelog-each-minor-version branch from 611661c to 9acaa68 Compare March 17, 2026 13:57

ghost left a comment

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.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

LanguageTool

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix dead link [#1807](https://github.com/vdaas/vald/pull/1807)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix string concat buffer overflow [#1806](https://github.com/vdaas/vald/pull/1806)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- fix metrics bug [#1800](https://github.com/vdaas/vald/pull/1800)


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Fix fossa workflow bug [#1787](https://github.com/vdaas/vald/pull/1787)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Mod, mod
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Sum, sum
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor merge docker and github actions workflow gen logic [#2769](https://github.com/vdaas/vald/pull/2769) ([#2774](https://github.com/vdaas/vald/pull/2774))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2773](https://github.com/vdaas/vald/pull/2773) ([#2779](https://github.com/vdaas/vald/pull/2779))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The word ‘informations’ is a legal term. In standard English, the word ‘information’ is a non-count noun. (INFORMATIONS[1])
Suggestions: information
URL: https://www.lexico.com/definition/information
Rule: https://community.languagetool.org/rule/show/INFORMATIONS?lang=en-US&subId=1
Category: NONSTANDARD_PHRASES

3. refactor index manager service add index service API to expose index informations [#2525](https://github.com/vdaas/vald/pull/2525) ([#2532](https://github.com/vdaas/vald/pull/2532))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2141](https://github.com/vdaas/vald/pull/2141)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update docs: search API and client API config [#2081](https://github.com/vdaas/vald/pull/2081)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update golangci-lint configuration: use white-list configuration pattern [#2106](https://github.com/vdaas/vald/pull/2106)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove some linters to make ci faster [#2116](https://github.com/vdaas/vald/pull/2116)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add broken index count metrics [#2083](https://github.com/vdaas/vald/pull/2083)


[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: SVG
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING

- Modified svg images [#2178](https://github.com/vdaas/vald/pull/2178)


[LanguageTool] reported by reviewdog 🐶
After the auxiliary verb ‘do’, use the base form of a verb. Did you mean “exist”? (AUXILIARY_DO_WITH_INCORRECT_VERB_FORM[1])
Suggestions: exist
URL: https://grammar.collinsdictionary.com/easy-learning/how-do-you-use-the-verb-do-in-english
Rule: https://community.languagetool.org/rule/show/AUXILIARY_DO_WITH_INCORRECT_VERB_FORM?lang=en-US&subId=1
Category: GRAMMAR

- Fix to create index_path when it does not exists [#2060](https://github.com/vdaas/vald/pull/2060)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Create README for each docker image [#2014](https://github.com/vdaas/vald/pull/2014)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Format code with prettier and gofumpt [#2015](https://github.com/vdaas/vald/pull/2015)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fixed duplicate counting in CPU graphs [#2019](https://github.com/vdaas/vald/pull/2019)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove nvimlog [#1994](https://github.com/vdaas/vald/pull/1994)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update unit test guideline for unimplemented test [#1983](https://github.com/vdaas/vald/pull/1983)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update internal/info test and add new case for coverage [#2003](https://github.com/vdaas/vald/pull/2003)


[LanguageTool] reported by reviewdog 🐶
This word is normally spelled as one. (EN_COMPOUNDS_RE_PARSE)
Suggestions: reparse
Rule: https://community.languagetool.org/rule/show/EN_COMPOUNDS_RE_PARSE?lang=en-US
Category: MISC

- Non-gRPC style error parse result returns Unknown status, it should be re-parse to find inside status [#1981](https://github.com/vdaas/vald/pull/1981)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add new API parameter and update observability docs [#1966](https://github.com/vdaas/vald/pull/1966)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update test template to exclude deepsource warning [#1954](https://github.com/vdaas/vald/pull/1954)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add manifest to deploy opentelemetry-operator [#1819](https://github.com/vdaas/vald/pull/1819)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor circuitbreaker [#1816](https://github.com/vdaas/vald/pull/1816)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor Insert Upsert Testing [#1919](https://github.com/vdaas/vald/pull/1919)

@vankichi
vankichi marked this pull request as ready for review March 18, 2026 01:01
Signed-off-by: vankichi <kyukawa315@gmail.com>
vankichi added 3 commits April 13, 2026 00:31
Signed-off-by: vankichi <kyukawa315@gmail.com>
Signed-off-by: vankichi <kyukawa315@gmail.com>
Signed-off-by: vankichi <kyukawa315@gmail.com>
Copilot Bot review requested due to automatic review settings April 12, 2026 15:31
@vankichi
vankichi force-pushed the refactor/docs/separate-changelog-each-minor-version branch from 9acaa68 to 09aedda Compare April 12, 2026 15:31

ghost left a comment

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.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

LanguageTool

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix dead link [#1807](https://github.com/vdaas/vald/pull/1807)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fix string concat buffer overflow [#1806](https://github.com/vdaas/vald/pull/1806)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- fix metrics bug [#1800](https://github.com/vdaas/vald/pull/1800)


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Fix fossa workflow bug [#1787](https://github.com/vdaas/vald/pull/1787)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Mod, mod
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
Suggestions: Sum, sum
Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
Category: CASING

feat: automatically resolve go.mod & go.sum conflicts in backport workflow [#2980](https://github.com/vdaas/vald/pull/2980)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor merge docker and github actions workflow gen logic [#2769](https://github.com/vdaas/vald/pull/2769) ([#2774](https://github.com/vdaas/vald/pull/2774))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2773](https://github.com/vdaas/vald/pull/2773) ([#2779](https://github.com/vdaas/vald/pull/2779))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The word ‘informations’ is a legal term. In standard English, the word ‘information’ is a non-count noun. (INFORMATIONS[1])
Suggestions: information
URL: https://www.lexico.com/definition/information
Rule: https://community.languagetool.org/rule/show/INFORMATIONS?lang=en-US&subId=1
Category: NONSTANDARD_PHRASES

3. refactor index manager service add index service API to expose index informations [#2525](https://github.com/vdaas/vald/pull/2525) ([#2532](https://github.com/vdaas/vald/pull/2532))


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


[LanguageTool] reported by reviewdog 🐶
The official name of this software platform is spelled with a capital “H”. (GITHUB[1])
Suggestions: GitHub
URL: https://en.wikipedia.org/wiki/GitHub
Rule: https://community.languagetool.org/rule/show/GITHUB?lang=en-US&subId=1
Category: CASING

- Refactor github actions [#2141](https://github.com/vdaas/vald/pull/2141)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update docs: search API and client API config [#2081](https://github.com/vdaas/vald/pull/2081)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update golangci-lint configuration: use white-list configuration pattern [#2106](https://github.com/vdaas/vald/pull/2106)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove some linters to make ci faster [#2116](https://github.com/vdaas/vald/pull/2116)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add broken index count metrics [#2083](https://github.com/vdaas/vald/pull/2083)


[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: SVG
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING

- Modified svg images [#2178](https://github.com/vdaas/vald/pull/2178)


[LanguageTool] reported by reviewdog 🐶
After the auxiliary verb ‘do’, use the base form of a verb. Did you mean “exist”? (AUXILIARY_DO_WITH_INCORRECT_VERB_FORM[1])
Suggestions: exist
URL: https://grammar.collinsdictionary.com/easy-learning/how-do-you-use-the-verb-do-in-english
Rule: https://community.languagetool.org/rule/show/AUXILIARY_DO_WITH_INCORRECT_VERB_FORM?lang=en-US&subId=1
Category: GRAMMAR

- Fix to create index_path when it does not exists [#2060](https://github.com/vdaas/vald/pull/2060)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Create README for each docker image [#2014](https://github.com/vdaas/vald/pull/2014)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Format code with prettier and gofumpt [#2015](https://github.com/vdaas/vald/pull/2015)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Fixed duplicate counting in CPU graphs [#2019](https://github.com/vdaas/vald/pull/2019)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Remove nvimlog [#1994](https://github.com/vdaas/vald/pull/1994)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update unit test guideline for unimplemented test [#1983](https://github.com/vdaas/vald/pull/1983)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update internal/info test and add new case for coverage [#2003](https://github.com/vdaas/vald/pull/2003)


[LanguageTool] reported by reviewdog 🐶
This word is normally spelled as one. (EN_COMPOUNDS_RE_PARSE)
Suggestions: reparse
Rule: https://community.languagetool.org/rule/show/EN_COMPOUNDS_RE_PARSE?lang=en-US
Category: MISC

- Non-gRPC style error parse result returns Unknown status, it should be re-parse to find inside status [#1981](https://github.com/vdaas/vald/pull/1981)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add new API parameter and update observability docs [#1966](https://github.com/vdaas/vald/pull/1966)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Update test template to exclude deepsource warning [#1954](https://github.com/vdaas/vald/pull/1954)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Add manifest to deploy opentelemetry-operator [#1819](https://github.com/vdaas/vald/pull/1819)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor circuitbreaker [#1816](https://github.com/vdaas/vald/pull/1816)


[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

- Refactor Insert Upsert Testing [#1919](https://github.com/vdaas/vald/pull/1919)

Comment thread CHANGELOG/CHANGELOG-0.0.md
Comment thread CHANGELOG/CHANGELOG-0.0.md
Comment thread CHANGELOG/CHANGELOG-0.0.md
Comment thread CHANGELOG/CHANGELOG-0.0.md
- Documentation: add concept section to the architecture document ([#438](https://github.com/vdaas/vald/pull/438))
- feat: level pacakge test ([#455](https://github.com/vdaas/vald/pull/455))
- [ImgBot] Optimize images ([#457](https://github.com/vdaas/vald/pull/457))
- fix document and added png images ([#456](https://github.com/vdaas/vald/pull/456))

ghost Apr 12, 2026

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.

[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: PNG
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING


- [GoDoc](https://pkg.go.dev/github.com/vdaas/vald@v1.5.1)
- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v1.5.1/charts/vald/README.md)
- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v1.5.1/charts/vald-helm-operator/README.md)

ghost Apr 12, 2026

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.

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


:bug: bugfix

- bugfix internal/file and add CreateTemp function and resolve go module failure (#1608)

ghost Apr 12, 2026

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.

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION


:memo: document

- add vald users (#1601)

ghost Apr 12, 2026

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.

[LanguageTool] reported by reviewdog 🐶
File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
Suggestions: PDF
URL: https://languagetool.org/insights/post/spelling-capital-letters/
Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
Category: CASING


### Changes

:sparkles: New features

ghost Apr 12, 2026

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.

[LanguageTool] reported by reviewdog 🐶
When ‘back-up’ is used as a noun or modifier, it needs to be hyphenated. (VERB_NOUN_CONFUSION[1])
Suggestions: back-up
Rule: https://community.languagetool.org/rule/show/VERB_NOUN_CONFUSION?lang=en-US&subId=1
Category: COMPOUNDING

:bug: Bugfix

- Add error handling when there is no data in google cloud storage. (#1556)
- Reviewdog markdown workflow (#1585)

ghost Apr 12, 2026

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.

[LanguageTool] reported by reviewdog 🐶
Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION[1])
Suggestions: ``
Rule: https://community.languagetool.org/rule/show/UNLIKELY_OPENING_PUNCTUATION?lang=en-US&subId=1
Category: PUNCTUATION

ghost left a comment

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.

Pull request overview

Refactors Vald’s changelog structure to maintain separate changelog files per minor version and updates the release automation to write into the new structure.

Changes:

  • Update make changelog/update to write into CHANGELOG/CHANGELOG-<major>.<minor>.md and maintain CHANGELOG/README.md.
  • Add a small template (hack/CHANGELOG-README.template.md) used to append new minor-version links.
  • Update the release PR workflow to include the CHANGELOG/ directory in commits and add the new files to .gitfiles.

Reviewed changes

Copilot reviewed 15 out of 16 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
Makefile Changes changelog generation to target CHANGELOG/ and introduces RELEASE_TARGET_VERSION.
hack/CHANGELOG-README.template.md Adds template for generating a README link entry per minor version.
CHANGELOG/README.md Adds new changelog index within CHANGELOG/.
CHANGELOG/CHANGELOG-*.md Adds per-minor changelog files.
.github/workflows/_release-pr.yaml Ensures release PRs commit the new CHANGELOG/ directory.
.gitfiles Adds the new changelog paths and template to the tracked file list.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread Makefile
Comment on lines 1031 to +1035
changelog/update:
echo "# CHANGELOG" > $(TEMP_DIR)/CHANGELOG.md
echo "" >> $(TEMP_DIR)/CHANGELOG.md
$(MAKE) -s changelog/next/print >> $(TEMP_DIR)/CHANGELOG.md
echo "" >> $(TEMP_DIR)/CHANGELOG.md
tail -n +2 $(ROOTDIR)/CHANGELOG.md >> $(TEMP_DIR)/CHANGELOG.md
mv -f $(TEMP_DIR)/CHANGELOG.md $(ROOTDIR)/CHANGELOG.md
@echo "# CHANGELOGs" > $(TEMP_DIR)/README.md
@echo "" >> $(TEMP_DIR)/README.md
$(MAKE) -s changelog/next/print > $(TEMP_DIR)/CHANGELOG.md
@echo "" >> $(TEMP_DIR)/CHANGELOG.md

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

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

changelog/update now generates per-minor files under CHANGELOG/ (and updates CHANGELOG/README.md), but it no longer updates the repository-level CHANGELOG.md. The release workflow still links to CHANGELOG.md (e.g. .github/workflows/release.yaml:80), so releases will point to a stale/broken index unless CHANGELOG.md is regenerated or the workflows/docs are updated to reference CHANGELOG/README.md (or equivalent).

Copilot uses AI. Check for mistakes.
Comment thread Makefile
else \
$(MAKE) -s changelog/readme/print >> $(TEMP_DIR)/README.md ; \
fi
tail -n +3 $(ROOTDIR)/CHANGELOG/README.md >> $(TEMP_DIR)/README.md

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

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

This target assumes $(ROOTDIR)/CHANGELOG/README.md already exists; if it doesn't (fresh checkout/older branches), tail -n +3 ... will fail and abort the release. Consider guarding the tail with a file-existence check and/or creating an initial README when missing (and ensuring CHANGELOG/ exists).

Suggested change
tail -n +3 $(ROOTDIR)/CHANGELOG/README.md >> $(TEMP_DIR)/README.md
@if [ -f $(ROOTDIR)/CHANGELOG/README.md ]; then \
tail -n +3 $(ROOTDIR)/CHANGELOG/README.md >> $(TEMP_DIR)/README.md; \
fi
@mkdir -p $(ROOTDIR)/CHANGELOG

Copilot uses AI. Check for mistakes.
Comment on lines 131 to 136
git add \
CHANGELOG.md \
charts \
k8s \
CHANGELOG \
versions/VALD_VERSION

Copilot AI Apr 12, 2026

Copy link

Choose a reason for hiding this comment

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

The release PR workflow still stages CHANGELOG.md, but the updated make changelog/update target no longer writes to that file (it writes into CHANGELOG/). Either update the Makefile to keep CHANGELOG.md in sync (e.g., as an index/redirect to CHANGELOG/README.md) or stop referencing/staging CHANGELOG.md here and update other workflows that link to it.

Copilot uses AI. Check for mistakes.
Comment thread CHANGELOG/CHANGELOG-1.4.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

versioning CHANGELOG

4 participants