Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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/workflows/benchmark-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version: '1.26.0'
go-version: '1.26.4'
cache: false

- name: Run benchmarks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version: 1.26.0
go-version: 1.26.4
- name: Install pnpm
run: corepack enable
- name: Install JavaScript dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devbird.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version: 1.26.0
go-version: 1.26.4
- name: Install pnpm
run: corepack enable
- name: Install JavaScript dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Authenticate with crates.io
if: ${{ inputs.dry_run == false }}
id: auth
uses: rust-lang/crates-io-auth-action@bbd81622f20ce9e2dd9622e3218b975523e45bbe # v1.0.4
uses: rust-lang/crates-io-auth-action@c6f97d42243bad5fab37ca0427f495c86d5b1a18 # v1.0.5

- name: Publish tsgo-client
if: ${{ inputs.dry_run == false }}
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/rslint-native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]

[dependencies]
napi = "3.9.0"
napi-derive = "3.5.6"
napi-derive = "3.5.9"
oxc_allocator = "0.133.0"
# oxc_ast is a direct dependency solely to enable its `serialize` feature, which provides
# `Program::to_estree_*_json`. The Program value itself comes back from oxc_parser.
Expand All @@ -20,7 +20,7 @@ oxc_ast_visit = { version = "0.133.0", features = ["serialize"] }
oxc_parser = "0.133.0"
oxc_span = "0.133.0"
# token_map builds the AST cover from the ESTree JSON value.
serde_json = "1"
serde_json = "1.0.150"

[build-dependencies]
napi-build = "2.3.2"
2 changes: 1 addition & 1 deletion crates/rslint-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"build:debug": "napi build --platform --no-js && node ../../scripts/place-host-build.mjs node"
},
"devDependencies": {
"@napi-rs/cli": "3.7.0"
"@napi-rs/cli": "3.7.2"
}
}
8 changes: 4 additions & 4 deletions crates/tsgo-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ description = "TypeScript Go client library"
license = "MIT"

[dependencies]
thiserror = "2"
serde = { version = "1", features = [ "derive" ] }
cbor4ii = {version = "1", features = ["serde1"]}
thiserror = "2.0.18"
serde = { version = "1.0.228", features = [ "derive" ] }
cbor4ii = {version = "1.2.2", features = ["serde1"]}
serde_bytes = "0.11.19"
bitflags = { version = "2.13.0"}

[dev-dependencies]
insta = { version = "1.47.2", features = ["json"] }
serde_json = "1"
serde_json = "1.0.150"
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/web-infra-dev/rslint

go 1.26.0
go 1.26.5

replace (
github.com/microsoft/typescript-go/shim/api => ./shim/api
Expand Down Expand Up @@ -74,7 +74,7 @@ require (

require (
github.com/dlclark/regexp2 v1.12.0
github.com/fxamacker/cbor/v2 v2.9.0
github.com/fxamacker/cbor/v2 v2.9.2
github.com/go-json-experiment/json v0.0.0-20260601182631-00ed12fed2a6
github.com/microsoft/typescript-go v0.0.0-20260616000920-dd6bceb4d5b5 // indirect
golang.org/x/text v0.38.0
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"prettier": "3.8.1",
"typescript": "5.9.3",
"zx": "8.8.5",
"@typescript/native-preview": "7.0.0-dev.20250904.1"
"@typescript/native-preview": "7.0.0-dev.20260707.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
Expand All @@ -60,6 +60,6 @@
},
"files": [],
"dependencies": {
"@types/react": "^19.2.14"
"@types/react": "^19.2.17"
}
}
4 changes: 2 additions & 2 deletions packages/rslint-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"license": "MIT",
"packageManager": "pnpm@10.34.4",
"devDependencies": {
"@rslib/core": "0.23.0",
"@rslib/core": "0.23.2",
"@types/node": "24.3.0",
"@typescript/native-preview": "7.0.0-dev.20260427.1"
"@typescript/native-preview": "7.0.0-dev.20260707.2"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/rslint-test-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"@typescript-eslint/rule-tester": "workspace:*",
"@typescript-eslint/utils": "workspace:*",
"eslint": "10.6.0",
"eslint-plugin-cypress": "^6.4.1",
"eslint-plugin-cypress": "^6.4.2",
"eslint-plugin-es-x": "^9.7.0",
"eslint-plugin-playwright": "^2.10.4",
"eslint-plugin-playwright": "^2.10.5",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-security": "^4.0.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/rslint-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
"packageManager": "pnpm@10.34.4",
"devDependencies": {
"@rslint/core": "workspace:*",
"@microsoft/api-extractor": "7.58.7",
"@microsoft/api-extractor": "7.58.9",
"@wasmer/wasmfs": "0.12.0",
"esbuild": "^0.28.0",
"buffer": "^6.0.3",
"cross-env": "^10.1.0",
"esbuild-plugin-polyfill-node": "0.3.0",
"memfs": "^4.57.1",
"prebundle": "1.6.0",
"@typescript/native-preview": "7.0.0-dev.20250904.1"
"prebundle": "1.6.5",
"@typescript/native-preview": "7.0.0-dev.20260707.2"
},
"dependencies": {
"@rslint/core": "workspace:*"
Expand Down
10 changes: 5 additions & 5 deletions packages/rslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@
],
"devDependencies": {
"@eslint/plugin-kit": "0.7.2",
"@rslib/core": "0.23.0",
"@rslib/core": "0.23.2",
"@rslint/api": "workspace:*",
"@types/node": "24.0.14",
"@types/picomatch": "4.0.2",
"@types/picomatch": "4.0.3",
"@typescript-eslint/scope-manager": "8.59.4",
"@typescript-eslint/visitor-keys": "8.59.4",
"@typescript/native-preview": "7.0.0-dev.20250904.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"eslint-scope": "9.1.2",
"eslint-visitor-keys": "5.0.1",
"espree": "11.2.0",
"esquery": "1.7.0",
"globals": "17.7.0",
"tinyglobby": "0.2.15",
"tinyglobby": "0.2.17",
"typescript": "5.9.3"
},
"peerDependencies": {
Expand All @@ -94,6 +94,6 @@
"@rslint/native-win32-x64-msvc": "workspace:*"
},
"dependencies": {
"picomatch": "4.0.4"
"picomatch": "4.0.5"
}
}
2 changes: 1 addition & 1 deletion packages/rule-tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"devDependencies": {
"@types/node": "24.0.14",
"typescript": "5.9.3",
"@typescript/native-preview": "7.0.0-dev.20250904.1"
"@typescript/native-preview": "7.0.0-dev.20260707.2"
},
"dependencies": {
"@rslint/core": "workspace:*"
Expand Down
12 changes: 6 additions & 6 deletions packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,19 @@
},
"devDependencies": {
"@rslint/core": "workspace:*",
"@types/mocha": "10.0.9",
"@types/mocha": "10.0.10",
"@types/node": "24.0.14",
"@types/vscode": "^1.125.0",
"@vscode/test-cli": "0.0.11",
"@vscode/test-cli": "0.0.15",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.9.1",
"@vscode/vsce": "3.9.2",
"esbuild": "0.28.0",
"fast-glob": "3.3.3",
"mocha": "10.8.2",
"ovsx": "^0.10.5",
"rimraf": "6.1.2",
"ovsx": "^0.10.12",
"rimraf": "6.1.3",
"typescript": "^5.9.3",
"@typescript/native-preview": "7.0.0-dev.20250904.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
Expand Down
Loading
Loading