diff --git a/.github/workflows/comment_bot.yml b/.github/workflows/comment_bot.yml
index b4dbc92df..507d6a969 100644
--- a/.github/workflows/comment_bot.yml
+++ b/.github/workflows/comment_bot.yml
@@ -30,7 +30,7 @@ jobs:
if: github.event.comment.body == 'take'
runs-on: ubuntu-latest
steps:
- - uses: actions/github-script@v8
+ - uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |-
diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml
index 84740628e..20946c818 100644
--- a/.github/workflows/dev_pr.yml
+++ b/.github/workflows/dev_pr.yml
@@ -50,28 +50,28 @@ jobs:
- name: Ensure PR title format
id: title-format
- uses: actions/github-script@v8
+ uses: actions/github-script@v9
with:
script: |
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
return scripts.check_title_format({core, github, context});
- name: Label PR
- uses: actions/github-script@v8
+ uses: actions/github-script@v9
with:
script: |
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
await scripts.apply_labels({core, github, context});
- name: Ensure PR is labeled
- uses: actions/github-script@v8
+ uses: actions/github-script@v9
with:
script: |
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
await scripts.check_labels({core, github, context});
- name: Ensure PR is linked to an issue
- uses: actions/github-script@v8
+ uses: actions/github-script@v9
with:
script: |
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
diff --git a/.github/workflows/rc.yml b/.github/workflows/rc.yml
index 9c75b8c80..2658f1da0 100644
--- a/.github/workflows/rc.yml
+++ b/.github/workflows/rc.yml
@@ -71,7 +71,7 @@ jobs:
run: |
dev/release/run_rat.sh "${TAR_GZ}"
- name: Upload source archive
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: release-source
path: |
@@ -127,7 +127,7 @@ jobs:
with:
repository: apache/parquet-testing
path: arrow/cpp/submodules/parquet-testing
- - uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
+ - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
@@ -148,7 +148,7 @@ jobs:
- name: Compress into single artifact to keep directory structure
run: tar -cvzf jni-linux-${{ matrix.platform.arch }}.tar.gz jni/
- name: Upload artifacts
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: jni-linux-${{ matrix.platform.arch }}
path: jni-linux-${{ matrix.platform.arch }}.tar.gz
@@ -278,7 +278,7 @@ jobs:
- name: Compress into single artifact to keep directory structure
run: tar -cvzf jni-macos-${{ matrix.platform.arch }}.tar.gz jni/
- name: Upload artifacts
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: jni-macos-${{ matrix.platform.arch }}
path: jni-macos-${{ matrix.platform.arch }}.tar.gz
@@ -356,7 +356,7 @@ jobs:
shell: bash
run: tar -cvzf jni-windows-${{ matrix.platform.arch }}.tar.gz jni/
- name: Upload artifacts
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: jni-windows-${{ matrix.platform.arch }}
path: jni-windows-${{ matrix.platform.arch }}.tar.gz
@@ -428,12 +428,12 @@ jobs:
cp -a target/site/apidocs reference
tar -cvzf reference.tar.gz reference
- name: Upload binaries
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: release-binaries
path: binaries/*
- name: Upload docs
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: reference
path: reference.tar.gz
@@ -471,7 +471,7 @@ jobs:
- name: Compress into single artifact to keep directory structure
run: tar -cvzf html.tar.gz -C docs/build html
- name: Upload artifacts
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: release-html
path: html.tar.gz
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 5ca9cf9b7..a2c5a5554 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
publish:
name: Publish
runs-on: ubuntu-latest
- timeout-minutes: 5
+ timeout-minutes: 30
steps:
- name: Download RC contents
run: |
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
index 4585435b4..f52dfafb4 100644
--- a/.mvn/extensions.xml
+++ b/.mvn/extensions.xml
@@ -23,7 +23,7 @@
com.gradle
develocity-maven-extension
- 2.3.4
+ 2.4.0
com.gradle
diff --git a/bom/pom.xml b/bom/pom.xml
index e4ccee02d..d97cc291c 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -23,8 +23,8 @@ under the License.
org.apache
apache
- 33
-
+ 37
+
org.apache.arrow
@@ -78,7 +78,7 @@ under the License.
-
+
17
17
@@ -208,7 +208,7 @@ under the License.
com.diffplug.spotless
spotless-maven-plugin
- 2.44.4
+ 3.4.0
org.codehaus.mojo
@@ -235,7 +235,7 @@ under the License.
${maven.multiModuleProjectDirectory}/dev/license/asf-xml.license
(<configuration|<project)
-
+
diff --git a/flight/flight-core/pom.xml b/flight/flight-core/pom.xml
index 92490dd67..d199f70da 100644
--- a/flight/flight-core/pom.xml
+++ b/flight/flight-core/pom.xml
@@ -134,7 +134,7 @@ under the License.
com.google.api.grpc
proto-google-common-protos
- 2.66.0
+ 2.70.0
test
diff --git a/flight/flight-integration-tests/pom.xml b/flight/flight-integration-tests/pom.xml
index ec81162e5..f6ae8e16a 100644
--- a/flight/flight-integration-tests/pom.xml
+++ b/flight/flight-integration-tests/pom.xml
@@ -101,7 +101,7 @@ under the License.
-
+
META-INF/LICENSE.txt
src/shade/LICENSE.txt
diff --git a/flight/flight-sql-jdbc-core/pom.xml b/flight/flight-sql-jdbc-core/pom.xml
index ffeff1246..1f9bc3e00 100644
--- a/flight/flight-sql-jdbc-core/pom.xml
+++ b/flight/flight-sql-jdbc-core/pom.xml
@@ -165,7 +165,7 @@ under the License.
org.bouncycastle
bcpkix-jdk18on
- 1.83
+ 1.84
@@ -182,7 +182,7 @@ under the License.
com.nimbusds
oauth2-oidc-sdk
- 11.34
+ 11.37
diff --git a/flight/flight-sql-jdbc-driver/pom.xml b/flight/flight-sql-jdbc-driver/pom.xml
index 55de7221e..ff5763702 100644
--- a/flight/flight-sql-jdbc-driver/pom.xml
+++ b/flight/flight-sql-jdbc-driver/pom.xml
@@ -138,7 +138,7 @@ under the License.
-
+
META-INF/LICENSE.txt
src/shade/LICENSE.txt
diff --git a/memory/memory-core/pom.xml b/memory/memory-core/pom.xml
index 1c7b6f883..825b3dae4 100644
--- a/memory/memory-core/pom.xml
+++ b/memory/memory-core/pom.xml
@@ -100,8 +100,8 @@ under the License.
test
-
-
+
+
**/TestOpens.java
diff --git a/performance/pom.xml b/performance/pom.xml
index 413d5ba1e..d994bff45 100644
--- a/performance/pom.xml
+++ b/performance/pom.xml
@@ -35,10 +35,10 @@ under the License.
true
.*
1
-
+
5
5
-
+
jmh-result.json
json
@@ -143,7 +143,7 @@ under the License.
java
-classpath
-
+
org.openjdk.jmh.Main
${benchmark.filter}
-f
diff --git a/pom.xml b/pom.xml
index 863169b47..738aea03b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ under the License.
org.apache
apache
- 35
+ 37
org.apache.arrow
@@ -97,22 +97,22 @@ under the License.
1.9.0
5.12.2
2.0.17
- 33.5.0-jre
- 4.2.10.Final
- 1.79.0
+ 33.6.0-jre
+ 4.2.12.Final
+ 1.80.0
4.34.1
2.21.2
- 3.4.3
+ 3.5.0
25.2.10
1.12.1
1.17.0
5.23.0
-
+
2
10.23.0
true
2.42.0
- 3.54.0
+ 4.0.0
1.5.32
none
-Xdoclint:none
@@ -374,7 +374,7 @@ under the License.
-
+
@@ -387,7 +387,7 @@ under the License.
-
+
@@ -400,7 +400,7 @@ under the License.
-
+
@@ -413,7 +413,7 @@ under the License.
-
+
@@ -492,7 +492,7 @@ under the License.
com.diffplug.spotless
spotless-maven-plugin
- 2.44.4
+ 3.4.0
org.codehaus.mojo
@@ -734,7 +734,7 @@ under the License.
${maven.multiModuleProjectDirectory}/dev/license/asf-xml.license
(<configuration|<project)
-
+
diff --git a/tools/pom.xml b/tools/pom.xml
index 64634b9ab..b4d64fd43 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -126,7 +126,7 @@ under the License.
-
+
META-INF/LICENSE.txt
src/shade/LICENSE.txt