Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix C++ deprecated packages filtering logic and add C++ to deprecated…
… index

Co-authored-by: RickWinter <[email protected]>
  • Loading branch information
Copilot and RickWinter committed Jul 11, 2025
commit e3f66556840a943b6e23900b471498215fbcbb5e
2 changes: 1 addition & 1 deletion _includes/releases/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% if include.type == "all" %}
{% assign packages = site.data.releases.latest.cpp-packages | where_exp: 'item', "item.Support <> 'deprecated'" %}
{% elsif include.type == "deprecated" %}
{% assign packages = site.data.releases.latest.cpp-packages | where: 'Support', 'deprecated' | where_exp: 'item', "item.Support <> 'deprecated'" %}
{% assign packages = site.data.releases.latest.cpp-packages | where: 'Support', 'deprecated' %}
{% else %}
{% assign packages = site.data.releases.latest.cpp-packages | where: 'Type', include.type | where: 'New', 'true' | where_exp: 'item', "item.Support <> 'deprecated'" %}
{% endif %}
Expand Down
1 change: 1 addition & 0 deletions releases/deprecated/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ sidebar: releases_sidebar
{% include releases/js.md type="deprecated" %}
{% include releases/python.md type="deprecated" %}
{% include releases/go.md type="deprecated" %}
{% include releases/cpp.md type="deprecated" %}

{% include refs.md %}