Skip to content

Commit e9770b7

Browse files
authored
Merge pull request #7 from handsontable/release/3.1.0
Release/3.1.0 - publish docs to staging
2 parents 2d6c407 + c7ec7e4 commit e9770b7

File tree

543 files changed

+7269
-2692
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

543 files changed

+7269
-2692
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ src/interpreter/plugin/3rdparty
1111
*.config.js
1212
karma.*
1313
doc
14+
test/unit/_setupFiles/*.js
1415

1516
# Auto-generated directories
1617
commonjs
@@ -25,4 +26,3 @@ test-jasmine
2526
test-jest
2627
typedoc
2728
typings
28-
test/_setupFiles/*.js

.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ module.exports = {
9090
'jsdoc/empty-tags': 'warn',
9191
'jsdoc/implements-on-classes': 'warn',
9292
'jsdoc/multiline-blocks': 'warn',
93-
'jsdoc/tag-lines': 'warn',
9493
'jsdoc/no-multi-asterisks': 'warn',
9594
'jsdoc/require-param-description': 'warn',
9695
'jsdoc/require-param-name': 'warn',
@@ -104,8 +103,9 @@ module.exports = {
104103
'jsdoc/require-yields-check': 'warn',
105104
'jsdoc/valid-types': 'warn',
106105
'jsdoc/require-jsdoc': ['warn', {
106+
checkConstructors: false,
107107
require: {
108-
ArrowFunctionExpression: true,
108+
ArrowFunctionExpression: false,
109109
ClassDeclaration: true,
110110
ClassExpression: true,
111111
FunctionDeclaration: true,

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
audit:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: audit
2424
runs-on: ${{ matrix.os }}

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
publish-docs:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: build-docs
2424
runs-on: ${{ matrix.os }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
node-version: [ 20, 22 ]
23+
node-version: [ 20, 22, 24 ]
2424
os: [ ubuntu-latest, windows-latest, macos-latest ]
2525
install-command: [ i, ci ]
2626
runs-on: ${{ matrix.os }}
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL Advanced"
13+
14+
on:
15+
push:
16+
branches: [ "master", "develop", "milestone*" ]
17+
pull_request:
18+
branches: [ "master", "develop", "milestone*" ]
19+
schedule:
20+
- cron: '37 18 * * 6'
21+
22+
jobs:
23+
analyze:
24+
name: Analyze (${{ matrix.language }})
25+
# Runner size impacts CodeQL analysis time. To learn more, please see:
26+
# - https://gh.io/recommended-hardware-resources-for-running-codeql
27+
# - https://gh.io/supported-runners-and-hardware-resources
28+
# - https://gh.io/using-larger-runners (GitHub.com only)
29+
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
30+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
31+
permissions:
32+
# required for all workflows
33+
security-events: write
34+
35+
# required to fetch internal or private CodeQL packs
36+
packages: read
37+
38+
# only required for workflows in private repositories
39+
actions: read
40+
contents: read
41+
42+
strategy:
43+
fail-fast: false
44+
matrix:
45+
include:
46+
- language: actions
47+
build-mode: none
48+
- language: javascript-typescript
49+
build-mode: none
50+
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
51+
# Use `c-cpp` to analyze code written in C, C++ or both
52+
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
53+
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
54+
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
55+
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
56+
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
57+
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
58+
steps:
59+
- name: Checkout repository
60+
uses: actions/checkout@v4
61+
62+
# Add any setup steps before running the `github/codeql-action/init` action.
63+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
64+
# or others). This is typically only required for manual builds.
65+
# - name: Setup runtime (example)
66+
# uses: actions/setup-example@v1
67+
68+
# Initializes the CodeQL tools for scanning.
69+
- name: Initialize CodeQL
70+
uses: github/codeql-action/init@v3
71+
with:
72+
languages: ${{ matrix.language }}
73+
build-mode: ${{ matrix.build-mode }}
74+
# If you wish to specify custom queries, you can do so here or in a config file.
75+
# By default, queries listed here will override any specified in a config file.
76+
# Prefix the list here with "+" to use these queries and those in the config file.
77+
78+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
79+
# queries: security-extended,security-and-quality
80+
81+
# If the analyze step fails for one of the languages you are analyzing with
82+
# "We were unable to automatically build your code", modify the matrix above
83+
# to set the build mode to "manual" for that language. Then modify this step
84+
# to build your code.
85+
# ℹ️ Command-line programs to run using the OS shell.
86+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
87+
- if: matrix.build-mode == 'manual'
88+
shell: bash
89+
run: |
90+
echo 'If you are using a "manual" build mode for one or more of the' \
91+
'languages you are analyzing, replace this with the commands to build' \
92+
'your code, for example:'
93+
echo ' make bootstrap'
94+
echo ' make release'
95+
exit 1
96+
97+
- name: Perform CodeQL Analysis
98+
uses: github/codeql-action/analyze@v3
99+
with:
100+
category: "/language:${{matrix.language}}"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
lint:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: lint
2424
runs-on: ${{ matrix.os }}

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
performance-test:
1515
strategy:
1616
matrix:
17-
node-version: [ '20' ]
17+
node-version: [ '22' ]
1818
os: [ 'ubuntu-latest' ]
1919
name: Test performance
2020
runs-on: ${{ matrix.os }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
publish-docs:
1313
strategy:
1414
matrix:
15-
node-version: [ '20' ]
15+
node-version: [ '22' ]
1616
os: [ 'ubuntu-latest' ]
1717
name: publish-docs
1818
runs-on: ${{ matrix.os }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
unit-tests:
1919
strategy:
2020
matrix:
21-
node-version: [ '20' ]
21+
node-version: [ '22' ]
2222
os: [ 'ubuntu-latest' ]
2323
name: unit-tests
2424
runs-on: ${{ matrix.os }}
@@ -37,7 +37,7 @@ jobs:
3737
- name: Run tests
3838
run: |
3939
npm run test:unit.ci -- --coverage
40-
40+
4141
- name: Upload coverage to Codecov
4242
uses: codecov/codecov-action@6004246f47ab62d32be025ce173b241cd84ac58e # https://github.com/codecov/codecov-action/releases/tag/v1.0.13
4343
env:
@@ -46,7 +46,7 @@ jobs:
4646
browser-tests:
4747
strategy:
4848
matrix:
49-
node-version: [ '20' ]
49+
node-version: [ '22' ]
5050
os: [ 'ubuntu-latest' ]
5151
name: browser-tests
5252
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)