Skip to content

Commit d60eb5a

Browse files
authored
chore: bump all (dev) deps (#34)
1 parent 0197455 commit d60eb5a

File tree

6 files changed

+79
-71
lines changed

6 files changed

+79
-71
lines changed

.github/workflows/release-napi.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
DEBUG: napi:*
14-
APP_NAME: rspack-resolver
14+
APP_NAME: unrs-resolver
1515
OXC_LOG: debug
1616
MACOSX_DEPLOYMENT_TARGET: 10.13
1717
CC: clang
@@ -25,7 +25,6 @@ jobs:
2525
name: Check version
2626
runs-on: ubuntu-latest
2727
outputs:
28-
version: ${{ env.version }}
2928
version_changed: ${{ steps.version.outputs.changed }}
3029
steps:
3130
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
@@ -35,22 +34,18 @@ jobs:
3534
id: version
3635
with:
3736
static-checking: localIsNew
38-
file-url: https://cdn.jsdelivr.net/npm/rspack-resolver@latest/package.json
37+
file-url: https://cdn.jsdelivr.net/npm/unrs-resolver@latest/package.json
3938
file-name: npm/package.json
4039

4140
- name: Set version name
4241
if: steps.version.outputs.changed == 'true'
43-
run: |
44-
echo "Version change found! New version: ${{ steps.version.outputs.version }} (${{ steps.version.outputs.type }})"
45-
echo "version=${{ steps.version.outputs.version }}" >> $GITHUB_ENV
42+
env:
43+
version: ${{ steps.version.outputs.version }}
44+
run: echo "version=${version}"
4645

4746
build:
4847
needs: check
4948
if: needs.check.outputs.version_changed == 'true'
50-
env:
51-
version: ${{ needs.check.outputs.version }}
52-
outputs:
53-
version: ${{ env.version }}
5449
strategy:
5550
fail-fast: false
5651
matrix:

Cargo.lock

Lines changed: 54 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -70,27 +70,27 @@ name = "resolver"
7070
[dependencies]
7171
cfg-if = "1.0"
7272
dashmap = "7.0.0-rc2"
73-
dunce = "1.0.4" # Normalize Windows paths to the most compatible format, avoiding UNC where possible
74-
indexmap = { version = "2.2.6", features = ["serde"] }
75-
json-strip-comments = "1.0.2"
76-
once_cell = "1.19.0" # Use `std::sync::OnceLock::get_or_try_init` when it is stable.
77-
papaya = "0.2.0"
78-
rustc-hash = { version = "2.0.0", default-features = false, features = ["std"] }
79-
serde = { version = "1.0.203", features = ["derive"], optional = true } # derive for Deserialize from package.json
80-
serde_json = { version = "1.0.117", features = ["preserve_order"], optional = true } # preserve_order: package_json.exports requires order such as `["require", "import", "default"]`
81-
simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
82-
thiserror = "1.0.69"
83-
tracing = "0.1.40"
73+
dunce = "1.0.5" # Normalize Windows paths to the most compatible format, avoiding UNC where possible
74+
indexmap = { version = "2.8.0", features = ["serde"] }
75+
json-strip-comments = "1.0.4"
76+
once_cell = "1.21.1" # Use `std::sync::OnceLock::get_or_try_init` when it is stable.
77+
papaya = "0.2.1"
78+
rustc-hash = { version = "2.1.1", default-features = false, features = ["std"] }
79+
serde = { version = "1.0.219", features = ["derive"], optional = true } # derive for Deserialize from package.json
80+
serde_json = { version = "1.0.140", features = ["preserve_order"], optional = true } # preserve_order: package_json.exports requires order such as `["require", "import", "default"]`
81+
simdutf8 = { version = "0.1.5", features = ["aarch64_neon"] }
82+
thiserror = "2.0.12"
83+
tracing = "0.1.41"
8484

8585
pnp = { version = "0.9.1", optional = true }
8686

87-
document-features = { version = "0.2.10", optional = true }
87+
document-features = { version = "0.2.11", optional = true }
8888

8989
[dev-dependencies]
9090
criterion2 = { version = "3.0.0", default-features = false }
9191
normalize-path = { version = "0.2.1" }
9292
rayon = { version = "1.10.0" }
93-
vfs = "0.12.0" # for testing with in memory file system
93+
vfs = "0.12.1" # for testing with in memory file system
9494

9595
[features]
9696
default = ["fs_cache", "yarn_pnp"]

napi/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "rspack_resolver_napi"
2+
name = "unrs_resolver_napi"
33
version = "0.0.0"
44
edition = "2024"
55
publish = false
@@ -11,10 +11,10 @@ test = false
1111
doctest = false
1212

1313
[dependencies]
14-
napi = { version = "3.0.0-alpha", default-features = false, features = ["napi3", "serde-json"] }
15-
napi-derive = { version = "3.0.0-alpha" }
14+
napi = { version = "3.0.0-alpha.33", default-features = false, features = ["napi3", "serde-json"] }
15+
napi-derive = { version = "3.0.0-alpha.29" }
1616
oxc_resolver = { path = "..", package = "unrs_resolver" }
17-
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["std", "fmt"] } # Omit the `regex` feature
17+
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["std", "fmt"] } # Omit the `regex` feature
1818

1919
[target.'cfg(all(not(target_os = "linux"), not(target_os = "freebsd"), not(target_arch = "arm"), not(target_family = "wasm")))'.dependencies]
2020
mimalloc-safe = { version = "0.1.49", features = ["skip_collect_on_exit"] }
@@ -23,7 +23,7 @@ mimalloc-safe = { version = "0.1.49", features = ["skip_collect_on_exit"] }
2323
mimalloc-safe = { version = "0.1.49", features = ["skip_collect_on_exit", "local_dynamic_tls"] }
2424

2525
[build-dependencies]
26-
napi-build = "2.1.5"
26+
napi-build = "2.1.6"
2727

2828
[package.metadata.cargo-machete]
2929
ignored = ["napi"]

npm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
See
44

55
- `index.d.ts` for `resolveSync` and `ResolverFactory` API.
6-
- [README.md](https://github.com/unrs/unrs-resolver#rspack-resolver) for options.
6+
- [README.md](https://github.com/unrs/unrs-resolver#unrs-resolver) for options.
77

88
## API
99

renovate.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["github>1stG/configs"],
4-
"ignorePaths": ["**/node_modules/**", "**/fixtures/**"],
5-
"packageRules": [
6-
{
7-
"groupName": "ignored crates",
8-
"matchManagers": ["cargo"],
9-
"matchPackageNames": ["thiserror"],
10-
"enabled": false
11-
}
12-
]
4+
"ignorePaths": ["**/node_modules/**", "**/fixtures/**"]
135
}

0 commit comments

Comments
 (0)