Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ require (
gitlab.com/c0b/go-ordered-json v0.0.0-20201030195603-febf46534d5a
go.uber.org/mock v0.6.0
golang.org/x/term v0.39.0
golang.org/x/text v0.33.0
golang.org/x/text v0.34.0
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🌐 Web query:

golang.org/x/text v0.34.0 release notes changelog

💡 Result:

golang.org/x/text v0.34.0 is tagged at commit 817fba9abd33 (authored Feb 8, 2026, committed Feb 9, 2026) and the tag commit message is “go.mod: update golang.org/x dependencies”. [1]

Changes since v0.33.0 (from the Gitiles tag log)

Commits between v0.33.0 and v0.34.0 include: [2]

  • unicode/norm: preserve the QC Maybe bit in packed forminfo.
  • internal/export/idna: delete old code; update for post–Unicode 10 IDNA changes.
  • Repository-wide Unicode table refresh:
    • update to Unicode 17
    • delete old Unicode tables
    • fix tags in remaining Unicode tables
  • Cleanup: “clean up old Go hacks”.
  • go.mod / go.sum: bump golang.org/x dependencies to their latest tagged versions (this is the tag commit itself).

Sources: tag details [1], tag log (commit list) [2].


Run compatibility tests for Unicode 17 and IDNA updates.

The upgrade to v0.34.0 includes a major Unicode table refresh to Unicode 17, updates to IDNA for post-Unicode 10 changes, and modifications to Unicode normalization (QC Maybe bit preservation in forminfo). Run the relevant text processing test suite to confirm no behavior regressions for normalization, case mapping, or internationalized domain name handling.

🤖 Prompt for AI Agents
In `@go.mod` at line 29, The dependency upgrade to golang.org/x/text v0.34.0
requires running compatibility tests for Unicode 17/IDNA changes; run the
relevant test suites (e.g., packages under golang.org/x/text such as
unicode/norm, cases, transform and any IDNA-related tests) with go test (e.g.,
go test ./... or targeted package tests), review and fix any failing assertions
in normalization, case mapping, or IDNA handling code (look for usage sites
calling unicode/norm, cases, or idna conversion logic), and if behavior changes
are intentional, update/annotate tests or add compatibility shims to restore
expected behavior.

google.golang.org/api v0.257.0
google.golang.org/grpc v1.77.0
gopkg.in/yaml.v3 v3.0.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,8 @@ golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
golang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE=
golang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8=
golang.org/x/text v0.34.0 h1:oL/Qq0Kdaqxa1KbNeMKwQq0reLCCaFtqu2eNuSeNHbk=
golang.org/x/text v0.34.0/go.mod h1:homfLqTYRFyVYemLBFl5GgL/DWEiH5wcsQ5gSh1yziA=
golang.org/x/time v0.14.0 h1:MRx4UaLrDotUKUdCIqzPC48t1Y9hANFKIRpNx+Te8PI=
golang.org/x/time v0.14.0/go.mod h1:eL/Oa2bBBK0TkX57Fyni+NgnyQQN4LitPmob2Hjnqw4=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
Expand Down
Loading