-
Notifications
You must be signed in to change notification settings - Fork 159
TMP PR: Release/3.3.0 #1671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
TMP PR: Release/3.3.0 #1671
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0d91cc8
Merge tag '3.2.0' into develop
sequba 1fd3ca0
Fix package-lock file
sequba 7616150
Docs: remove CodeSandbox embedded demos and add links to working exa,…
sequba c96a600
Setup workflow with private tests repo (#1616)
qunabu 4042b04
Fix IRR error when income > sum of payments (#1627)
sequba 266089d
Fix: ADDRESS function ignores defaultValue when user provides empty v…
marcin-kordas-hoc 72db14b
Describe Definition of Done for the code changes (#1642)
sequba 0c1d130
Add TEXTJOIN function with i18n and documentation (#1640)
marcin-kordas-hoc 04180f8
Fix #1629: resolve memory leaks in LazilyTransformingAstService and U…
marcin-kordas-hoc ca0bb89
Add SEQUENCE built-in function (#1645)
marcin-kordas-hoc 357eee3
Add AI integration docs and reorganize sidebar (#1644)
GreenFlux 736235e
Add hardcoded trial license key (#1649)
sequba 1852159
Add PERCENTILE and QUARTILE function families (#1650)
marcin-kordas-hoc 110a28a
Make VuePress base, dest and sitemap hostname configurable (#1663)
qunabu 8b525cb
Fix Netlify publish dir so /docs/ is reachable (#1664)
qunabu 362df83
HF-85: Implement all database functions (#1652)
marcin-kordas-hoc 456addd
HF-122: Framework integration guides for React, Angular, Vue, Svelte …
marcin-kordas-hoc 24121f8
docs: reframe AI SDK page as Vercel integration with prototype status…
GreenFlux 1b6767f
Refine the AI toolkits landing pages (#1670)
sequba bbacfc9
3.3.0
sequba 3a286f6
Improve wording in the AI toolchains landing pages
sequba 4049fa5
Change release date
sequba 5f7ea1d
Improve docs links
sequba 55d5380
Bring back old links
sequba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ test/_setupFiles/*.js | |
|
|
||
| # Auto-generated directories | ||
| commonjs | ||
| coverage | ||
| dist | ||
| doc | ||
| es | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| name: Performance | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - reopened | ||
| - synchronize # the head branch is updated from the base branch, new commits are pushed to the head branch, or the base branch is changed | ||
|
|
||
| jobs: | ||
| performance-test: | ||
| strategy: | ||
| matrix: | ||
| node-version: [ '22' ] | ||
| os: [ 'ubuntu-latest' ] | ||
| name: Test performance | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - name: Setup Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d # https://github.com/actions/setup-node/releases/tag/v1.4.4 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
|
|
||
| - name: (base) Checkout main repository | ||
| uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # https://github.com/actions/checkout/releases/tag/v2.3.4 | ||
| with: | ||
| ref: ${{ github.event.pull_request.base.sha }} | ||
|
|
||
| - name: Checkout hyperformula-tests repository | ||
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | ||
| with: | ||
| ssh-key: ${{ secrets.DEPLOY_TOKEN }} | ||
| repository: handsontable/hyperformula-tests | ||
| path: test/hyperformula-tests | ||
|
|
||
| - name: Fetch hyperformula-tests and sync branches | ||
| run: cd test && ./fetch-tests.sh | ||
|
|
||
| - name: (base) Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: (base) Run performance tests | ||
| run: npm run benchmark:write-to-file base.json | ||
|
|
||
| - name: (head) Checkout main repository | ||
| uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # https://github.com/actions/checkout/releases/tag/v2.3.4 | ||
| with: | ||
| clean: false | ||
|
|
||
| - name: (head) Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: (head) Run performance tests | ||
| run: | | ||
| npm run benchmark:write-to-file head.json | ||
|
|
||
| - name: Compare the results | ||
| run: | | ||
| npm run benchmark:compare-benchmarks base.json head.json performance-report.md | ||
|
|
||
| - name: Publish a comment - header | ||
| uses: marocchino/sticky-pull-request-comment@6804b5ad49d19c10c9ae7cf5057352f7ff333f31 # https://github.com/marocchino/sticky-pull-request-comment/tree/v1.6.0 | ||
| with: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| message: | | ||
| ## Performance comparison of head (${{ github.event.pull_request.head.sha }}) vs base (${{ github.event.pull_request.base.sha }}) | ||
|
|
||
| - name: Publish a comment - performance comparison report | ||
| uses: marocchino/sticky-pull-request-comment@6804b5ad49d19c10c9ae7cf5057352f7ff333f31 # https://github.com/marocchino/sticky-pull-request-comment/tree/v1.6.0 | ||
| with: | ||
| append: true | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| path: performance-report.md | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v16 | ||
| v18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Performance job tests merge commit
Medium Severity
The “head” benchmark step checks out the default
pull_requestmerge commit, notgithub.event.pull_request.head.sha, while the PR comment labels results as head vs base. Reported performance can reflect merged code, not the PR branch tip.Reviewed by Cursor Bugbot for commit 4049fa5. Configure here.