Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 24
- run: make syntax
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: latest
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: 24
- run: make syntax
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to the "vscode-rascript" extension will be documented in thi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [[0.5.2](https://github.com/joshraphael/vscode-rascript/releases/tag/v0.5.3)] - 2026-MM-DD

[diff](https://github.com/joshraphael/vscode-rascript/compare/v0.5.2...v0.5.3)

### Added

### Changed

### Removed

### Fixed

### Security

- Bump dependencies to fix multiple vulnerabilities [#54](https://github.com/joshraphael/vscode-rascript/security/dependabot/54), [#55](https://github.com/joshraphael/vscode-rascript/security/dependabot/55), [#56](https://github.com/joshraphael/vscode-rascript/security/dependabot/56), [#57](https://github.com/joshraphael/vscode-rascript/security/dependabot/57), [#58](https://github.com/joshraphael/vscode-rascript/security/dependabot/58), [#60](https://github.com/joshraphael/vscode-rascript/security/dependabot/60), [#61](https://github.com/joshraphael/vscode-rascript/security/dependabot/61), [#62](https://github.com/joshraphael/vscode-rascript/security/dependabot/62)

## [[0.5.2](https://github.com/joshraphael/vscode-rascript/releases/tag/v0.5.2)] - 2026-06-10

[diff](https://github.com/joshraphael/vscode-rascript/compare/v0.5.1...v0.5.2)
Expand Down
27 changes: 9 additions & 18 deletions pnpm-lock.yaml

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

5 changes: 5 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
allowBuilds:
'@playwright/browser-chromium': true
minimumReleaseAgeExclude:
- playwright-core@1.62.1
overrides:
'playwright-core': '^1.62.1' # try removing once @vscode/test-cli upgrades > 0.0.15
'serialize-javascript': '^7.0.5' # try removing once @vscode/test-cli upgrades > 0.0.15
Loading