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

meta(changelog): Update package versions (beta) #139

Merged
merged 3 commits into from
Jun 11, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jun 3, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@codecov/[email protected]

Patch Changes

  • 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
  • 297cd29: Update license to 2024
  • fe21d8a: Update normalizePath function to handle [hash][extname] case.
  • d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.

@codecov/[email protected]

Patch Changes

  • 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
  • 297cd29: Update license to 2024
  • fe21d8a: Update normalizePath function to handle [hash][extname] case.
  • d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.
  • Updated dependencies [297cd29]
  • Updated dependencies [297cd29]
  • Updated dependencies [fe21d8a]
  • Updated dependencies [d74a176]

@codecov/[email protected]

Patch Changes

  • 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
  • 297cd29: Update license to 2024
  • fe21d8a: Update normalizePath function to handle [hash][extname] case.
  • d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.
  • Updated dependencies [297cd29]
  • Updated dependencies [297cd29]
  • Updated dependencies [fe21d8a]
  • Updated dependencies [d74a176]

@codecov/[email protected]

Patch Changes

  • 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
  • 297cd29: Update license to 2024
  • fe21d8a: Update normalizePath function to handle [hash][extname] case.
  • d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.
  • Updated dependencies [297cd29]
  • Updated dependencies [297cd29]
  • Updated dependencies [fe21d8a]
  • Updated dependencies [d74a176]

@codecov/[email protected]

Patch Changes

  • 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
  • 297cd29: Update license to 2024
  • fe21d8a: Update normalizePath function to handle [hash][extname] case.
  • d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.
  • Updated dependencies [297cd29]
  • Updated dependencies [297cd29]
  • Updated dependencies [fe21d8a]
  • Updated dependencies [d74a176]

@codecov/[email protected]

Patch Changes

  • 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
  • 297cd29: Update license to 2024
  • fe21d8a: Update normalizePath function to handle [hash][extname] case.
  • d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.
  • Updated dependencies [297cd29]
  • Updated dependencies [297cd29]
  • Updated dependencies [fe21d8a]
  • Updated dependencies [d74a176]

Copy link

@codecov codecov bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes reflect updates in the project's dependencies, namely the addition of the '@codecov/sveltekit-plugin' and updates to the versions of the test tools. There are also several changes on the package versions indicated in multiple package.json files. Moreover, changes on nuxt-plugin, rollup-plugin, sveltekit-plugin, vite-plugin, and webpack-plugin are noticed. Apart from a new plugin, most of the core changes are related to error handling and pathological cases, which are a good practice to handle in the early development stages of the project.

@@ -6,7 +6,8 @@
"@codecov/rollup-plugin": "0.0.0",
"@codecov/vite-plugin": "0.0.0",
"@codecov/webpack-plugin": "0.0.0",
"@codecov/nuxt-plugin": "0.0.0"
"@codecov/nuxt-plugin": "0.0.0",
"@codecov/sveltekit-plugin": "0.0.1-beta.8"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addition of '@codecov/sveltekit-plugin' is a good enhancement if its use is required for the specific project features.

### Patch Changes

- 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
- 297cd29: Update license to 2024
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes in the '@codecov/bundler-plugin-core' reflects an improvement since the bundle analysis allows you to understand what's really inside the bundle and how the code is structured.


- 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
- 297cd29: Update license to 2024
- fe21d8a: Update normalizePath function to handle [hash][extname] case.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

License update is always a good practice since it may bring legal issues if not properly handled.

- 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
- 297cd29: Update license to 2024
- fe21d8a: Update normalizePath function to handle [hash][extname] case.
- d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The normalizePath function update is a great improvement for handling edge cases.

- 297cd29: Update license to 2024
- fe21d8a: Update normalizePath function to handle [hash][extname] case.
- d74a176: When a user submits a invalid bundle name, we will hard fail and exit the bundle process now.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The enhancement to fail and exit the bundle process upon submission of an invalid bundle name is a commendable error handling practice. The old behavior might have caused undetected issues.

@@ -1,6 +1,6 @@
{
"name": "@codecov/bundler-plugin-core",
"version": "0.0.1-beta.8",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version bumping in '@codecov/bundler-plugin-core' package.json file indicates the release of a new version following the changes.


### Patch Changes

- 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The similar changes were also present in the '@codecov/nuxt-plugin' which helps in keeping consistency across different plugins.

@@ -1,6 +1,6 @@
{
"name": "@codecov/nuxt-plugin",
"version": "0.0.1-beta.8",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is good to always raise the version whenever making significant changes to the package, it was done right for '@codecov/nuxt-plugin'.


### Patch Changes

- 297cd29: Add in support for bundle analysis for SvelteKit through new SvelteKit plugin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On '@codecov/rollup-plugin', The bundle analysis update to support SvelteKit is exactly the same as the bundler-plugin-core, showing an effort to maintain consistency in the changes across all modules.

@@ -1,6 +1,6 @@
{
"name": "@codecov/rollup-plugin",
"version": "0.0.1-beta.8",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The '@codecov/rollup-plugin' version has also been updated in the package.json, which signals users that the change has introduced substantial improvements or additions.

@codecov-notifications
Copy link

codecov-notifications bot commented Jun 3, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

✅ All tests successful. No failed tests found.

Components Coverage Δ
Plugin core 97.69% <ø> (ø)
Rollup plugin 10.37% <ø> (ø)
Vite plugin 10.52% <ø> (ø)
Webpack plugin 26.04% <ø> (ø)

📢 Thoughts on this report? Let us know!

Copy link

codecov bot commented Jun 3, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 77.79%. Comparing base (fe21d8a) to head (a3aafd4).

✅ All tests successful. No failed tests found.

Additional details and impacted files
Components Coverage Δ
Plugin core 97.69% <ø> (ø)
Rollup plugin 10.37% <ø> (ø)
Vite plugin 10.52% <ø> (ø)
Webpack plugin 26.04% <ø> (ø)

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link

codecov bot commented Jun 3, 2024

Bundle Report

Changes will decrease total bundle size by 1.09MB ⬇️

Bundle name Size Change
@codecov/rollup-plugin-cjs 2.96kB 0 bytes
@codecov/nuxt-plugin-esm 855 bytes 0 bytes
@codecov/webpack-plugin-esm 1.44kB 1.44kB ⬇️
@codecov/example-sveltekit-app-server-esm 974.57kB 2 bytes ⬇️
@codecov/sveltekit-plugin-cjs 1.32kB 0 bytes
@codecov/vite-plugin-esm 2.45kB 1.19kB ⬆️
@codecov/rollup-plugin-esm 1.32kB 1.12kB ⬇️
@codecov/example-nuxt-app-server-esm 347.95kB 0 bytes
@codecov/example-sveltekit-app-client-esm 714.6kB 2 bytes ⬇️
@codecov/example-nuxt-app-client-esm 237.66kB 0 bytes
@codecov/sveltekit-plugin-esm 909 bytes 0 bytes
@codecov/bundler-plugin-core-esm 7.32kB 30.43kB ⬇️
@codecov/nuxt-plugin-cjs 1.4kB 0 bytes
@codecov/example-next-app-edge-server-array-push 354 bytes 0 bytes
@codecov/bundler-plugin-core-cjs 42.12kB 0 bytes
@codecov/vite-plugin-cjs 2.96kB 0 bytes
@codecov/example-next-app-server-cjs 342.32kB 0 bytes
@codecov/webpack-plugin-cjs 3.59kB 0 bytes
@codecov/example-webpack-app-array-push 71.19kB 0 bytes
@codecov/example-rollup-app-iife 95.45kB 0 bytes
@codecov/example-next-app-client-array-push (removed) 907.85kB ⬇️
@codecov/example-vite-app-esm (removed) 150.61kB ⬇️

@codecov-staging
Copy link

codecov-staging bot commented Jun 3, 2024

Bundle Report

Changes will decrease total bundle size by 979.16kB ⬇️

Bundle name Size Change
@codecov/bundler-plugin-core-cjs 42.12kB 0 bytes
@codecov/vite-plugin-cjs 2.96kB 2.96kB ⬆️
@codecov/sveltekit-plugin-cjs 1.32kB 0 bytes
@codecov/bundler-plugin-core-esm 7.32kB 0 bytes
@codecov/example-vite-app-esm 150.61kB 0 bytes
@codecov/vite-plugin-esm 1.26kB 1.19kB ⬇️
@codecov/nuxt-plugin-esm 1.23kB 373 bytes ⬆️
@codecov/sveltekit-plugin-esm 909 bytes 181 bytes ⬇️
@codecov/example-rollup-app-iife 95.45kB 0 bytes
@codecov/rollup-plugin-cjs 2.96kB 2.96kB ⬆️
@codecov/rollup-plugin-esm 1.32kB 0 bytes
@codecov/example-next-app-server-cjs 342.32kB 0 bytes
@codecov/webpack-plugin-esm 1.44kB 1.44kB ⬇️
@codecov/nuxt-plugin-cjs 1.4kB 0 bytes
@codecov/example-next-app-edge-server-array-push 354 bytes 0 bytes
@codecov/example-webpack-app-array-push (removed) 71.19kB ⬇️
@codecov/webpack-plugin-cjs (removed) 3.59kB ⬇️
@codecov/example-next-app-client-array-push (removed) 907.85kB ⬇️

@nicholas-codecov nicholas-codecov merged commit e7be5b4 into main Jun 11, 2024
37 checks passed
@nicholas-codecov nicholas-codecov deleted the changeset-release/main branch June 11, 2024 17:43
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.

3 participants