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

chore: update all dependencies #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

chore: update all dependencies #7

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 29, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@hookform/resolvers (source) 3.6.0 -> 3.9.1 age adoption passing confidence dependencies minor
@klnjs/eslint-config (source) 4.0.6 -> 4.3.0 age adoption passing confidence devDependencies minor
@klnjs/prettier-config (source) 4.0.6 -> 4.3.0 age adoption passing confidence devDependencies minor
@mswjs/http-middleware (source) 0.10.1 -> 0.10.2 age adoption passing confidence devDependencies patch
@types/yargs (source) 17.0.32 -> 17.0.33 age adoption passing confidence devDependencies patch
@vanilla-extract/css (source) 1.15.3 -> 1.17.0 age adoption passing confidence dependencies minor
@vanilla-extract/next-plugin (source) 2.4.2 -> 2.4.8 age adoption passing confidence devDependencies patch
@vanilla-extract/sprinkles (source) 1.6.2 -> 1.6.3 age adoption passing confidence dependencies patch
actions/checkout v4.1.7 -> v4.2.2 age adoption passing confidence action minor
bun 1.1.27 -> 1.1.42 age adoption passing confidence patch
chalk 5.3.0 -> 5.4.1 age adoption passing confidence devDependencies minor
eslint (source) 9.13.0 -> 9.17.0 age adoption passing confidence devDependencies minor
express (source) 4.21.1 -> 4.21.2 age adoption passing confidence devDependencies patch
msw (source) 2.4.9 -> 2.7.0 age adoption passing confidence devDependencies minor
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence devDependencies minor
react-hook-form (source) 7.52.0 -> 7.54.2 age adoption passing confidence dependencies minor
react-hotkeys-hook (source) 4.5.0 -> 4.6.1 age adoption passing confidence dependencies minor
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence devDependencies minor
yup 1.4.0 -> 1.6.1 age adoption passing confidence dependencies minor

Release Notes

react-hook-form/resolvers (@​hookform/resolvers)

v3.9.1

Compare Source

v3.9.0

Compare Source

Features
  • fluentvalidation-ts: add fluentvalidation-ts resolver (#​702) (5fc1e63)

v3.8.0

Compare Source

v3.7.0

Compare Source

Bug Fixes
  • zodResolver: cannot read properties of undefined (reading 'length') (a3e50c6)
Features
klnjs/configs (@​klnjs/eslint-config)

v4.3.0

Compare Source

v4.2.0

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

klnjs/configs (@​klnjs/prettier-config)

v4.3.0

Compare Source

v4.2.0

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

mswjs/http-middleware (@​mswjs/http-middleware)

v0.10.2

Compare Source

v0.10.2 (2024-10-25)

Bug Fixes
vanilla-extract-css/vanilla-extract (@​vanilla-extract/css)

v1.17.0

Compare Source

Minor Changes
  • #​1092 fd673f6 Thanks @​z4o4z! - keyframes: Add support for a vars property to steps within keyframes declarations

    Example usage:

    import {
      createVar,
      keyframes
    } from '@​vanilla-extract/css';
    
    const angle = createVar({
      syntax: '<angle>',
      inherits: false,
      initialValue: '0deg'
    });
    
    export const angleKeyframes = keyframes({
      '0%': {
        vars: {
          [angle]: '0deg'
        }
      },
      '100%': {
        vars: {
          [angle]: '360deg'
        }
      }
    });
  • #​1512 4abfc0b Thanks @​askoufis! - createTheme, createGlobalTheme: Add support for assigning themes to a layer

    Themes can now be assigned to a layer by name using the @layer key at the top-level of the theme definition.

    EXAMPLE USAGE:

    // themes.css.ts
    import {
      createTheme,
      createGlobalTheme,
      layer
    } from '@&#8203;vanilla-extract/css';
    
    export const themeLayer = layer();
    
    export const [themeA, vars] = createTheme({
      '@&#8203;layer': themeLayer,
      color: {
        brand: 'blue'
      },
      font: {
        body: 'arial'
      }
    });
    
    export const vars2 = createGlobalTheme(':root', {
      '@&#8203;layer': themeLayer,
      space: {
        small: '10px',
        large: '20px'
      }
    });

    This will generate the following CSS:

    @&#8203;layer themes_themeLayer__1k6oxph0;
    @&#8203;layer themes_themeLayer__1k6oxph0 {
      .themes_themeA__1k6oxph1 {
        --color-brand__1k6oxph2: blue;
        --font-body__1k6oxph3: arial;
      }
    
      :root {
        --space-small__z05zdf1: 10px;
        --space-large__z05zdf2: 20px;
      }
    }
  • #​1092 fd673f6 Thanks @​z4o4z! - createVar: Add support for defining [@property][@​property] rules

    Example usage:

    import { createVar } from '@&#8203;vanilla-extract/css';
    
    export const myVar = createVar({
      syntax: '<number>',
      inherits: false,
      initialValue: '0.5'
    });

    This will generate the following CSS:

    @&#8203;property --myVar__jteyb14 {
      syntax: '<number>';
      inherits: false;
      initial-value: 0.5;
    }

v1.16.1

Compare Source

Patch Changes
  • #​1505 103ce57 Thanks @​askoufis! - Fixes a bug that caused invalid selectors to be generated when adjacent classnames contained a substring equal to another local classname

v1.16.0

Compare Source

Minor Changes
  • #​1475 cd9d8b2 Thanks @​corradopetrelli! - Add ::-webkit-calendar-picker-indicator as a valid pseudo-element

  • #​1450 7b256d2 Thanks @​wuz! - Add createViewTransition API

    createViewTransition creates a single scoped view transition name for use with CSS View Transitions. This avoids potential naming collisions with other view transitions.

    import {
      style,
      createViewTransition
    } from '@&#8203;vanilla-extract/css';
    
    export const titleViewTransition = createViewTransition();
    
    export const pageTitle = style({
      viewTransitionName: titleViewTransition
    });

v1.15.5

Compare Source

Patch Changes

v1.15.4

Compare Source

Patch Changes
vanilla-extract-css/vanilla-extract (@​vanilla-extract/next-plugin)

v2.4.8

Compare Source

Patch Changes

v2.4.7

Compare Source

Patch Changes

v2.4.6

Compare Source

Patch Changes

v2.4.5

Compare Source

Patch Changes

v2.4.4

Compare Source

Patch Changes

v2.4.3

Compare Source

Patch Changes
vanilla-extract-css/vanilla-extract (@​vanilla-extract/sprinkles)

v1.6.3

Compare Source

Patch Changes
actions/checkout (actions/checkout)

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

oven-sh/bun (bun)

v1.1.42: Bun v1.1.42

Compare Source

To install Bun v1.1.42

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.42:

bun upgrade
Read Bun v1.1.42's release notes on Bun's blog

v1.1.41

Compare Source

v1.1.40

Compare Source

v1.1.39

Compare Source

v1.1.38: Bun v1.1.38

Compare Source

To install Bun v1.1.38

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.38:

bun upgrade
Read Bun v1.1.38's release notes on Bun's blog
Thanks to 11 contributors!

v1.1.37: Bun v1.1.37

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.37:

bun upgrade
Read Bun v1.1.37's release notes on Bun's blog
Thanks to 14 contributors!

v1.1.36: Bun v1.1.36

Compare Source

Bun v1.1.36 addresses a release process issue in Bun v1.1.35 that caused the Bun v1.1.35 binary to be published as a canary release instead of a stable release.

To install:

curl -fsSL https://bun.sh/install | bash

##### or you can use npm
##### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.35:

bun upgrade
Read Bun v1.1.35's release notes on Bun's blog

v1.1.35: Bun v.1.1.35

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

##### or you can use npm
##### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.35:

bun upgrade
Read Bun v1.1.35's release notes on Bun's blog
Thanks to 16 contributors!

v1.1.34: Bun v1.1.34

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.34:

bun upgrade
Read Bun v1.1.34's release notes on Bun's blog
Thanks to 14 contributors!

v1.1.33: Bun v1.1.33

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.33:

bun upgrade
Read Bun v1.1.33's release notes on Bun's blog
Thanks to 10 contributors!

v1.1.32: Bun v1.1.32

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.32:

bun upgrade
Read Bun v1.1.32's release notes on Bun's blog
Thanks to 5 contributors!

v1.1.31: Bun v1.1.31

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.31:

bun upgrade
Read Bun v1.1.31's release notes on Bun's blog
Thanks to 19 contributors!

v1.1.30: Bun v1.1.30

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.30:

bun upgrade
Read Bun v1.1.30's release notes on Bun's blog
Thanks to 17 contributors!

v1.1.29: Bun v1.1.29

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.29:

bun upgrade
Read Bun v1.1.29's release notes on Bun's blog
Thanks to 3 contributors!

v1.1.28: Bun v1.1.28

Compare Source

To install:

curl -fsSL https://bun.sh/install | bash

### or you can use npm
### npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.1.28:

bun upgrade
Read Bun v1.1.28's release notes on Bun's blog
Thanks to 12 contributors!
chalk/chalk (chalk)

v5.4.1

Compare Source

v5.4.0

Compare Source

  • Update CIRCLECI environments to return level 3 color support f838120
eslint/eslint (eslint)

v9.17.0

Compare Source

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

v9.14.0

Compare Source

expressjs/express (express)

v4.21.2

Compare Source

mswjs/msw (msw)

v2.7.0

Compare Source

v2.7.0 (2024-12-17)
Features

v2.6.9

Compare Source

v2.6.9 (2024-12-16)

Bug Fixes

v2.6.8

Compare Source

v2.6.8 (2024-12-07)

Bug Fixes

v2.6.7

Compare Source

v2.6.7 (2024-12-06)

Bug Fixes

v2.6.6

Compare Source

v2.6.6 (2024-11-22)

Bug Fixes

v2.6.5

Compare Source

v2.6.5 (2024-11-16)

Bug Fixes

v2.6.4

[Compare Source](https://redirect.github.com/mswjs/msw/compare/v


Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Oct 29, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
checkout ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 21, 2024 5:32pm

@renovate renovate bot changed the title ⬆️ Renovate - Update all dependencies chore: update all dependencies Dec 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants