xmoj-script 2.1.3 → 2.2.0
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/.github/workflows/AutoLabelIssue.yml +1 -1
- package/.github/workflows/CodeQL.yml +1 -1
- package/.github/workflows/DependencyScan.yml +1 -1
- package/.github/workflows/Prerelease.yml +1 -1
- package/.github/workflows/Release.yml +1 -1
- package/.github/workflows/UpdateToRelease.yml +1 -1
- package/.github/workflows/UpdateVersion.yml +1 -1
- package/.github/workflows/main.yml +2 -2
- package/.github/workflows/sync-to-extern-contrib.yml +1 -1
- package/Update.json +19 -0
- package/XMOJ.user.js +1 -1
- package/package.json +1 -1
@@ -21,6 +21,6 @@ jobs:
|
|
21
21
|
with:
|
22
22
|
app-id: ${{ secrets.APP_ID }}
|
23
23
|
private-key: ${{ secrets.APP_PRIVATE_KEY }}
|
24
|
-
- uses: actions/checkout@
|
24
|
+
- uses: actions/checkout@v5
|
25
25
|
- name: Update version
|
26
26
|
run: node ./Update/UpdateVersion.js ${{ steps.generate_token.outputs.token }} ${{ github.event.number }} "${{ github.event.pull_request.title }}"
|
@@ -15,11 +15,11 @@ jobs:
|
|
15
15
|
pull-requests: write
|
16
16
|
checks: write
|
17
17
|
steps:
|
18
|
-
- uses: actions/checkout@
|
18
|
+
- uses: actions/checkout@v5
|
19
19
|
with:
|
20
20
|
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
|
21
21
|
fetch-depth: 0 # a full history is required for pull request analysis
|
22
22
|
- name: 'Qodana Scan'
|
23
|
-
uses: JetBrains/qodana-action@
|
23
|
+
uses: JetBrains/qodana-action@v2025.2
|
24
24
|
env:
|
25
25
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
package/Update.json
CHANGED
@@ -3002,6 +3002,25 @@
|
|
3002
3002
|
}
|
3003
3003
|
],
|
3004
3004
|
"Notes": "No release notes were provided for this release."
|
3005
|
+
},
|
3006
|
+
"2.2.0": {
|
3007
|
+
"UpdateDate": 1755767075588,
|
3008
|
+
"Prerelease": false,
|
3009
|
+
"UpdateContents": [
|
3010
|
+
{
|
3011
|
+
"PR": 829,
|
3012
|
+
"Description": "Update diff-match-patch library source URL"
|
3013
|
+
},
|
3014
|
+
{
|
3015
|
+
"PR": 834,
|
3016
|
+
"Description": "feat: use credential management api"
|
3017
|
+
},
|
3018
|
+
{
|
3019
|
+
"PR": 835,
|
3020
|
+
"Description": "feat: add user-selectable theme"
|
3021
|
+
}
|
3022
|
+
],
|
3023
|
+
"Notes": "No release notes were provided for this release."
|
3005
3024
|
}
|
3006
3025
|
}
|
3007
3026
|
}
|
package/XMOJ.user.js
CHANGED