Skip to content

Commit 25402ba

Browse files
authored
chore: update lockfiles (lancedb#1946)
1 parent 37c359e commit 25402ba

File tree

5 files changed

+107
-5
lines changed

5 files changed

+107
-5
lines changed

.github/workflows/make-release-commit.yml

+4
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,7 @@ jobs:
9797
if: ${{ !inputs.dry_run && inputs.other }}
9898
with:
9999
github_token: ${{ secrets.GITHUB_TOKEN }}
100+
- uses: ./.github/workflows/update_package_lock_nodejs
101+
if: ${{ !inputs.dry_run && inputs.other }}
102+
with:
103+
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/npm-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ jobs:
571571
uses: actions/checkout@v4
572572
with:
573573
ref: main
574-
persist-credentials: false
574+
token: ${{ secrets.LANCEDB_RELEASE_TOKEN }}
575575
fetch-depth: 0
576576
lfs: true
577577
- uses: ./.github/workflows/update_package_lock
@@ -589,7 +589,7 @@ jobs:
589589
uses: actions/checkout@v4
590590
with:
591591
ref: main
592-
persist-credentials: false
592+
token: ${{ secrets.LANCEDB_RELEASE_TOKEN }}
593593
fetch-depth: 0
594594
lfs: true
595595
- uses: ./.github/workflows/update_package_lock_nodejs

node/package-lock.json

+96
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/lancedb/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ http = { version = "1", optional = true } # Matching what is in reqwest
6262
uuid = { version = "1.7.0", features = ["v4"], optional = true }
6363
polars-arrow = { version = ">=0.37,<0.40.0", optional = true }
6464
polars = { version = ">=0.37,<0.40.0", optional = true }
65+
# There was a big jump in MSRV for this package, and it's used by Polars.
66+
home = { version = "=0.5.9", optional = true }
6567
hf-hub = { version = "0.3.2", optional = true }
6668
candle-core = { version = "0.6.0", optional = true }
6769
candle-transformers = { version = "0.6.0", optional = true }
@@ -89,7 +91,7 @@ fp16kernels = ["lance-linalg/fp16kernels"]
8991
s3-test = []
9092
bedrock = ["dep:aws-sdk-bedrockruntime"]
9193
openai = ["dep:async-openai", "dep:reqwest"]
92-
polars = ["dep:polars-arrow", "dep:polars"]
94+
polars = ["dep:polars-arrow", "dep:polars", "dep:home"]
9395
sentence-transformers = [
9496
"dep:hf-hub",
9597
"dep:candle-core",

0 commit comments

Comments
 (0)