Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 8, 2025

This PR contains the following updates:

Package Change Age Confidence
@swc-node/register 1.5.1 -> 1.11.1 age confidence
@swc/cli 0.1.57 -> 0.7.8 age confidence
@swc/core (source) 1.2.242 -> 1.15.0 age confidence
@swc/jest (source) 0.2.22 -> 0.2.39 age confidence
@types/express (source) 4.17.13 -> 4.17.25 age confidence
@types/jest (source) 29.0.0 -> 29.5.14 age confidence
@types/node (source) 18.11.5 -> 18.19.130 age confidence
@types/supertest (source) 2.0.12 -> 2.0.16 age confidence
@typescript-eslint/eslint-plugin (source) 5.35.1 -> 5.62.0 age confidence
@typescript-eslint/parser (source) 5.35.1 -> 5.62.0 age confidence
eslint (source) 8.22.0 -> 8.57.1 age confidence
eslint-config-prettier 8.5.0 -> 8.10.2 age confidence
eslint-plugin-jest 27.0.0 -> 27.9.0 age confidence
jest (source) 29.0.0 -> 29.7.0 age confidence
nodemon (source) 2.0.19 -> 2.0.22 age confidence
prettier (source) 2.7.1 -> 2.8.8 age confidence
reflect-metadata (source) ^0.1.13 -> ^0.2.0 age confidence
rimraf 4.0.4 -> 4.4.1 age confidence
supertest 6.2.4 -> 6.3.4 age confidence
typescript (source) 4.7.4 -> 4.9.5 age confidence

Release Notes

swc-project/swc-node (@​swc-node/register)

v1.11.1

Compare Source

v1.10.10

Compare Source

v1.10.9

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.10.8...@​swc-node/register@1.10.9

v1.10.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.10.7...@​swc-node/register@1.10.8

v1.10.7

Compare Source

v1.10.6

Compare Source

v1.10.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.10.3...@​swc-node/register@1.10.5

v1.10.4

Compare Source

v1.10.3

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.10.2...@​swc-node/register@1.10.3

v1.10.2

Compare Source

v1.10.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.9.1...@​swc-node/register@1.10.1

v1.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.9.1...@​swc-node/register@1.10.0

v1.9.2

Compare Source

v1.9.1

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.8.0...@​swc-node/register@1.9.1

v1.9.0

Compare Source

v1.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/core@1.10.5...@​swc-node/register@1.8.0

v1.6.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/core@1.10.5...@​swc-node/register@1.6.8

v1.6.7

Compare Source

v1.6.6

Compare Source

v1.6.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/core@1.10.1...@​swc-node/register@1.6.5

v1.6.4

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/core@1.10.1...@​swc-node/register@1.6.4

v1.6.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/core@1.10.1...@​swc-node/register@1.6.3

v1.6.2

Compare Source

Bug Fixes
  • register: enforece module option in register/esm (#​694) (860d1f6)

v1.6.1

Compare Source

Bug Fixes
  • register: include esm files (8d6b0b7)

v1.6.0

Compare Source

Experimental esm support

node --loader=@​swc-node/register/esm ./src/index.ts in this project

src/index.ts

import assert from 'node:assert'
import test from 'node:test'

import { supportedExtensions } from 'file-type' // pure esm project

await test('file-type should work', () => {
  assert.ok(supportedExtensions.has('jpg'))
})

tsconfig.json

{
  "compilerOptions": {
    "target": "ESNext",
    "module": "ESNext",
  }
}

package.json

{
  "type": "module"
}

output

> node --loader=@​swc-node/register/esm ./src/index.ts

(node:77682) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
(node:77682) ExperimentalWarning: The test runner is an experimental feature. This feature could change at any time
TAP version 13

### Subtest: file-type should work
ok 1 - file-type should work
  ---
  duration_ms: 0.642416
  ...
1..1

### tests 1
### pass 1

### fail 0
### cancelled 0

### skipped 0
### todo 0

### duration_ms 5.702292

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/jest@1.5.9...@​swc-node/register@1.6.0

v1.5.8

Compare Source

Bug Fixes

v1.5.6

Compare Source

Bug Fixes
  • register: always inline swc helpers (1d557ec)
  • register: react configuration (af643b8)

v1.5.5

Compare Source

Note: Version bump only for package @​swc-node/register

v1.5.4

Compare Source

Bug Fixes

v1.5.3

Compare Source

v1.5.2

Compare Source

Bug Fixes

New Contributors

swc-project/pkgs (@​swc/cli)

v0.1.65

Compare Source

swc-project/swc (@​swc/core)

v1.15.0

Compare Source

Bug Fixes
Features
Performance
Refactor
Testing

v1.14.0

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
Refactor

v1.13.21

Compare Source

Bug Fixes
  • (bindings) Improve ARM64 and Alpine Linux (musl) binary loading and validation (#​11173) (f9be4d7)

  • (es/codegen) Encode non-ASCII chars in regex with ascii_only option (#​11155) (b6f4d1f)

  • (es/compat) Apply Array.prototype.slice to arguments in loose spread (#​11122) (66428a2)

  • (es/compat) Handle sparse arrays correctly in generator transforms (#​11131) (9cd4334)

  • (es/compat) Preserve AutoAccessor to prevent panic (#​11150) (101c3b7)

  • (es/decorators) Emit correct metadata for enum parameters (#​11154) (630484f)

  • (es/helpers) Fix SuppressedError argument order in explicit resource management (#​11172) (7693fb9)

  • (es/minifier) Fix inlining of hoisted functions (#​11159) (bd55d30)

  • (es/minifier) Fix inlining of hoisted functions in param (#​11161) (5a4088d)

  • (es/parser) Handle JSX attributes with keyword prefixes correctly (#​11136) (d3cd97f)

  • (es/parser) Support literal computed property names in enums (#​11163) (146c77c)

  • (es/react) Use correct span for @jsxFrag as null literal (#​11139) (9353763)

  • (es/transforms) Check errors::HANDLER.is_set() before failing (#​11130) (1c9ab27)

Features
  • (bindings) Introduce AST Viewer to improve debugging experience (#​10963) (fa3aacc)

  • (es/minifier) Add merge_imports optimization pass to reduce bundle size (#​11151) (a01dee1)

  • (es/parser) Add an error for empty type args for generic (#​11164) (9a1fa84)

Miscellaneous Tasks
  • (claude) Use Sonnet 4.5 instead of Opus (c79e1e5)

  • (deps) Update lru crate from 0.10.1 to 0.16.1 (#​11145) (e347c5b)

Refactor

v1.13.20

Compare Source

Bug Fixes
  • (es/minifier) Preserve __proto__ shorthand property behavior (#​11123) (63dbd1d)

  • (es/parser) Parse (void) correctly as arrow function return type (#​11125) (d3e5dd3)

Performance

v1.13.19

Compare Source

Bug Fixes
Features
Testing

v1.13.5

Compare Source

Bug Fixes
Features
Refactor

v1.13.4

Compare Source

Bug Fixes
  • (es/lexer) Use error when handling '\0' (#​10964) (53c22d1)

  • (es/minifier) Skip serde of pure_funcs in options (#​10969) (862e70d)

  • (es/minifier) Fix compile error with debug feature (#​10999) (831eed5)

  • (es/minifier) Don't eliminate class expr if some side effects contain this (#​11003) (18aeac6)

  • (es/module) Support optional chaining in import.meta (#​10985) (758d8ec)

  • (es/parser) Allow TS type args to start with LSHIFT (<<) to parse T<<S>() => void> (#​10996) (4911ec7)

  • (ts/isolated-dts) Correct optional marker for class fields generated from constructor parameter (#​10992) (0d680fd)

  • Expose GlobalPassOption.build (#​10968) (c8a2668)

Features
  • (bindings/html) Add keep-head-and-body for tagOmission in binding (#​11014) (1e1ebeb)

  • (html/minifier) Support keep_head_and_body (#​11008) (86186db)

  • (plugin/runner) Introduce wasmtime


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 5196923 to 8b8024c Compare April 17, 2025 21:22
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from e71b20f to e920274 Compare April 29, 2025 18:28
@renovate renovate bot force-pushed the renovate/dependencies branch 8 times, most recently from ee30170 to 162245d Compare May 8, 2025 14:39
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 5ba1da2 to e405155 Compare May 19, 2025 04:51
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 45642c3 to fa25298 Compare May 21, 2025 19:08
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from 2f029b6 to d58c6f4 Compare May 30, 2025 20:13
@renovate renovate bot force-pushed the renovate/dependencies branch from d58c6f4 to 86bc67b Compare June 5, 2025 07:44
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 6db668b to 96b0a7a Compare July 29, 2025 07:31
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 02f46c7 to a2c5822 Compare August 15, 2025 09:12
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 3423ff5 to aa2443d Compare August 24, 2025 13:03
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 8920a26 to 33b929c Compare September 4, 2025 14:45
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 3285363 to 7f2ecc5 Compare September 18, 2025 02:33
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from f9f54fe to 85f6250 Compare October 1, 2025 02:22
@renovate renovate bot force-pushed the renovate/dependencies branch from 85f6250 to 8a4f17e Compare October 9, 2025 22:34
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from 3a5a7e7 to b298d39 Compare October 27, 2025 21:12
@renovate renovate bot force-pushed the renovate/dependencies branch from b298d39 to 43940e4 Compare October 29, 2025 16:08
@renovate renovate bot force-pushed the renovate/dependencies branch from 43940e4 to 510b574 Compare November 4, 2025 08:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant