Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5aca73a
Adapt gource
koppor Nov 1, 2025
ca305ce
Replace google cache with caffeine (#14214)
Siedlerchr Nov 1, 2025
8725129
Chore(deps): Bump jablib/src/main/resources/csl-styles (#14216)
dependabot[bot] Nov 2, 2025
089246c
Chore(deps): Bump actions/download-artifact from 5 to 6 (#14215)
dependabot[bot] Nov 2, 2025
3bc326c
Chore(deps): Bump jablib/src/main/abbrv.jabref.org (#14217)
dependabot[bot] Nov 2, 2025
f90158f
Chore(deps): Bump javafx from 25 to 25.0.1 in /versions (#14220)
dependabot[bot] Nov 2, 2025
6cefed3
Chore(deps): Bump com.autonomousapps:dependency-analysis-gradle-plugi…
dependabot[bot] Nov 2, 2025
d2d8bfa
Chore(deps): Bump com.autonomousapps:dependency-analysis-gradle-plugi…
dependabot[bot] Nov 2, 2025
98f1770
Chore(deps): Bump com.fasterxml.jackson.datatype:jackson-datatype-jsr…
dependabot[bot] Nov 2, 2025
f70594b
docs(agents): add initial guidelines for coding agents
InAnYan Nov 2, 2025
c8d4eb2
docs(agents): add more guidelines for coding agents
InAnYan Nov 2, 2025
44830a8
Chore(deps): Bump org.jetbrains.kotlin:kotlin-stdlib-jdk8 in /version…
dependabot[bot] Nov 2, 2025
1e2232b
Try to fix permissions
koppor Nov 3, 2025
5d41bb0
Add github-token to download-artifact step
koppor Nov 3, 2025
80844bb
fix(security): autofix Template Injection in GitHub Workflows Action …
aikido-autofix[bot] Nov 4, 2025
95ea471
fix(security): autofix Template Injection in GitHub Workflows Action …
aikido-autofix[bot] Nov 4, 2025
2844a09
chore(deps): update jersey monorepo to v4 (#14232)
renovate-bot Nov 4, 2025
a6d4772
Preview viewer: don't show stack trace to users (#14231)
subhramit Nov 5, 2025
2538565
Refactor tests to use parameterized tests (#14156)
Nakul-Shivaraj Nov 5, 2025
f589c16
ESC closes the preferences dialog when editing table. (#14106)
VishakhaMathur Nov 6, 2025
e265db9
Automatic Grouping By Date (#14169)
elliotgnn Nov 6, 2025
9d5c6f8
Revert "docs(agents): add more guidelines for coding agents"
InAnYan Nov 6, 2025
d6771e7
Revert "docs(agents): add initial guidelines for coding agents"
InAnYan Nov 6, 2025
873563d
Merge branch 'upstream-main' into feat/clinerules
InAnYan Nov 6, 2025
a472f90
feat(ai): change the strategy for AGENTS.md
InAnYan Nov 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: echo PR data
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
PR_URL: ${{ github.event.pull_request.html_url }}
PR_BODY: ${{ github.event.pull_request.body }}
run: |
echo "PR Number: ${{ github.event.pull_request.number }}"
echo "PR URL: ${{ github.event.pull_request.html_url }}"
echo "PR Number: $PR_NUMBER"
echo "PR URL: $PR_URL"
cat <<EOF
PR Body:
${{ github.event.pull_request.body }}
$PR_BODY
EOF
- name: Determine issue number
id: get_issue_number
Expand Down Expand Up @@ -421,10 +425,6 @@ jobs:
include:
- os: macos-15
displayName: macOS (ARM64)
suffix: '_arm64'
- os: macos-15-intel # intel image
displayName: macOS
suffix: ''
runs-on: ${{ matrix.os }}
steps:
- name: Download from GitHub workflow artifacts store (macOS)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gource.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
fail-fast: false
matrix:
include:
- title: 'JabRef v6.0 (in development) | more information at contribute.jabref.org'
# Last alpha release 2025-04-27, but want to have some seconds before
start: '2025-04-15'
- title: 'JabRef v6.0 (since alpha.3) | more information at contribute.jabref.org'
# Last alpha release 2025-10-30, but want to have some seconds before
start: '2025-10-29'
end: ''
file: 'jabref-v6.0-dev.mp4'
# - title: 'JabRef v6.0-alpha2 | more information at contribute.jabref.org'
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/link-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@ jobs:
issue_number: ${{ steps.get_issue_number.outputs.ticketNumber }}
steps:
- name: echo PR data
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
PR_URL: ${{ github.event.pull_request.html_url }}
PR_BODY: ${{ github.event.pull_request.body }}
run: |
echo "PR Number: ${{ github.event.pull_request.number }}"
echo "PR URL: ${{ github.event.pull_request.html_url }}"
echo "PR Number: $PR_NUMBER"
echo "PR URL: $PR_URL"
cat <<EOF
PR Body:
${{ github.event.pull_request.body }}
$PR_BODY
EOF
- name: Determine issue number
id: get_issue_number
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pr-changes-requested-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
actions: read
actions: write
steps:
- name: Create pr_number.txt
run: echo "${{ github.event.pull_request.number }}" > pr_number.txt
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/on-pr-changes-requested-move-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
contents: read
steps:
- name: Download artifact from triggering run
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
run-id: ${{ github.event.workflow_run.id }}
name: pr_number
github-token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
- name: Check for pr_number.txt
id: check
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/on-pr-closed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@ jobs:
issue_number: ${{ steps.get_issue_number.outputs.ticketNumber }}
steps:
- name: echo PR data
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
PR_URL: ${{ github.event.pull_request.html_url }}
PR_BODY: ${{ github.event.pull_request.body }}
run: |
echo "PR Number: ${{ github.event.pull_request.number }}"
echo "PR URL: ${{ github.event.pull_request.html_url }}"
echo "PR Number: $PR_NUMBER"
echo "PR URL: $PR_URL"
cat <<EOF
PR Body:
${{ github.event.pull_request.body }}
$PR_BODY
EOF
- name: Determine issue number
id: get_issue_number
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pr-opened-updated-move-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
contents: read
steps:
- name: Download artifact from triggering run
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
run-id: ${{ github.event.workflow_run.id }}
name: pr_number
Expand Down
1 change: 1 addition & 0 deletions .jbang/JabKitLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
// DEPS com.github.jabref:jabref:main-SNAPSHOT
//DEPS io.github.darvil82:terminal-text-formatter:2.2.0
//DEPS info.picocli:picocli:4.7.7
//DEPS com.github.ben-manes.caffeine:caffeine:3.2.3

import org.jabref.JabKit;

Expand Down
1 change: 1 addition & 0 deletions .jbang/JabLsLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
//DEPS org.slf4j:slf4j-api:2.0.17
//DEPS org.tinylog:slf4j-tinylog:2.7.0
//DEPS org.tinylog:tinylog-impl:2.7.0
//DEPS com.github.ben-manes.caffeine:caffeine:3.2.3

/// This class is required for [jbang](https://www.jbang.dev/)
public class JabLsLauncher {
Expand Down
7 changes: 4 additions & 3 deletions .jbang/JabSrvLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
//DEPS org.bouncycastle:bcprov-jdk18on:1.82
//DEPS com.konghq:unirest-modules-gson:4.5.1
//DEPS jakarta.ws.rs:jakarta.ws.rs-api:4.0.0
//DEPS org.glassfish.jersey.core:jersey-server:3.1.11
//DEPS org.glassfish.jersey.inject:jersey-hk2:3.1.11
//DEPS org.glassfish.jersey.core:jersey-server:4.0.0
//DEPS org.glassfish.jersey.inject:jersey-hk2:4.0.0
//DEPS org.glassfish.hk2:hk2-api:3.1.1
//DEPS org.glassfish.hk2:hk2-utils:3.1.1
//DEPS org.glassfish.hk2:hk2-locator:3.1.1
//DEPS org.glassfish.jersey.containers:jersey-container-grizzly2-http:3.1.11
//DEPS org.glassfish.jersey.containers:jersey-container-grizzly2-http:4.0.0
//DEPS org.glassfish.grizzly:grizzly-http-server:4.0.2
//DEPS org.glassfish.grizzly:grizzly-framework:4.0.2
//DEPS jakarta.validation:jakarta.validation-api:3.1.1
Expand All @@ -88,6 +88,7 @@
//DEPS org.jabref:afterburner.fx:2.0.0
//DEPS net.harawata:appdirs:1.5.0
//DEPS de.undercouch:citeproc-java:3.4.0
//DEPS com.github.ben-manes.caffeine:caffeine:3.2.3

/// This class is required for [jbang](https://www.jbang.dev/)
public class JabSrvLauncher {
Expand Down
3 changes: 3 additions & 0 deletions .markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ MD013: false
MD033:
# we have <a> tags with ids and superscript
allowed_elements: ['a', 'kbd', 'sup']

exclude:
- AGENTS.md
Loading