tabletcommand-backend-models 7.4.46 → 7.4.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/buildkite/test.sh CHANGED
@@ -17,7 +17,7 @@ if hash brew 2>/dev/null; then
17
17
  fi
18
18
  fi
19
19
 
20
- NODE_VERSION="v22.17.0"
20
+ NODE_VERSION="v24.13.0"
21
21
 
22
22
  nvm use $NODE_VERSION || nvm install $NODE_VERSION
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabletcommand-backend-models",
3
- "version": "7.4.46",
3
+ "version": "7.4.47",
4
4
  "description": "Tablet Command Backend Models",
5
5
  "scripts": {
6
6
  "lint": "eslint src",
@@ -17,9 +17,9 @@
17
17
  "types": "definitions/index.d.ts",
18
18
  "dependencies": {
19
19
  "debug": "^4.4.3",
20
- "lodash": "^4.17.21",
20
+ "lodash": "^4.17.23",
21
21
  "moment-timezone": "^0.6.0",
22
- "mongoose": "^8.21.0",
22
+ "mongoose": "^8.22.0",
23
23
  "mongoose-lean-virtuals": "^2.1.0",
24
24
  "uuid": "~13.0.0"
25
25
  },
@@ -29,14 +29,14 @@
29
29
  "@types/chai": "^5.2.3",
30
30
  "@types/lodash": "^4.17.23",
31
31
  "@types/mocha": "^10.0.10",
32
- "@types/node": "^22.19.5",
33
- "@typescript-eslint/eslint-plugin": "~8.53.0",
34
- "@typescript-eslint/parser": "~8.53.0",
32
+ "@types/node": "^24.10.9",
33
+ "@typescript-eslint/eslint-plugin": "~8.54.0",
34
+ "@typescript-eslint/parser": "~8.54.0",
35
35
  "chai": "^6.2.2",
36
- "cspell": "^9.6.0",
36
+ "cspell": "^9.6.2",
37
37
  "del": "^8.0.1",
38
38
  "eslint": "^9.39.2",
39
- "globals": "^17.0.0",
39
+ "globals": "^17.2.0",
40
40
  "gulp": "^5.0.1",
41
41
  "gulp-execa": "^8.0.1",
42
42
  "mocha": "^11.7.5",
@@ -1,55 +0,0 @@
1
- name: "CodeQL"
2
-
3
- on:
4
- push:
5
- branches: [main, ]
6
- pull_request:
7
- # The branches below must be a subset of the branches above
8
- branches: [main]
9
- schedule:
10
- - cron: '0 8 * * 1'
11
-
12
- jobs:
13
- analyse:
14
- if: false
15
- name: Analyse
16
- runs-on: ubuntu-latest
17
-
18
- steps:
19
- - name: Checkout repository
20
- uses: actions/checkout@v2
21
- with:
22
- # We must fetch at least the immediate parents so that if this is
23
- # a pull request then we can checkout the head.
24
- fetch-depth: 2
25
-
26
- # If this run was triggered by a pull request event, then checkout
27
- # the head of the pull request instead of the merge commit.
28
- - run: git checkout HEAD^2
29
- if: ${{ github.event_name == 'pull_request' }}
30
-
31
- # Initializes the CodeQL tools for scanning.
32
- - name: Initialize CodeQL
33
- uses: github/codeql-action/init@v1
34
- # Override language selection by uncommenting this and choosing your languages
35
- # with:
36
- # languages: go, javascript, csharp, python, cpp, java
37
-
38
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
39
- # If this step fails, then you should remove it and run the build manually (see below)
40
- - name: Autobuild
41
- uses: github/codeql-action/autobuild@v1
42
-
43
- # ℹ️ Command-line programs to run using the OS shell.
44
- # 📚 https://git.io/JvXDl
45
-
46
- # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
47
- # and modify them (or add more) to build your code if your project
48
- # uses a compiled language
49
-
50
- #- run: |
51
- # make bootstrap
52
- # make release
53
-
54
- - name: Perform CodeQL Analysis
55
- uses: github/codeql-action/analyze@v1