Skip to content

chore(deps, frontend): update dependency ng-zorro-antd to v22 - #7060

Closed
renovate-bot wants to merge 1 commit into
apache:mainfrom
renovate-bot:renovate/ng-zorro-antd-22.x
Closed

chore(deps, frontend): update dependency ng-zorro-antd to v22#7060
renovate-bot wants to merge 1 commit into
apache:mainfrom
renovate-bot:renovate/ng-zorro-antd-22.x

Conversation

@renovate-bot

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
ng-zorro-antd (source) 21.3.222.0.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

NG-ZORRO/ng-zorro-antd (ng-zorro-antd)

v22.0.0

Compare Source

Features
Bug Fixes
  • select: keep dropdown scroll position when loading more options on scroll (#​9872) (1cfeaf9)
⚠ BREAKING CHANGES

Date-related components no longer provide a default date engine adapter. Applications that use date-related components must configure a date adapter explicitly. To keep the previous date-fns based behavior, add provideNzDateFnsAdapter() in app.config.ts.

date-fns has been upgraded to v4. Applications that use date-fns APIs directly should update their imports and date-fns usage to be compatible with v4. (#​9868) (a865a89)

Remove the following APIs which were marked as deprecated in the previous version:

Module API
ng-zorro-antd/button NzButtonComponent#nzSearch
ng-zorro-antd/cascader NzCascaderComponent#nzDisplayWith
ng-zorro-antd/collapse nz-collapse-panel[nzDisabled]
ng-zorro-antd/core/form NzFormNoStatusService
ng-zorro-antd/core/services NzBreakpointKey
ng-zorro-antd/dropdown NzDropDownModule
ng-zorro-antd/grid EmbeddedProperty
ng-zorro-antd/input textarea[nzAutosize], AutoSizeType, NzAutosizeDirective
ng-zorro-antd/input nz-input-group, NzInputGroupComponent, NzInputGroupWhitSuffixOrPrefixDirective
ng-zorro-antd/input [nz-input-group-slot], NzInputGroupSlotComponent
ng-zorro-antd/input NzInputDirective#nzStepperless
ng-zorro-antd/message NzMessageData#state
ng-zorro-antd/modal nzOnOk / nzOnCancel input usage
ng-zorro-antd/tooltip cdkConnectedOverlayPush
ng-zorro-antd/transfer NzTransferSearchComponent, [nz-transfer-search]
ng-zorro-antd/upload nz-upload[nzTransformFile], NzUploadTransformFileType
ng-zorro-antd/upload ZipButtonOptions#transformFile

v21.3.3

Compare Source

Bug Fixes

Configuration

📅 Schedule: (in timezone Etc/UTC)

  • Branch creation
    • "before 8am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@forking-renovate forking-renovate Bot added the dependencies Pull requests that update a dependency file label Jul 29, 2026
@github-actions github-actions Bot added the frontend Changes related to the frontend GUI label Jul 29, 2026
@Yicong-Huang Yicong-Huang added the release/v1.2 back porting to release/v1.2 label Jul 29, 2026
@github-actions

Copy link
Copy Markdown
Contributor

👋 Thanks for opening this pull request, @renovate-bot!

It looks like the pull request description doesn't quite follow our template yet:

  • The What changes were proposed in this PR? section is missing; please keep the template's headings.
  • The How was this PR tested? section is missing; please keep the template's headings.
  • The Was this PR authored or co-authored using generative AI tooling? section is missing; please keep the template's headings.

Filling out the template helps reviewers understand and triage your contribution faster. Please edit the description to complete it. This message will disappear automatically once the template is followed.

You can find the template prompts by editing the description, or see CONTRIBUTING.md for the full contribution flow.

@github-actions
github-actions Bot requested a review from xuang7 July 29, 2026 21:34
@github-actions

github-actions Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

Backport auto-label report

This fix: PR was checked against each actively-supported release branch. release/* labels drive the post-merge backport, so add or remove one to change where this fix lands.

Release branch Analysis
🚫 release/v1.2 Label was removed earlier (opt-out); not re-added. Re-add it by hand if this fix should be backported here after all.

Auto-label run.

@github-actions

Copy link
Copy Markdown
Contributor

Automated Reviewer Suggestions

Based on the git blame history of the changed files, we recommend the following reviewers:

  • No candidates found from git blame history.

@codecov-commenter

Copy link
Copy Markdown

⚠️ JUnit XML file not found

The CLI was unable to find any JUnit XML files to upload.
For more help, visit our troubleshooting guide.

@Yicong-Huang

Copy link
Copy Markdown
Contributor

this upgrade has breaking change, it's a non trivial upgrade.

@renovate-bot renovate-bot changed the title chore(deps, frontend): update dependency ng-zorro-antd to v22 fix(deps, frontend): update dependency ng-zorro-antd to v22 Jul 29, 2026
renovate-bot pushed a commit to renovate-bot/apache-_-texera that referenced this pull request Jul 29, 2026
…apache#7072)

### What changes were proposed in this PR?

Two corrections to `.github/renovate.json5`:

1. **Routine bumps are now `chore(...)`.** `extends:
['config:recommended']` pulls in the
[`:semanticPrefixFixDepsChoreOthers`](https://docs.renovatebot.com/presets-default/)
preset, whose `packageRules` type runtime dependencies as `fix` and
override our top-level `semanticCommitType: 'chore'`. So routine,
non-security majors came through as `fix(...)` — e.g. apache#7060
(ng-zorro-antd v22), apache#7059 (fuse.js v7) — while devDependency bumps
correctly stayed `chore(...)`. A catch-all rule (`matchPackageNames:
['*'] → chore`) now runs last and overrides the preset.
2. **Drop the `[security]` title suffix.** `commitMessageSuffix: ''`
inside `vulnerabilityAlerts` removes Renovate's default `[SECURITY]`
suffix; the `security` label already identifies those PRs.

Resulting behavior:

- Routine bump → `chore(deps, ...): ...`
- Vulnerability fix → `fix(deps, ...): ...` + `security` label (no
`[security]` suffix)

`vulnerabilityAlerts` is applied as a higher-priority layer for security
branches, so it keeps its `fix` type regardless of the catch-all.

### Any related issues, documentation, discussions?

Fixes apache#7071. The mis-typed routine PRs that surfaced this: apache#7060, apache#7059.

### How was this PR tested?

Validated with the official `renovate-config-validator` (`npx --package
renovate -- renovate-config-validator .github/renovate.json5`), which
reported `Config validated successfully`. No unit tests apply to a
Renovate configuration change.

### Was this PR authored or co-authored using generative AI tooling?

Generated-by: Claude Code (Claude Opus 4.8)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@renovate-bot renovate-bot changed the title fix(deps, frontend): update dependency ng-zorro-antd to v22 chore(deps, frontend): update dependency ng-zorro-antd to v22 Jul 29, 2026
renovate-bot pushed a commit to renovate-bot/apache-_-texera that referenced this pull request Jul 29, 2026
…pache#7062)

### What changes were proposed in this PR?

The `contributor-checks` job in
`.github/workflows/contributor-checks.yml` gates on
`github.event.sender.type != 'Bot'` so it won't nag automated PR/issue
openers about not following the contribution template.

That gate catches GitHub App bots (e.g. `dependabot[bot]`, whose account
`type` is `Bot`) but **not** Renovate, which on this repo runs under a
regular User account: `renovate-bot` has `type: User`, so it slips
through and gets the "the description doesn't follow our template"
warning on every dependency-update PR (example: apache#7060).

This PR excludes `renovate-bot` explicitly by login:

```yaml
if: >-
  github.event.sender.type != 'Bot' &&
  github.event.sender.login != 'renovate-bot'
```

### Any related issues, documentation, discussions?

Closes apache#7063.

Example of the false warning: apache#7060.

### How was this PR tested?

- Confirmed via the GitHub API that `renovate-bot` has `type: User` (not
`Bot`), which is why the existing `sender.type != 'Bot'` gate did not
exclude it.
- Validated the workflow YAML parses and the folded `if:` expression
resolves to the intended single-line condition.
- The change is confined to the job-level `if:` gate; no `run:` step or
untrusted-input interpolation is touched.

### Was this PR authored or co-authored using generative AI tooling?

Generated-by: Claude Code (Opus 4.8)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@Yicong-Huang

Copy link
Copy Markdown
Contributor

We need to migrate off from the deprecated APIs first. postponing this upgrade

@forking-renovate

Copy link
Copy Markdown

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 22.x releases. But if you manually upgrade to 22.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate-bot
renovate-bot deleted the renovate/ng-zorro-antd-22.x branch July 29, 2026 23:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file frontend Changes related to the frontend GUI

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants