Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
23360a8
build(deps): bump sphinx-scylladb-theme from 1.9.1 to 1.9.2 in /docs
dependabot[bot] Apr 14, 2026
433dc48
docs: update theme 1.9
dgarcia360 Mar 12, 2026
52b0f4a
chore: address comments
dgarcia360 Mar 16, 2026
05da6c7
Pin GitHub Actions to specific commit SHAs
nikagra Apr 17, 2026
10c2b95
fix: replace SimpleStrategy with NetworkTopologyStrategy in integrati…
nikagra Apr 22, 2026
bd9b26a
fix: use unique partition keys in QueryReturnTypesIT to avoid LWT con…
nikagra May 7, 2026
441eb42
fix: enrich DriverTimeoutException with per-node pool/channel diagnos…
nikagra May 11, 2026
0ae5b7a
Start consider SERIAL SELECT as LWT queries
dkropachev May 13, 2026
940259a
fix: extend NodeDiagnostics with node state, distance, datacenter and…
nikagra May 13, 2026
4e3fdba
[maven-release-plugin] prepare release 4.19.0.9
scylladb-promoter May 14, 2026
9149592
[maven-release-plugin] prepare for next development iteration
scylladb-promoter May 14, 2026
c777983
Skip defensive copy for completed prepare cache futures (#892)
nikagra May 18, 2026
7a812c2
fix: bump netty to 4.1.133.Final to remediate CVE-2026-42583
nikagra May 19, 2026
707f7cf
Merge upstream apache/cassandra-java-driver 4.19.2 and bump version t…
nikagra May 22, 2026
c6878d8
chore: remove ASF Jenkinsfile
dkropachev May 24, 2026
3893f93
ci: authenticate integration version lookups
dkropachev May 25, 2026
19b1cbb
build: align native-protocol BOM version
dkropachev May 25, 2026
916794c
fix: invalidate prepared cache on UDT changes
dkropachev May 25, 2026
0c5f4fb
test: provide Micrometer histogram bounds in no-SLA test
dkropachev May 25, 2026
deaeb1c
build: drop Java 8 support
dkropachev May 24, 2026
a6c2792
fix: validate non-numeric subnet prefixes
dkropachev May 24, 2026
8265325
ci: restore Java 11 and JDK 17 validation
dkropachev May 24, 2026
397df6f
test: fix Java 11 test compatibility and CI failures
dkropachev May 24, 2026
5a61e12
refactor: hide mutable primitive codec array
dkropachev May 26, 2026
e280db0
ci: update github-automation ref to fix unpinned actions/checkout
nikagra May 28, 2026
c830c20
Revert "ci: update github-automation ref to fix unpinned actions/chec…
nikagra May 29, 2026
1d65bce
ci: update scylladb/github-automation to latest main (47138e9) (#914)
sylwiaszunejko Jun 8, 2026
2612f1e
fix: bump netty to 4.1.135.Final to remediate CVE-2026-44249 and CVE-…
nikagra Jun 15, 2026
a4cd60c
docs: fix 17 broken links in manual, FAQ, and upgrade guide
nikagra Jun 16, 2026
d701bb8
Fix NPE in ChannelPool metrics methods when pool is uninitialized
nikagra Jun 17, 2026
710f931
Fix closing uninitialized channel pools
dkropachev Jun 23, 2026
882d388
build(deps): bump sphinx-scylladb-theme from 1.9.1 to 1.9.2 in /docs
dependabot[bot] Apr 14, 2026
f8ae998
Merge remote branch and resolve poetry.lock conflict
Copilot Jun 24, 2026
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
2 changes: 1 addition & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "pip"
- package-ecosystem: "uv"
directory: "/docs"
schedule:
interval: "daily"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call_jira_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
jira-sync:
uses: scylladb/github-automation/.github/workflows/main_pr_events_jira_sync.yml@main
uses: scylladb/github-automation/.github/workflows/main_pr_events_jira_sync.yml@47138e9130250ee1a35166cff7dd0e94c8897196 # main
with:
caller_action: ${{ github.event.action }}
secrets:
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/docs-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,25 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
ref: ${{ github.event.repository.default_branch }}
persist-credentials: false
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.13'

- name: Set up JDK 8.0
uses: actions/setup-java@v5
- name: Set up JDK 11
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'

- name: Install uv
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0

- name: Set up env
run: make -C docs setupenv

Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/docs-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
persist-credentials: false
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.13'

- name: Set up JDK 8.0
uses: actions/setup-java@v5
- name: Set up JDK 11
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'

- name: Install uv
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0

- name: Set up env
run: make -C docs setupenv

- name: Build docs
run: make -C docs test
run: make -C docs test
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1

- name: Checkout Code One Commit Before ${{ inputs.target-tag }}
if: inputs.target-tag != 'scylla-4.x'
env:
RELEASE_TARGET_TAG: ${{ inputs.target-tag }}
run: make checkout-one-commit-before

- name: Set up Java
uses: actions/setup-java@v5
- name: Set up JDK 11
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'
server-id: central
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: make release-dry-run

- name: Upload release logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: maven-stdout
path: /tmp/java-driver-release-logs/*.log
Expand Down
Loading