Skip to content

Commit 2875b2b

Browse files
Merge pull request KelvinTegelaar#5412 from KelvinTegelaar/dev
Dev to release
2 parents 95e62a7 + 6577885 commit 2875b2b

File tree

100 files changed

+10585
-1331
lines changed

Some content is hidden

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

100 files changed

+10585
-1331
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ updates:
1010
schedule:
1111
interval: "weekly"
1212
target-branch: "dev"
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
target-branch: "dev"

.github/workflows/Close_Stale_Issues_and_PRs.yml renamed to .github/workflows/Close_Stale_Issues.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "Close stale issues and PRs"
2+
name: "Close stale issues"
33
on:
44
schedule:
55
- cron: "30 1 * * *"
@@ -16,3 +16,5 @@ jobs:
1616
exempt-issue-labels: "planned,bug,roadmap"
1717
days-before-stale: 9
1818
days-before-close: 5
19+
days-before-pr-stale: -1
20+
days-before-pr-close: -1
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
name: 'CodeQL'
2+
name: "CodeQL"
33
on:
44
pull_request:
55
branches: [master, main, dev, react]
66
schedule:
7-
- cron: '26 17 * * 0'
7+
- cron: "26 17 * * 0"
88
jobs:
99
analyze:
1010
if: github.repository_owner == 'KelvinTegelaar'
@@ -17,15 +17,15 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
language: ['javascript']
20+
language: ["javascript"]
2121
steps:
2222
- name: Checkout Repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v6
2424
- name: Initialize CodeQL
25-
uses: github/codeql-action/init@v1
25+
uses: github/codeql-action/init@v4
2626
with:
2727
languages: ${{ matrix.language }}
2828
- name: Autobuild
29-
uses: github/codeql-action/autobuild@v1
29+
uses: github/codeql-action/autobuild@v4
3030
- name: Perform CodeQL Analysis
31-
uses: github/codeql-action/analyze@v1
31+
uses: github/codeql-action/analyze@v4
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Detect Duplicate Issues
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
9+
permissions:
10+
models: read
11+
issues: write
12+
13+
jobs:
14+
detect-duplicates:
15+
if: github.repository_owner == 'KelvinTegelaar' && github.event.issue.user.type != 'Bot'
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Calculate lookback date
19+
id: lookback
20+
run: echo "since=$(date -u -d '60 days ago' +%Y-%m-%dT%H:%M:%SZ)" >> "$GITHUB_OUTPUT"
21+
- uses: pelikhan/action-genai-issue-dedup@v0
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
since: ${{ steps.lookback.outputs.since }}

.github/workflows/Node_Project_Check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
node-version: [16.x]
18+
node-version: ["22.13.0"]
1919
os: [ubuntu-latest]
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v6
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
- name: Install and Build Test

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cipp",
3-
"version": "10.0.9",
3+
"version": "10.1.0",
44
"author": "CIPP Contributors",
55
"homepage": "https://cipp.app/",
66
"bugs": {
@@ -30,15 +30,15 @@
3030
"@emotion/styled": "11.14.1",
3131
"@heroicons/react": "2.2.0",
3232
"@monaco-editor/react": "^4.6.0",
33-
"@mui/icons-material": "7.3.2",
33+
"@mui/icons-material": "7.3.7",
3434
"@mui/lab": "7.0.0-beta.17",
3535
"@mui/material": "7.3.7",
3636
"@mui/system": "7.3.2",
37-
"@mui/x-date-pickers": "^8.25.0",
37+
"@mui/x-date-pickers": "^8.27.0",
3838
"@musement/iso-duration": "^1.0.0",
3939
"@nivo/core": "^0.99.0",
4040
"@nivo/sankey": "^0.99.0",
41-
"@react-pdf/renderer": "^4.3.0",
41+
"@react-pdf/renderer": "^4.3.2",
4242
"@reduxjs/toolkit": "^2.11.2",
4343
"@tanstack/query-sync-storage-persister": "^5.76.0",
4444
"@tanstack/react-query": "^5.51.11",
@@ -48,31 +48,31 @@
4848
"@tiptap/core": "^3.4.1",
4949
"@tiptap/extension-heading": "^3.4.1",
5050
"@tiptap/extension-image": "^3.4.1",
51-
"@tiptap/extension-table": "^3.4.1",
51+
"@tiptap/extension-table": "^3.19.0",
5252
"@tiptap/pm": "^3.4.1",
5353
"@tiptap/react": "^3.4.1",
54-
"@tiptap/starter-kit": "^3.4.1",
55-
"@uiw/react-json-view": "^2.0.0-alpha.30",
54+
"@tiptap/starter-kit": "^3.19.0",
55+
"@uiw/react-json-view": "^2.0.0-alpha.41",
5656
"@vvo/tzdb": "^6.198.0",
5757
"apexcharts": "5.3.5",
5858
"axios": "^1.7.2",
5959
"date-fns": "4.1.0",
6060
"eml-parse-js": "^1.2.0-beta.0",
6161
"export-to-csv": "^1.3.0",
62-
"formik": "2.4.6",
62+
"formik": "2.4.9",
6363
"gray-matter": "4.0.3",
6464
"i18next": "25.5.2",
65-
"javascript-time-ago": "^2.5.11",
66-
"jspdf": "^3.0.0",
67-
"jspdf-autotable": "^5.0.2",
65+
"javascript-time-ago": "^2.6.2",
66+
"jspdf": "^4.1.0",
67+
"jspdf-autotable": "^5.0.7",
6868
"leaflet": "^1.9.4",
6969
"leaflet-defaulticon-compatibility": "^0.1.2",
7070
"leaflet.markercluster": "^1.5.3",
7171
"lodash.isequal": "4.5.0",
7272
"material-react-table": "^3.0.1",
73-
"monaco-editor": "^0.53.0",
73+
"monaco-editor": "^0.55.1",
7474
"mui-tiptap": "^1.14.0",
75-
"next": "^16.1.2",
75+
"next": "^16.1.6",
7676
"nprogress": "0.2.0",
7777
"numeral": "2.0.6",
7878
"prop-types": "15.8.1",
@@ -85,7 +85,7 @@
8585
"react-dropzone": "14.3.8",
8686
"react-error-boundary": "^6.1.0",
8787
"react-grid-layout": "^1.5.0",
88-
"react-hook-form": "^7.53.0",
88+
"react-hook-form": "^7.71.1",
8989
"react-hot-toast": "2.6.0",
9090
"react-html-parser": "^2.0.2",
9191
"react-i18next": "15.7.3",
@@ -96,26 +96,26 @@
9696
"react-papaparse": "^4.4.0",
9797
"react-quill": "^2.0.0",
9898
"react-redux": "9.2.0",
99-
"react-syntax-highlighter": "^15.6.1",
99+
"react-syntax-highlighter": "^16.1.0",
100100
"react-time-ago": "^7.3.3",
101101
"react-virtuoso": "^4.12.8",
102-
"react-window": "^2.1.0",
102+
"react-window": "^2.2.5",
103103
"recharts": "^3.6.0",
104104
"redux": "5.0.1",
105105
"redux-devtools-extension": "2.13.9",
106106
"redux-persist": "^6.0.0",
107107
"redux-thunk": "3.1.0",
108108
"rehype-raw": "^7.0.0",
109109
"remark-gfm": "^4.0.0",
110-
"simplebar": "6.3.2",
110+
"simplebar": "6.3.3",
111111
"simplebar-react": "3.3.2",
112112
"stylis-plugin-rtl": "2.1.1",
113113
"typescript": "5.9.2",
114-
"yup": "1.7.0"
114+
"yup": "1.7.1"
115115
},
116116
"devDependencies": {
117117
"@svgr/webpack": "8.1.0",
118-
"eslint": "9.35.0",
119-
"eslint-config-next": "15.5.2"
118+
"eslint": "9.39.2",
119+
"eslint-config-next": "16.1.6"
120120
}
121-
}
121+
}

public/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "10.0.9"
3-
}
2+
"version": "10.1.0"
3+
}

src/api/ApiCall.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export function ApiPostCall({ relatedQueryKeys, onResult }) {
176176
const response = await axios.post(url, element, {
177177
headers: await buildVersionedHeaders(),
178178
});
179-
results.push(response);
179+
results.push(response.data);
180180
if (onResult) {
181181
onResult(response.data); // Emit each result as it arrives
182182
}

0 commit comments

Comments
 (0)