Skip to content

chore(deps): update dependency @rslib/core to ^0.7.1 #1069

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

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 5, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rslib/core (source) ^0.2.2 -> ^0.7.1 age adoption passing confidence

Release Notes

web-infra-dev/rslib (@​rslib/core)

v0.7.1

Compare Source

Highlights ✨

In 0.7.0, due to breaking changes in @ast-grep/napi, Ubuntu 20 is not supported if user enable dts generation.

This version revert this.

What's Changed
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.7.0...v0.7.1

v0.7.0

Compare Source

Highlights ✨

banner
First blog for Rslib 📚

Check out our first blog for Rslib: Rslib: Build library with Rspack

We are excited to introduce Rslib — a library development tool based on Rspack. Developed by ByteDance Web Infra Team, Rslib helps developers create JavaScript libraries and UI component libraries in a simple and intuitive way while enjoying the ultimate development experience brought by Rspack and Rsbuild.

Breaking changes 🚨

Reverted in v0.7.1.

Due to breaking changes in @ast-grep/napi, Ubuntu 20 is not supported now if user enable dts generation.

Update to Ubuntu 22 or higher if possible, reference: ast-grep/ast-grep@96f5500.

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.9...v0.7.0

v0.6.9

Compare Source

What's Changed

New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.8...v0.6.9

v0.6.8

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.7...v0.6.8

v0.6.7

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.6...v0.6.7

v0.6.6

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.5...v0.6.6

v0.6.5

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.4...v0.6.5

v0.6.4

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.3...v0.6.4

v0.6.3

Compare Source

What's Changed

Performance 🚀
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.6.2...v0.6.3

v0.6.2

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.1...v0.6.2

v0.6.1

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.0...v0.6.1

v0.6.0

Compare Source

Highlights ✨

This release brings exciting new features and improvements to Rslib:

  • New default library type for CJS: Rslib changes the default value of output.library.type for CJS from commonjs to commonjs-static. Now, individual exports will be set as properties on module.exports and the output can be statically analyzable, thus named exports are importable into ESM via Node.js. This is useful when source code is written in ESM and the output should be compatible with both CJS and ESM. (#​819)

    Named exports are importable into ESM via Node.js

    • Input:
    export function doSomething() {}
    • Output:
    function doSomething() {}
    // …
    exports.doSomething = __webpack_exports__.doSomething;
    • Consumption (CJS):
    const { doSomething } = require('./output.cjs'); // doSomething => [Function: doSomething]
    • Consumption (ESM):
    import { doSomething } from './output.cjs'; // doSomething => [Function: doSomething]
  • Show code frame for type errors: Rslib now shows full context and code frame of tsc diagnostics in the terminal when generating declaration files. This makes it easier to understand and fix issues in the source code. (#​847)

    image

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.5.5...v0.6.0

v0.5.5

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.5.4...v0.5.5

v0.5.4

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.3...v0.5.4

v0.5.3

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.2...v0.5.3

v0.5.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.1...v0.5.2

v0.5.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.0...v0.5.1

v0.5.0

Compare Source

Highlights ✨

This release brings exciting new features and improvements to Rslib:

  • Support DTS Redirect: Rslib now supports to control the redirect of the import paths in output TypeScript declaration files. (#​742)

    • redirect.dts.path: Redirect the import path in the DTS output file to the corresponding relative path based on the compilerOptions.paths configured in tsconfig.json.
    // For `compilerOptions.paths` set to `{ "@​/*": ["src/*"] }` in `tsconfig.json`
    import { foo } from '@​/foo'; // source code of './src/bar.ts' ↓
    import { foo } from './foo'; // expected output of './dist/bar.d.ts'
    
    import { foo } from '@​/foo'; // source code of './src/utils/index.ts' ↓
    import { foo } from '../foo'; // expected output './dist/utils/index.d.ts'
    • redirect.dts.extension: Redirect the import path in the DTS output file to the corresponding JavaScript extension which can be resolved to corresponding DTS file.
    // For `.d.mts` TypeScript Declaration files
    import { foo } from './foo'; // source code of './src/bar.ts' ↓
    import { foo } from './foo.mjs'; // expected output of './dist/bar.d.mts'
    
    import { foo } from './foo.ts'; // source code of './src/bar.ts' ↓
    import { foo } from './foo.mjs'; // expected output of './dist/bar.d.mts'
  • Support outBase in Bundleless Mode: When building a project where source files exist across multiple directories with bundleless mode, the output directory structure will be replicated relative to the outBase directory in the output directory, see lib.outBase for more details. (#​745)

  • Add Documents about Assets: Documents related to asset module have been added for common scenarios in component library development, see Import static assets, Import SVGR and Import JSON files for more details. (#​741)

  • Support pkg.pr.new: With pkg.pr.new, each of commits in main branch will trigger an instant preview release without publishing anything to NPM. This enables users to access features and bug-fixes without the need to wait for release cycles. (#​766)

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

Copy link

netlify bot commented May 5, 2025

Deploy Preview for rsdoctor ready!

Name Link
🔨 Latest commit 734d392
🔍 Latest deploy log https://app.netlify.com/projects/rsdoctor/deploys/682c459408204b000811b494
😎 Deploy Preview https://deploy-preview-1069--rsdoctor.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from fca84bd to 06ff70d Compare May 9, 2025 10:09
@renovate renovate bot changed the title chore(deps): update dependency @rslib/core to ^0.6.8 chore(deps): update dependency @rslib/core to ^0.6.9 May 9, 2025
@renovate renovate bot force-pushed the renovate/rslib-core-0.x branch from 06ff70d to 4705b27 Compare May 12, 2025 08:38
Copy link
Contributor Author

renovate bot commented May 12, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@easy1090 easy1090 force-pushed the renovate/rslib-core-0.x branch 2 times, most recently from 952d847 to 80b4177 Compare May 20, 2025 07:22
@easy1090 easy1090 deployed to production May 20, 2025 08:16 — with GitHub Actions Active
…slib/core to ^0.6.9

chore: change package/ai from cjs to esm

feat: change package/ai from cjs to esm

release: @rsdoctor/mcp-server 0.0.1-beta.4

release: @rsdoctor/mcp-server 0.0.1-next.1

chore: add some logs for e2e

fix: the test log

fix: change the version

chore: update the pnpm lock

fix: the resource path

chore: update dependency

chore: update dependency

chore: update dependency

chore: update dependency
@easy1090 easy1090 force-pushed the renovate/rslib-core-0.x branch from 24a43f5 to 734d392 Compare May 20, 2025 09:04
@easy1090 easy1090 closed this May 20, 2025
@renovate renovate bot changed the title chore(deps): update dependency @rslib/core to ^0.6.9 chore(deps): update dependency @rslib/core to ^0.7.1 May 20, 2025
Copy link
Contributor Author

renovate bot commented May 20, 2025

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (^0.7.1). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

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