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

build(deps): bump the dependencies group with 5 updates #171

Merged
merged 2 commits into from
Mar 8, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 8, 2024

Bumps the dependencies group with 5 updates:

Package From To
next 14.2.0-canary.8 14.2.0-canary.10
react 18.3.0-canary-0066e0b68-20240306 18.3.0-canary-338dddc08-20240307
react-dom 18.3.0-canary-0066e0b68-20240306 18.3.0-canary-338dddc08-20240307
@biomejs/biome 1.5.3 1.6.0
@happy-dom/global-registrator 13.6.2 13.7.0

Updates next from 14.2.0-canary.8 to 14.2.0-canary.10

Release notes

Sourced from next's releases.

v14.2.0-canary.10

Core Changes

  • app layouts/pages depend on shared main files: #63042

Documentation Changes

  • Docs: Update CRA migration guide: #63037

Example Changes

  • Switch CodeSandbox repros to pnpm: #63038

Credits

Huge thanks to @​karlhorky, @​delbaoliveira, and @​sokra for helping!

v14.2.0-canary.9

Core Changes

  • Fix the plugin state for async modules in webpack plugins: #62998
  • Turbopack + pages router: recover from runtime errors by reloading: #63024
  • Enable minification for Turbopack: #62994

Example Changes

  • chore(blog-starter): update import paths to use aliases: #62986

Misc Changes

  • fix flakey HMR test: #63022
  • fix transpile-packages test: #63023
  • Fix flaky test by removing unecessary NODE_OPTIONS='--inspect': #63025
  • fix dynamic api route test: #63027

Credits

Huge thanks to @​huozhi, @​ztanner, @​dnhn, @​samcx, @​wbinnssmith, and @​timneutkens for helping!

Commits

Updates react from 18.3.0-canary-0066e0b68-20240306 to 18.3.0-canary-338dddc08-20240307

Commits

Updates react-dom from 18.3.0-canary-0066e0b68-20240306 to 18.3.0-canary-338dddc08-20240307

Commits

Updates @biomejs/biome from 1.5.3 to 1.6.0

Release notes

Sourced from @​biomejs/biome's releases.

VSCode Extension v1.6.0

Analyzer

Enhancements

  • Import sorting is safe to apply now, and it will be applied when running check --apply instead of check --apply-unsafe.

  • Import sorting now handles Bun imports bun:<name>, absolute path imports /<path>, and Node's subpath imports #<name>. See our documentation for more details. Contributed by @​Conaclos

CLI

Bug fixes

  • Fix #319. The command biome lint now shows the correct options. Contributed by @​ematipico
  • Fix #312. Running biome --version now exits with status code 0 instead of 1. Contributed by @​nhedger
  • Fix a bug where the extends functionality doesn't carry over organizeImports.ignore. Contributed by @​ematipico
  • The CLI now returns the original content when using stdin and the original content doesn't change. Contributed by @​ematipico

New features

  • Add support for BIOME_BINARY environment variable to override the location of the binary. Contributed by @​ematipico

  • Add option --indent-width, and deprecated the option --indent-size. Contributed by @​ematipico

  • Add option --javascript-formatter-indent-width, and deprecated the option --javascript-formatter-indent-size. Contributed by @​ematipico

  • Add option --json-formatter-indent-width, and deprecated the option --json-formatter-indent-size. Contributed by @​ematipico

  • Add option --daemon-logs to biome rage. The option is required to view Biome daemon server logs. Contributed by @​unvalley

  • Add support for logging. By default, Biome doesn't log anything other than diagnostics. Logging can be enabled with the new option --log-level:

    biome format --log-level=info ./src

    There are four different levels of logging, from the most verbose to the least verbose: debug, info, warn and error. Here's how an INFO log will look like:

    2023-10-05T08:27:01.954727Z  INFO  Analyze file ./website/src/playground/components/Resizable.tsx
      at crates/biome_service/src/file_handlers/javascript.rs:298 on biome::worker_5
      in Pulling diagnostics with categories: RuleCategories(SYNTAX)
      in Processes formatting with path: "./website/src/playground/components/Resizable.tsx"
      in Process check with path: "./website/src/playground/components/Resizable.tsx"
    

    You can customize how the log will look like with a new option --log-kind. The supported kinds are: pretty, compact and json.

    pretty is the default logging. Here's how a compact log will look like:

    2023-10-05T08:29:04.864247Z  INFO biome::worker_2 Process check:Processes linting:Pulling diagnostics: crates/biome_service/src/file_handlers/javascript.rs: Analyze file ./website/src/playground/components/Resizable.tsx path="./website/src/playground/components/Resizable.tsx" path="./website/src/playground/components/Resizable.tsx" categories=RuleCategories(LINT)
    2023-10-05T08:29:04.864290Z  INFO biome::worker_7 Process check:Processes formatting: crates/biome_service/src/file_handlers/javascript.rs: Format file ./website/src/playground/components/Tabs.tsx path="./website/src/playground/components/Tabs.tsx" path="./website/src/playground/components/Tabs.tsx"
    2023-10-05T08:29:04.879332Z  INFO biome::worker_2 Process check:Processes formatting:Pulling diagnostics: crates/biome_service/src/file_handlers/javascript.rs: Analyze file ./website/src/playground/components/Resizable.tsx path="./website/src/playground/components/Resizable.tsx" path="./website/src/playground/components/Resizable.tsx" categories=RuleCategories(SYNTAX)
    2023-10-05T08:29:04.879383Z  INFO biome::worker_2 Process check:Processes formatting: crates/biome_service/src/file_handlers/javascript.rs: Format file ./website/src/playground/components/Resizable.tsx path="./website/src/playground/components/Resizable.tsx" path="./website/src/playground/components/Resizable.tsx"
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

1.6.0 (2024-04-08)

Analyzer

New features

  • Add partial for .astro files. Biome is able to sort imports inside the frontmatter of the Astro files. Contributed by @​ematipico

    ---
    - import { getLocale } from "astro:i18n";
    - import { Code } from "astro:components";
    + import { Code } from "astro:components";
    + import { getLocale } from "astro:i18n";
    ---
    <div></div>

  • Add partial for .vue files. Biome is able to sort imports inside the script block of Vue files. Contributed by @​nhedger

    <script setup lang="ts">
    - import Button from "./components/Button.vue";
    - import * as vueUse from "vue-use";
    + import * as vueUse from "vue-use";
    + import Button from "./components/Button.vue";
    </script/>
    &lt;template></template>

  • Add partial for .svelte files. Biome is able to sort imports inside the script block of Svelte files. Contributed by @​ematipico

    <script setup lang="ts">
    - import Button from "./components/Button.svelte";
    - import * as svelteUse from "svelte-use";
    + import * as svelteUse from "svelte-use";
    + import Button from "./components/Button.svelte";
    </script/>
    <div></div>

  • Add lint rule useJsxKeyInIterable from Eslint rule react/jsx-key. Contributed by @​vohoanglong0107

  • The analyzer now infers the correct quote from javascript.formatter.quoteStyle, if set. This means that code fixes suggested by the analyzer will use the same quote of the formatter. Contributed by @​ematipico

... (truncated)

Commits

Updates @happy-dom/global-registrator from 13.6.2 to 13.7.0

Release notes

Sourced from @​happy-dom/global-registrator's releases.

v13.7.0

🎨 Features

  • Returns matched Element type in *.querySelector(), *.querySelectorAll(), *.getElementsByTagName(), *.getElementsByTagNameNS(), Document.createElement() and Document.createElementNS() - By @​capricorn86 in task #1101
  • Adds support for HashChangeEvent - By @​capricorn86 in task #1101
  • Adds support for navigating and posting form data when submitting a form - By @​capricorn86 in task #1101

👷‍♂️ Patch fixes

  • Fixes problem related to form not being submitted when clicking a button with a "form" attribute set to the form's ID - By @​capricorn86 in task #1101
Commits
  • 4c808b6 Merge pull request #1289 from capricorn86/1101-buttonform=id-not-triggering-f...
  • 3aa0ea9 feat: #1101 Returns matched Element type in *.querySelector(), *.querySelec...
  • 0ea8cec chore: #1101 Continues on implementation
  • 5403e18 chore: #1101 Continues on implementation
  • a215170 chore: #1101 Continues on implementation
  • 6e64250 chore: #1101 Continues on implementation
  • 7c48e4e chore: #1101 Adds unit tests for Location
  • deb3da4 feat: #1101 Adds support for HashChangeEvent
  • 10f9ee5 feat: #1101 Adds support for navigating and submitting form data when HTMLF...
  • d4e1ad9 fix: #1101 Fixes problem related to form not being submitted when clicking ...
  • 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [next](https://github.com/vercel/next.js) | `14.2.0-canary.8` | `14.2.0-canary.10` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.0-canary-0066e0b68-20240306` | `18.3.0-canary-338dddc08-20240307` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.0-canary-0066e0b68-20240306` | `18.3.0-canary-338dddc08-20240307` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.5.3` | `1.6.0` |
| [@happy-dom/global-registrator](https://github.com/capricorn86/happy-dom) | `13.6.2` | `13.7.0` |


Updates `next` from 14.2.0-canary.8 to 14.2.0-canary.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.0-canary.8...v14.2.0-canary.10)

Updates `react` from 18.3.0-canary-0066e0b68-20240306 to 18.3.0-canary-338dddc08-20240307
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/react)

Updates `react-dom` from 18.3.0-canary-0066e0b68-20240306 to 18.3.0-canary-338dddc08-20240307
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/react-dom)

Updates `@biomejs/biome` from 1.5.3 to 1.6.0
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.6.0/packages/@biomejs/biome)

Updates `@happy-dom/global-registrator` from 13.6.2 to 13.7.0
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v13.6.2...v13.7.0)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@happy-dom/global-registrator"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from Marukome0743 as a code owner March 8, 2024 19:26
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Mar 8, 2024
@dependabot dependabot bot requested a review from kazutan1230 as a code owner March 8, 2024 19:26
@dependabot dependabot bot added the 📦dependencies Pull requests that update a dependency file label Mar 8, 2024
Copy link

netlify bot commented Mar 8, 2024

Deploy Preview for openup-homepage ready!

Name Link
🔨 Latest commit b806287
🔍 Latest deploy log https://app.netlify.com/sites/openup-homepage/deploys/65eb6671d00c0f00083bfdf2
😎 Deploy Preview https://deploy-preview-171--openup-homepage.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 site configuration.

Copy link

github-actions bot commented Mar 8, 2024

Overview

Image reference marukome0743/homepage:latest ghcr.io/openup-labtakizawa/homepage:pr-171
- digest 62bccc92bbcf d6956c5fe35d
- provenance 7c517ec 1b2cf40
- vulnerabilities critical: 0 high: 0 medium: 0 low: 0 critical: 0 high: 0 medium: 0 low: 0
- platform linux/amd64 linux/amd64
- size 49 MB 57 MB (+7.7 MB)
- packages 28 28
Base Image distroless/static:nonroot distroless/static-debian11:latest
- vulnerabilities critical: 0 high: 0 medium: 0 low: 0 critical: 0 high: 0 medium: 0 low: 0
Environment Variables (1 changes)
  • ± 1 changed
  • 5 unchanged
 BUN_RUNTIME_TRANSPILER_CACHE_PATH=0
 HOSTNAME=0.0.0.0
 NODE_ENV=production
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-PORT=80
+PORT=3000
 SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
Labels (3 changes)
  • ± 3 changed
  • 5 unchanged
-org.opencontainers.image.created=2024-02-05T09:45:23.125Z
+org.opencontainers.image.created=2024-03-08T19:27:37.524Z
 org.opencontainers.image.description=OpenUp LabTakizawa's official homepage🏡
 org.opencontainers.image.licenses=Apache-2.0
-org.opencontainers.image.revision=7c517ec71dad5cd580be046979dc90d801eaf126
+org.opencontainers.image.revision=1b2cf407cf08f509d20f75fe5f88f5e2e1b80ec6
 org.opencontainers.image.source=https://github.com/OpenUp-LabTakizawa/homepage
 org.opencontainers.image.title=homepage
 org.opencontainers.image.url=https://github.com/OpenUp-LabTakizawa/homepage
-org.opencontainers.image.version=v0.2.0
+org.opencontainers.image.version=pr-171
Packages and Vulnerabilities (15 package changes and 0 vulnerability changes)
  • ♾️ 15 packages changed
  • 13 packages unchanged
Changes for packages of type deb (4 changes)
Package Version
marukome0743/homepage:latest
Version
ghcr.io/openup-labtakizawa/homepage:pr-171
♾️ base-files 11.1+deb11u8 11.1+deb11u9
♾️ glibc 2.31-13+deb11u7 2.31-13+deb11u8
♾️ libc6 2.31-13+deb11u7 2.31-13+deb11u8
♾️ tzdata 2021a-1+deb11u11 2024a-0+deb11u1
Changes for packages of type npm (11 changes)
Package Version
marukome0743/homepage:latest
Version
ghcr.io/openup-labtakizawa/homepage:pr-171
♾️ @edge-runtime/cookies 4.0.2 4.1.0
♾️ @edge-runtime/ponyfill 2.4.1 2.4.2
♾️ @edge-runtime/primitives 4.0.2 4.1.0
♾️ @next/env 14.1.1-canary.27 14.2.0-canary.8
♾️ @swc/helpers 0.5.2 0.5.5
♾️ caniuse-lite 1.0.30001584 1.0.30001596
♾️ homepage 0.2.0 0.3.0
♾️ next 14.1.1-canary.27 14.2.0-canary.8
♾️ react 18.3.0-canary-4b2a1115a-20240202 18.3.0-canary-0066e0b68-20240306
♾️ react-dom 18.3.0-canary-4b2a1115a-20240202 18.3.0-canary-0066e0b68-20240306
♾️ scheduler 0.24.0-canary-4b2a1115a-20240202 0.24.0-canary-0066e0b68-20240306

Copy link

netlify bot commented Mar 8, 2024

Deploy Preview for openup-homepage ready!

Name Link
🔨 Latest commit 8eba325
🔍 Latest deploy log https://app.netlify.com/sites/openup-homepage/deploys/65eb668604abf000080b2b8b
😎 Deploy Preview https://deploy-preview-171--openup-homepage.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 site configuration.

@Marukome0743 Marukome0743 merged commit 74d1c27 into main Mar 8, 2024
16 checks passed
@Marukome0743 Marukome0743 deleted the dependabot/npm_and_yarn/dependencies-5d229add97 branch March 8, 2024 23:24
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants