AVGVSTVS96 / astroSite

Built with Astro and TailwindCSS, this MPA portfolio & blog site is version 3 of my personal website, my first MPA.
https://astrosite-aid.pages.dev/
GNU Affero General Public License v3.0
0 stars 0 forks source link

chore(deps): bump the misc group across 1 directory with 3 updates #365

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the misc group with 3 updates in the / directory: openai, type-coverage and wrangler.

Updates openai from 4.34.0 to 4.47.1

Release notes

Sourced from openai's releases.

v4.47.1

4.47.1 (2024-05-14)

Full Changelog: v4.47.0...v4.47.1

Chores

  • internal: add slightly better logging to scripts (#848) (139e690)

v4.47.0

4.47.0 (2024-05-14)

Full Changelog: v4.46.1...v4.47.0

Features

v4.46.1

4.46.1 (2024-05-13)

Full Changelog: v4.46.0...v4.46.1

Refactors

v4.46.0

4.46.0 (2024-05-13)

Full Changelog: v4.45.0...v4.46.0

Features

v4.45.0

4.45.0 (2024-05-11)

Full Changelog: v4.44.0...v4.45.0

Features

Chores

... (truncated)

Changelog

Sourced from openai's changelog.

4.47.1 (2024-05-14)

Full Changelog: v4.47.0...v4.47.1

Chores

  • internal: add slightly better logging to scripts (#848) (139e690)

4.47.0 (2024-05-14)

Full Changelog: v4.46.1...v4.47.0

Features

4.46.1 (2024-05-13)

Full Changelog: v4.46.0...v4.46.1

Refactors

4.46.0 (2024-05-13)

Full Changelog: v4.45.0...v4.46.0

Features

4.45.0 (2024-05-11)

Full Changelog: v4.44.0...v4.45.0

Features

Chores

4.44.0 (2024-05-09)

Full Changelog: v4.43.0...v4.44.0

... (truncated)

Commits
  • d7d5610 Merge pull request #849 from openai/release-please--branches--master--changes...
  • 7376041 release: 4.47.1
  • 139e690 chore(internal): add slightly better logging to scripts (#848)
  • 2b1bc88 release: 4.47.0
  • 8701aa6 feat(api): add incomplete state (#846)
  • 3f4b743 release: 4.46.1
  • c17fcb7 refactor: change import paths to be relative (#843)
  • 65bcdfe release: 4.46.0
  • 5b0a67c feat(api): add gpt-4o model (#841)
  • 95f3690 Merge pull request #837 from openai/release-please--branches--master--changes...
  • Additional commits viewable in compare view


Updates type-coverage from 2.28.1 to 2.28.2

Changelog

Sourced from type-coverage's changelog.

2.28.2 (2024-04-29)

Commits


Updates wrangler from 3.50.0 to 3.57.0

Release notes

Sourced from wrangler's releases.

wrangler@3.57.0

Minor Changes

  • #5696 7e97ba8 Thanks @​geelen! - feature: Improved d1 execute --file --remote performance & added support for much larger SQL files within a single transaction.

  • #5819 63f7acb Thanks @​CarmenPopoviciu! - fix: Show feedback on Pages project deployment failure

    Today, if uploading a Pages Function, or deploying a Pages project fails for whatever reason, there’s no feedback shown to the user. Worse yet, the shown message is misleading, saying the deployment was successful, when in fact it was not:

    ✨ Deployment complete!
    

    This commit ensures that we provide users with:

    • the correct feedback with respect to their Pages deployment
    • the appropriate messaging depending on the status of their project's deployment status
    • the appropriate logs in case of a deployment failure
  • #5814 2869e03 Thanks @​CarmenPopoviciu! - fix: Display correct global flags in wrangler pages --help

    Running wrangler pages --help will list, amongst others, the following global flags:

    -j, --experimental-json-config
    -c, --config
    -e, --env
    -h, --help
    -v, --version
    

    This is not accurate, since flags such as --config, --experimental-json-config, or env are not supported by Pages.

    This commit ensures we display the correct global flags that apply to Pages.

  • #5818 df2daf2 Thanks @​WalshyDev! - chore: Deprecate usage of the deployment object on the unsafe metadata binding in favor of the new version_metadata binding.

    If you're currently using the old binding, please move over to the new version_metadata binding by adding:

    [version_metadata]
    binding = "CF_VERSION_METADATA"
    

    and updating your usage accordingly. You can find the docs for the new binding here: https://developers.cloudflare.com/workers/runtime-apis/bindings/version-metadata

Patch Changes

  • #5838 609debd Thanks @​petebacondarwin! - fix: update undici to the latest version to avoid a potential vulnerability

  • #5832 86a6e09 Thanks @​petebacondarwin! - fix: do not allow non-string values in bulk secret uploads

    Prior to Wrangler 3.4.0 we displayed an error if the user tried to upload a JSON file that contained non-string secrets, since these are not supported

... (truncated)

Changelog

Sourced from wrangler's changelog.

3.57.0

Minor Changes

  • #5696 7e97ba8 Thanks @​geelen! - feature: Improved d1 execute --file --remote performance & added support for much larger SQL files within a single transaction.

  • #5819 63f7acb Thanks @​CarmenPopoviciu! - fix: Show feedback on Pages project deployment failure

    Today, if uploading a Pages Function, or deploying a Pages project fails for whatever reason, there’s no feedback shown to the user. Worse yet, the shown message is misleading, saying the deployment was successful, when in fact it was not:

    ✨ Deployment complete!
    

    This commit ensures that we provide users with:

    • the correct feedback with respect to their Pages deployment
    • the appropriate messaging depending on the status of their project's deployment status
    • the appropriate logs in case of a deployment failure
  • #5814 2869e03 Thanks @​CarmenPopoviciu! - fix: Display correct global flags in wrangler pages --help

    Running wrangler pages --help will list, amongst others, the following global flags:

    -j, --experimental-json-config
    -c, --config
    -e, --env
    -h, --help
    -v, --version
    

    This is not accurate, since flags such as --config, --experimental-json-config, or env are not supported by Pages.

    This commit ensures we display the correct global flags that apply to Pages.

  • #5818 df2daf2 Thanks @​WalshyDev! - chore: Deprecate usage of the deployment object on the unsafe metadata binding in favor of the new version_metadata binding.

    If you're currently using the old binding, please move over to the new version_metadata binding by adding:

    [version_metadata]
    binding = "CF_VERSION_METADATA"
    

    and updating your usage accordingly. You can find the docs for the new binding here: https://developers.cloudflare.com/workers/runtime-apis/bindings/version-metadata

Patch Changes

... (truncated)

Commits
  • 65902d5 Version Packages (#5837)
  • df2daf2 Deprecate "deployment" in metadata binding (#5818)
  • 7e97ba8 D1: execute --file --remote now uses dedicated import API (#5696)
  • 95a1fa1 fix(wrangler): Make jest inline snapshots work with prettier 3 (#5851)
  • 36cb22b fix(wrangler): Display correct global flags in wrangler pages --help (#5849)
  • 2869e03 fix(wrangler): Display correct global flags in wrangler pages --help (#5814)
  • 82415b5 Implement additional E2E tests for wrangler dev (--remote) (#4486)
  • baaebf6 chore: enforce curly braces for if, while, etc blocks (#5842)
  • 63f7acb fix(wrangler): Show feedback on Pages Function upload failure (#5819)
  • 9c469f6 Update pnpm etc (#5809)
  • 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
cloudflare-workers-and-pages[bot] commented 4 months ago

Deploying astrosite with  Cloudflare Pages  Cloudflare Pages

Latest commit: d344ef2
Status:🚫  Build failed.

View logs

codesandbox[bot] commented 4 months ago

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders
Open Preview

dependabot[bot] commented 4 months ago

Superseded by #378.