Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/compile-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.sha }}
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '>=25.1.0'
node-version: '>=26.3.1'
- name: Install Packages
run: |
npm ci
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This branch generates the STL's [Status Chart][].

## Repo

1. Install [Node.js][] 25.1.0 or newer.
1. Install [Node.js][] 26.3.1 or newer.
- You can accept all of the installer's default options.
2. Open a new Command Prompt.
- You can run `node --version` to verify that Node.js was successfully installed.
Expand Down Expand Up @@ -51,7 +51,7 @@ GitHub's GraphQL API requires authentication:
1. Go to your [Fine-grained personal access tokens][] on GitHub.
2. Click "Generate new token".
3. Name it "STL Status Chart" or anything else you'd like.
4. Set the expiration to be no greater than 90 days.
4. Set the expiration to be no greater than 7 days.
5. Don't change any other settings. (This will be a read-only token.)
6. Click "Generate token". Keep this page open.
7. In your `chart` repo, create a file named `.env` containing:
Expand Down
2 changes: 1 addition & 1 deletion built/status_chart.mjs

Large diffs are not rendered by default.

13 changes: 10 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ <h2>Explanation</h2>
C++26 STL features remaining to be implemented.</a
>
</li>
<li>
<span class="Counter bgColor-severe-emphasis fgColor-onEmphasis" id="currentValue-cxx29"></span>
<a href="https://github.com/microsoft/STL/issues?q=is%3Aopen+is%3Aissue+label%3Acxx29">
C++29 STL features remaining to be implemented.</a
>
</li>
<li>
<span class="Counter bgColor-success-emphasis fgColor-onEmphasis" id="currentValue-lwg"></span>
<a href="https://github.com/microsoft/STL/issues?q=is%3Aopen+is%3Aissue+label%3ALWG+-label%3AvNext">
Expand Down Expand Up @@ -110,15 +116,16 @@ <h2>Explanation</h2>
<li>
<span class="Counter Counter--primary" id="currentValue-issue"></span>
<a
href="https://github.com/microsoft/STL/issues?q=is%3Aopen+is%3Aissue+-label%3Acxx20+-label%3Acxx23+-label%3Acxx26+-label%3ALWG"
href="https://github.com/microsoft/STL/issues?q=is%3Aopen+is%3Aissue+-label%3Acxx20+-label%3Acxx23+-label%3Acxx26+-label%3Acxx29+-label%3ALWG"
>
Open GitHub issues.</a
>
That is, all GitHub issues including <span class="Label Label--danger">bug</span>,
<span class="Label Label--accent">performance</span>, <span class="Label Label--done">throughput</span>, etc.
and excluding only <span class="Label Label--attention">cxx20</span>,
<span class="Label Label--severe">cxx23</span>, <span class="Label Label--attention">cxx26</span>, and
<span class="Label Label--success">LWG</span> to avoid double-counting.
<span class="Label Label--severe">cxx23</span>, <span class="Label Label--attention">cxx26</span>,
<span class="Label Label--severe">cxx29</span>, and <span class="Label Label--success">LWG</span> to avoid
double-counting.
</li>
<li>
<span class="Counter bgColor-attention-emphasis fgColor-onEmphasis" id="currentValue-libcxx"></span>
Expand Down
Loading