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

release: v1.7.0 #2414

Merged
merged 23 commits into from
Apr 15, 2024
Merged

release: v1.7.0 #2414

merged 23 commits into from
Apr 15, 2024

Conversation

Conaclos
Copy link
Member

@Conaclos Conaclos commented Apr 11, 2024

Summary

This upcoming release adds a new biome migrate eslint command that allows migrating an ESLint configuration to a Biome configuration. Also, it improves the existing biome migrate prettier.
We also ship many fixes and added more well-known files.

The release is planned for Monday 15 April 2024.

Tasks

  1. Add a changelog entry for every Pull Request that lacks one.
    You can filter merged PRs that don't update the changelog.
    Read our guidelines for editing the changelog.

  2. Based on the changelog, determine which version number to use.
    See our versioning guide for more details.

    Version 1.7.0

  3. Rename Unreleased to <version> (iso-date) in the changelog.

  4. Update version in Biome's package.json if applicable.

  5. Update to the same version in all crates if you publish crates. (Cargo.toml and crates/**/Cargo.toml)

    Not sure if we need to.

  6. Linter rules have a version metadata directly defined in their implementation.
    This field is set to next for newly created rules.
    This field must be updated to the new version.
    Then execute just gen-lint.

    Done

  7. Promote relevant rules.

    Promote rules Biome 1.7 #2425

  8. Update the website with the new version number:
    BIOME_VERSION=<version> just gen-web.
    This will also copy the configuration schema in the right place.

    Done. I let it unchecked because any update (rule promotion, ...) could modify the config schema.

  9. Write the blog post.
    I committed the initial draft.

@github-actions github-actions bot added A-Website Area: website A-Changelog Area: changelog labels Apr 11, 2024
Copy link

netlify bot commented Apr 11, 2024

Deploy Preview for biomejs ready!

Name Link
🔨 Latest commit 4b2515e
🔍 Latest deploy log https://app.netlify.com/sites/biomejs/deploys/661d1202e0fe1500086e3d32
😎 Deploy Preview https://deploy-preview-2414--biomejs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 100 (no change from production)
Accessibility: 97 (no change from production)
Best Practices: 100 (no change from production)
SEO: 93 (no change from production)
PWA: -
View the detailed breakdown and full score reports

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

@Conaclos Conaclos changed the title feat: set version number and add blog post chore(release): v1.7.0 Apr 11, 2024
@ematipico ematipico changed the title chore(release): v1.7.0 release: v1.7.0 Apr 11, 2024
Copy link
Contributor

@arendjr arendjr left a comment

Choose a reason for hiding this comment

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

Looks good!

website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
@Conaclos Conaclos requested a review from a team as a code owner April 12, 2024 10:26
Copy link
Member

@unvalley unvalley left a comment

Choose a reason for hiding this comment

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

chore typo things!

website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
@Conaclos Conaclos force-pushed the release/v1.7.0 branch 2 times, most recently from 19002e7 to ee6c69f Compare April 12, 2024 14:48
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/docs/guides/how-biome-works.mdx Outdated Show resolved Hide resolved
@github-actions github-actions bot added A-CLI Area: CLI A-Project Area: project A-Linter Area: linter A-Tooling Area: internal tools L-JavaScript Language: JavaScript and super languages A-Diagnostic Area: diagnostocis labels Apr 12, 2024
Copy link
Contributor

Parser conformance results on

js/262

Test result main count This PR count Difference
Total 49701 49701 0
Passed 48721 48721 0
Failed 980 980 0
Panics 0 0 0
Coverage 98.03% 98.03% 0.00%

jsx/babel

Test result main count This PR count Difference
Total 40 40 0
Passed 37 37 0
Failed 3 3 0
Panics 0 0 0
Coverage 92.50% 92.50% 0.00%

symbols/microsoft

Test result main count This PR count Difference
Total 6322 6322 0
Passed 2036 2036 0
Failed 4286 4286 0
Panics 0 0 0
Coverage 32.20% 32.20% 0.00%

ts/babel

Test result main count This PR count Difference
Total 662 662 0
Passed 593 593 0
Failed 69 69 0
Panics 0 0 0
Coverage 89.58% 89.58% 0.00%

ts/microsoft

Test result main count This PR count Difference
Total 17646 17646 0
Passed 13439 13439 0
Failed 4205 4205 0
Panics 2 2 0
Coverage 76.16% 76.16% 0.00%

Copy link

codspeed-hq bot commented Apr 12, 2024

CodSpeed Performance Report

Merging #2414 will degrade performances by 12.02%

Comparing release/v1.7.0 (4b2515e) with main (23076b9)

Summary

⚡ 1 improvements
❌ 1 regressions
✅ 91 untouched benchmarks

⚠️ Please fix the performance issues or acknowledge them on CodSpeed.

Benchmarks breakdown

Benchmark main release/v1.7.0 Change
big5-added.json[cached] 2.1 ms 2.4 ms -12.02%
big5-added.json[uncached] 3.2 ms 2.7 ms +18.95%

@github-actions github-actions bot added A-Core Area: core A-LSP Area: language server protocol labels Apr 13, 2024
Co-authored-by: Superchupu <53496941+SuperchupuDev@users.noreply.github.com>
@Conaclos
Copy link
Member Author

I think we are ready for the planned release tomorrow.

website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
@Conaclos Conaclos requested a review from ematipico April 15, 2024 08:28
@Conaclos Conaclos force-pushed the release/v1.7.0 branch 3 times, most recently from 3362274 to 518ff3a Compare April 15, 2024 08:56
Copy link
Member

@ematipico ematipico left a comment

Choose a reason for hiding this comment

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

I did a pass with grammarly. Looks though, feel free to merge it whenever :)

website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
website/src/content/blog/biome-v1-7.md Outdated Show resolved Hide resolved
@Conaclos Conaclos merged commit 2dce6af into main Apr 15, 2024
21 checks passed
@Conaclos Conaclos deleted the release/v1.7.0 branch April 15, 2024 12:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Changelog Area: changelog A-CLI Area: CLI A-Core Area: core A-Diagnostic Area: diagnostocis A-Linter Area: linter A-LSP Area: language server protocol A-Project Area: project A-Tooling Area: internal tools A-Website Area: website L-JavaScript Language: JavaScript and super languages
Projects
None yet
6 participants