Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(deps): update swc monorepo #902

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc-node/jest ^1.5.6 -> ^1.8.1 age adoption passing confidence
@swc/core (source) ^1.3.38 -> ^1.5.22 age adoption passing confidence
@swc/helpers (source) ^0.4.14 -> ^0.5.11 age adoption passing confidence

Release Notes

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

v1.8.1

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](https://togithub.com/swc-node/core)[@​1](https://togithub.com/1).10.5...[@​swc-node/register](https://togithub.com/swc-node/register)[@​1](https://togithub.com/1).8.0

v1.7.0

Compare Source

v1.6.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/core](https://togithub.com/swc-node/core)[@​1](https://togithub.com/1).10.5...[@​swc-node/register](https://togithub.com/swc-node/register)[@​1](https://togithub.com/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](https://togithub.com/swc-node/core)[@​1](https://togithub.com/1).10.1...[@​swc-node/register](https://togithub.com/swc-node/register)[@​1](https://togithub.com/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](https://togithub.com/swc-node/core)[@​1](https://togithub.com/1).10.1...[@​swc-node/register](https://togithub.com/swc-node/register)[@​1](https://togithub.com/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](https://togithub.com/swc-node/core)[@​1](https://togithub.com/1).10.1...[@​swc-node/register](https://togithub.com/swc-node/register)[@​1](https://togithub.com/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](https://togithub.com/swc-node/jest)[@​1](https://togithub.com/1).5.9...[@​swc-node/register](https://togithub.com/swc-node/register)[@​1](https://togithub.com/1).6.0

v1.5.9

Compare Source

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

v1.5.7

Compare Source

Bug Fixes
  • register: always inline swc helpers (1d557ec)
swc-project/swc (@​swc/core)

v1.5.22

Compare Source

v1.5.20

Compare Source

v1.5.19

Compare Source

v1.5.11

Compare Source

v1.5.7

Compare Source

Documentation

v1.5.6

Compare Source

Bug Fixes

v1.5.5

Compare Source

Bug Fixes
Refactor

v1.5.3

Compare Source

v1.5.2

Compare Source

v1.5.1

Compare Source

Bug Fixes
  • (es/decorator) Support for legacy decorators in class expressions (#​8892) (8fe57ad)

  • (es/helpers) Remove unused export from _using_ctx.js (#​8891) (438d0b3)

  • (es/minifier) Do not add vars if eval exists (#​8888) (be359fa)

v1.5.0

Compare Source

Bug Fixes
Features

v1.4.17

Compare Source

Bug Fixes

v1.4.16

Compare Source

Bug Fixes

v1.4.15

Compare Source

Bug Fixes
Features
Refactor
Build

v1.4.14

Compare Source

Bug Fixes
Documentation
  • (swc_core) Resolve build issue with --all-features flag (#​8848) (c0d901e)
Refactor
Testing

v1.4.13

Compare Source

Bug Fixes

v1.4.12

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance

v1.4.11

Compare Source

v1.4.8

Compare Source

Bug Fixes
  • (es/module) Fix regression of resolving relative modules (#​8748) (f988b66)

  • (es/parser) Allow export after decorators when valid (#​8739) (663261b)

Miscellaneous Tasks

v1.4.7

Compare Source

Bug Fixes
  • (es/minifier) Fix eval of toString of array with holes (#​8727) (f3fbd9d)

  • (es/minifier) Do not evaluate slice calls with negative index (#​8726) (23f9635)

  • (es/minifier) Handle cyclic references while dropping unused properties (#​8725) (102241b)

  • (es/minifier) Fix evaluation of array literals with void 0 (#​8733) (aa0154d)

  • (es/minifier) Fix removal of array pattern bindings (#​8730) (312f0d8)

  • (es/minifier) Make Finalizer handle hoisted_props correctly (#​8738) (95761b7)

  • (es/proposal) Fix var placement for using transform (#​8732) (633cd89)

Features
Refactor
  • (es) Prepare wasm32-wasi-preview1-threads target support (#​8724) (e3acd14)

v1.4.6

Compare Source

Bug Fixes
Performance

v1.4.5

Compare Source

Bug Fixes
Features

v1.4.4

Compare Source

v1.4.2

Compare Source

Bug Fixes
Features
Testing

v1.4.1

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Refactor
  • (bindings) Remove bindings for experimental packages (#​8600) (6c50ff1)
Testing
Build

v1.4.0

Compare Source

Bug Fixes
Features
Refactor
Testing
  • (es/minifer) Update the passing terser test list (#​8573) (8b86638)

  • (es/testing) Ensure that test_inline! is working properly (#​8590) (872a47b)

v1.3.107

Compare Source

Bug Fixes
  • (es/codegen) Do not produce octal literals (#​8565) (07634a0)

  • (es/decorator) Skip TypeScript class method/prop declarations (#​8555) (6a8dd8c)

  • (es/decorator) Preserve state while traversing the module_items scope (#​8556) (f416aff)

  • (es/loader) Make tsc resolver work for bare specifier (#​8550) (d6a4615)

v1.3.106

Compare Source

Bug Fixes
Features
Miscellaneous Tasks

v1.3.105

Compare Source

Bug Fixes
Miscellaneous Tasks

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Aug 6, 2023
@renovate renovate bot enabled auto-merge (rebase) August 6, 2023 16:06
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 8 times, most recently from cd479f9 to 81903a7 Compare August 10, 2023 14:51
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 8 times, most recently from 843de65 to a87c229 Compare August 18, 2023 07:44
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 11 times, most recently from 593d0d7 to 56bcbdb Compare August 27, 2023 22:56
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from d57911f to 388f19b Compare March 8, 2024 07:06
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 583fc43 to dd9cc50 Compare March 18, 2024 02:08
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from dc95ec9 to 2c90818 Compare March 28, 2024 10:20
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 140c7a2 to 9e9b00e Compare April 9, 2024 08:37
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 5 times, most recently from 9ba4a0d to 9f807af Compare April 18, 2024 11:11
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 6 times, most recently from a48fc55 to 5546942 Compare April 27, 2024 14:35
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from fb0bf63 to 7ea5a63 Compare May 6, 2024 16:33
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from b5042d1 to c67257e Compare May 15, 2024 01:29
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 8bb0c17 to 590b7fd Compare May 28, 2024 11:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants