chore(deps): bump the biome group with 3 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 1
(4 months ago)
(4 months ago)
dependencies javascript
Bumps the biome group with 3 updates: @biomejs/js-api, @biomejs/wasm-nodejs and @biomejs/biome.
Updates @biomejs/js-api from 2.0.3 to 3.0.0
Release notes
Sourced from @biomejs/js-api's releases.
JavaScript APIs v3.0.0
3.0.0
Patch Changes
- Updated dependencies [
527db7f]:What's Changed
- feat(cli): enhanced summary reporter by
@ematipicoin biomejs/biome#6731- feat(biome_js_analyze): allow specifying stable object keys in
useExhaustiveDependenciesconfiguration by@josh- in biomejs/biome#6398- feat(noRestrictedImports): add the patterns option by
@sakai-astin biomejs/biome#5506- feat: support configureable sorting mode for imports, keys and attributes by
@nazarhussainin biomejs/biome#6506- feat(wasm): expose new functions by
@ematipicoin biomejs/biome#6896- ci: sync
nextbranch to the website repo by@siketyanin biomejs/biome#7011- feat(wasm): expose Workspace::scan_project_folder by
@siketyanin biomejs/biome#7005- feat(formatter): add option to split binary expressions before operators by
@bavalpeyin biomejs/biome#6159- feat(qwik): add domain setup and enable some pre-existing rules by
@ptkagoriin biomejs/biome#6923- feat(core): scanner v2 by
@arendjrin biomejs/biome#6989- chore: tweak CodeRabbit by
@arendjrin biomejs/biome#7132- perf: minor performance tweaks by
@siketyanin biomejs/biome#7122- fix: revive wasm build by
@siketyanin biomejs/biome#7136- feat(lint): add
ignoreTypesoption to thenoImportCyclesrule by@siketyanin biomejs/biome#7017- fix: set language of noVueDataObjectDeclaration to js by
@dyc3in biomejs/biome#7144- docs: remove the mention of a fix by
@ematipicoin biomejs/biome#7146- ci: use
github.shafor dispatch event on release by@siketyanin biomejs/biome#7145- chore(lint): version released rules by
@siketyanin biomejs/biome#7147- chore(lint): remove extra
vfrom rule metadata by@siketyanin biomejs/biome#7150- docs(changelog): fix wrong
useConsistentTypeDefinitionsURL by@JamBalaya56562in biomejs/biome#7151- feat(analyze/js): add
useMaxParamsby@Jayllyzin biomejs/biome#7124- feat(analyze/js): add
noNextAsyncClientComponentrule in Next domain by@Jayllyzin biomejs/biome#7081- refactor(test): make generated snapshot tests have module stucture that matches folder structure by
@dyc3in biomejs/biome#7163- fix(core): included files in nested configurations by
@ematipicoin biomejs/biome#7161- feat(parser/html): text expressions in attributes by
@ematipicoin biomejs/biome#6907- feat: promote rules by
@ematipicoin biomejs/biome#7137- fix(linter): false positive for
noDuplicateFontNamesby@ematipicoin biomejs/biome#7156- feat(parse/tailwind): handle most basenames with dashes by
@dyc3in biomejs/biome#7068- feat(parser/tailwind): support arbitrary candidates by
@dyc3in biomejs/biome#7086- refactor: use if-let-chain if possible (applying clippy fixes) by
@siketyanin biomejs/biome#7169- build: upgrade to Rust 1.89 by
@siketyanin biomejs/biome#7170- feat(resolver): resolve extension alias by
@siketyanin biomejs/biome#7158- chore(coderabbit): dont review generated files by
@Jayllyzin biomejs/biome#7172- fix(yaml_parser): tokens out of order by
@vohoanglong0107in biomejs/biome#7168- chore(deps): update github-actions by
@renovate[bot] in biomejs/biome#7178- chore(deps): update rust crate camino to 1.1.11 by
@renovate[bot] in biomejs/biome#7180
... (truncated)
Commits
e1ba03cchore: restore version and use different runner1b783c8chore: revert versionee7ec19chore: update version and lockfile9b3ff65chore: revert version5b6c6edci: release (#7157)0667478chore: fix various typos across codebase (#7216)257498aMerge remote-tracking branch 'origin/main' into nextdf3afdffeat(lint): adduseBiomeIgnoreFolderandnoBiomeFirstException(#7159)71ec138chore(deps): update@biomejspackages (#7176)e2242d0ci: release (#7069)- Additional commits viewable in compare view
Updates @biomejs/wasm-nodejs from 2.1.4 to 2.2.0
Release notes
Sourced from @biomejs/wasm-nodejs's releases.
Biome CLI v2.2.0
2.2.0
Minor Changes
#5506
1f8755bThanks@sakai-ast! - ThenoRestrictedImportsrule has been enhanced with a newpatternsoption. This option allows for more flexible and powerful import restrictions using gitignore-style patterns.You can now define patterns to restrict entire groups of modules. For example, you can disallow imports from any path under
import-foo/except forimport-foo/baz.{ "options": { "patterns": [ { "group": ["import-foo/*", "!import-foo/baz"], "message": "import-foo is deprecated, except for modules in import-foo/baz." } ] } }Invalid examples
import foo from "import-foo/foo"; import bar from "import-foo/bar";Valid examples
import baz from "import-foo/baz";Additionally, the
patternsoption introducesimportNamePatternto restrict specific import names using regular expressions. The following example restricts the import names that matchx,yorzletters from modules underimport-foo/.{ "options": { "patterns": [ { "group": ["import-foo/*"], "importNamePattern": "[xyz]" } ] } }
... (truncated)
Commits
e1ba03cchore: restore version and use different runner1b783c8chore: revert versionee7ec19chore: update version and lockfile9b3ff65chore: revert version5b6c6edci: release (#7157)0f33058chore: remove unwanted script0667478chore: fix various typos across codebase (#7216)0e226f2chore: fix typos in biome js formatter crate (#7213)703b427chore: fix typos in biome js analyze crate (#7210)f8b81d2chore: fix typos in biome crates (#7215)- Additional commits viewable in compare view
Updates @biomejs/biome from 2.1.4 to 2.2.0
Release notes
Sourced from @biomejs/biome's releases.
Biome CLI v2.2.0
2.2.0
Minor Changes
#5506
1f8755bThanks@sakai-ast! - ThenoRestrictedImportsrule has been enhanced with a newpatternsoption. This option allows for more flexible and powerful import restrictions using gitignore-style patterns.You can now define patterns to restrict entire groups of modules. For example, you can disallow imports from any path under
import-foo/except forimport-foo/baz.{ "options": { "patterns": [ { "group": ["import-foo/*", "!import-foo/baz"], "message": "import-foo is deprecated, except for modules in import-foo/baz." } ] } }Invalid examples
import foo from "import-foo/foo"; import bar from "import-foo/bar";Valid examples
import baz from "import-foo/baz";Additionally, the
patternsoption introducesimportNamePatternto restrict specific import names using regular expressions. The following example restricts the import names that matchx,yorzletters from modules underimport-foo/.{ "options": { "patterns": [ { "group": ["import-foo/*"], "importNamePattern": "[xyz]" } ] } }
... (truncated)
Changelog
Sourced from @biomejs/biome's changelog.
2.2.0
Minor Changes
#5506
1f8755bThanks@sakai-ast! - ThenoRestrictedImportsrule has been enhanced with a newpatternsoption. This option allows for more flexible and powerful import restrictions using gitignore-style patterns.You can now define patterns to restrict entire groups of modules. For example, you can disallow imports from any path under
import-foo/except forimport-foo/baz.{ "options": { "patterns": [ { "group": ["import-foo/*", "!import-foo/baz"], "message": "import-foo is deprecated, except for modules in import-foo/baz." } ] } }Invalid examples
import foo from "import-foo/foo"; import bar from "import-foo/bar";Valid examples
import baz from "import-foo/baz";Additionally, the
patternsoption introducesimportNamePatternto restrict specific import names using regular expressions. The following example restricts the import names that matchx,yorzletters from modules underimport-foo/.{ "options": { "patterns": [ { "group": ["import-foo/*"], "importNamePattern": "[xyz]" } ] } }
... (truncated)
Commits
e1ba03cchore: restore version and use different runner1b783c8chore: revert versionee7ec19chore: update version and lockfile9b3ff65chore: revert version5b6c6edci: release (#7157)0667478chore: fix various typos across codebase (#7216)f66209bchore: fix typos in biome formatter and grit crates (#7207)a3840acMerge pull request #7167 from biomejs/next13bbbc1chore: add Vercel to sponsors (#7200)7d00fdd[autofix.ci] apply automated fixes- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Technical Details
| ID: | 5129390 |
| UUID: | 3321628412 |
| Node ID: | PR_kwDODeqQrc6jp1Kn |
| Host: | GitHub |
| Repository: | acacode/swagger-typescript-api |