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 #330

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 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.41.0

Release notes

Sourced from openai's releases.

v4.41.0

4.41.0 (2024-05-05)

Full Changelog: v4.40.2...v4.41.0

Features

v4.40.2

4.40.2 (2024-05-03)

Full Changelog: v4.40.1...v4.40.2

Bug Fixes

  • package: revert recent client file change (#819) (fa722c9)
  • vectorStores: correct uploadAndPoll method (#817) (d63f22c)

v4.40.1

4.40.1 (2024-05-02)

Full Changelog: v4.40.0...v4.40.1

Chores

v4.40.0

4.40.0 (2024-05-01)

Full Changelog: v4.39.1...v4.40.0

Features

v4.39.1

4.39.1 (2024-04-30)

Full Changelog: v4.39.0...v4.39.1

Chores

v4.39.0

... (truncated)

Changelog

Sourced from openai's changelog.

4.41.0 (2024-05-05)

Full Changelog: v4.40.2...v4.41.0

Features

4.40.2 (2024-05-03)

Full Changelog: v4.40.1...v4.40.2

Bug Fixes

  • package: revert recent client file change (#819) (fa722c9)
  • vectorStores: correct uploadAndPoll method (#817) (d63f22c)

4.40.1 (2024-05-02)

Full Changelog: v4.40.0...v4.40.1

Chores

4.40.0 (2024-05-01)

Full Changelog: v4.39.1...v4.40.0

Features

4.39.1 (2024-04-30)

Full Changelog: v4.39.0...v4.39.1

Chores

4.39.0 (2024-04-29)

Full Changelog: v4.38.5...v4.39.0

Features

... (truncated)

Commits
  • 625426c Merge pull request #823 from openai/release-please--branches--master--changes...
  • b10242a release: 4.41.0
  • 92f9049 feat(client): add Azure client (#822)
  • 6c9cc82 release: 4.40.2
  • 01c40e7 fix(package): revert recent client file change (#819)
  • df516b7 fix(vectorStores): correct uploadAndPoll method (#817)
  • dfae409 Merge pull request #814 from openai/release-please--branches--master--changes...
  • ab08790 release: 4.40.1
  • d0b915a chore(internal): move client class to separate file (#815)
  • 81a6c28 chore(internal): bump prism version (#813)
  • 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.53.1

Release notes

Sourced from wrangler's releases.

wrangler@3.53.1

Patch Changes

  • #5091 6365c90 Thanks @​Cherry! - fix: better handle dashes and other invalid JS identifier characters in wrangler types generation for vars, bindings, etc.

    Previously, with the following in your wrangler.toml, an invalid types file would be generated:

    [vars]
    some-var = "foobar"
    

    Now, the generated types file will be valid:

    interface Env {
        "some-var": "foobar";
    }
    
  • #5748 27966a4 Thanks @​penalosa! - fix: Load sourcemaps relative to the entry directory, not cwd.

  • #5746 1dd9f7e Thanks @​petebacondarwin! - fix: suggest trying to update Wrangler if there is a newer one available after an unexpected error

  • #5226 f63e7a5 Thanks @​DaniFoldi! - fix: remove second Wrangler banner from wrangler dispatch-namespace rename

wrangler@3.53.0

Minor Changes

  • #5604 327a456 Thanks @​dario-piotrowicz! - feat: add support for environments in getPlatformProxy

    allow getPlatformProxy to target environments by allowing users to specify an environment option

    Example usage:

    const { env } = await getPlatformProxy({
        environment: "production",
    });
    

Patch Changes

wrangler@3.52.0

Minor Changes

... (truncated)

Changelog

Sourced from wrangler's changelog.

3.53.1

Patch Changes

  • #5091 6365c90 Thanks @​Cherry! - fix: better handle dashes and other invalid JS identifier characters in wrangler types generation for vars, bindings, etc.

    Previously, with the following in your wrangler.toml, an invalid types file would be generated:

    [vars]
    some-var = "foobar"
    

    Now, the generated types file will be valid:

    interface Env {
        "some-var": "foobar";
    }
    
  • #5748 27966a4 Thanks @​penalosa! - fix: Load sourcemaps relative to the entry directory, not cwd.

  • #5746 1dd9f7e Thanks @​petebacondarwin! - fix: suggest trying to update Wrangler if there is a newer one available after an unexpected error

  • #5226 f63e7a5 Thanks @​DaniFoldi! - fix: remove second Wrangler banner from wrangler dispatch-namespace rename

3.53.0

Minor Changes

  • #5604 327a456 Thanks @​dario-piotrowicz! - feat: add support for environments in getPlatformProxy

    allow getPlatformProxy to target environments by allowing users to specify an environment option

    Example usage:

    const { env } = await getPlatformProxy({
        environment: "production",
    });
    

Patch Changes

3.52.0

Minor Changes

... (truncated)

Commits
  • d1909ef Version Packages (#5739)
  • c7068b6 Improve sourcemap loading (#5744)
  • 1dd9f7e fix: suggest trying to update Wrangler if there is a newer one available afte...
  • 6365c90 fix(wrangler): prevent invalid JS identifiers in types generation (#5091)
  • f63e7a5 Remove second wrangler banner from namespace rename (#5226)
  • a90e376 Version Packages (#5717)
  • c4d034a Generate Cloudchamber client from latest OpenAPI specification (#5651)
  • 4097759 Add workers ai staging flag (#5705)
  • 327a456 [wrangler] feat: add support for environments in getPlatformProxy (#5604)
  • 649e763 cache + speedup windows e2e (#5654)
  • 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-pages[bot] commented 3 months ago

Deploying astrosite with  Cloudflare Pages  Cloudflare Pages

Latest commit: 015bbcb
Status:🚫  Build failed.

View logs

codesandbox[bot] commented 3 months ago

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders
Open Preview

dependabot[bot] commented 3 months ago

Superseded by #349.