Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # 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
@klnjs/eslint-config (source) 4.0.6 -> 4.4.1 age adoption passing confidence devDependencies minor
@klnjs/prettier-config (source) 4.0.6 -> 4.4.1 age adoption passing confidence devDependencies minor
@mswjs/http-middleware (source) 0.10.1 -> 0.10.3 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.1 age adoption passing confidence dependencies minor
@vanilla-extract/next-plugin (source) 2.4.2 -> 2.4.10 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.2.3 age adoption passing confidence minor
chalk 5.3.0 -> 5.4.1 age adoption passing confidence devDependencies minor
eslint (source) 9.13.0 -> 9.21.0 age adoption passing confidence devDependencies minor
express (source) 4.21.1 -> 4.21.2 age adoption passing confidence devDependencies patch
lottie-react (source) 2.4.0 -> 2.4.1 age adoption passing confidence dependencies patch
msw (source) 2.4.9 -> 2.7.1 age adoption passing confidence devDependencies minor
prettier (source) 3.3.3 -> 3.5.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.3 age adoption passing confidence devDependencies minor
yup 1.4.0 -> 1.6.1 age adoption passing confidence dependencies minor

Release Notes

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

v4.4.1

Compare Source

v4.4.0

Compare Source

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.4.1

Compare Source

v4.4.0

Compare Source

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.3

Compare Source

v0.10.3 (2025-01-12)

Bug Fixes

v0.10.2

Compare Source

v0.10.2 (2024-10-25)

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

v1.17.1

Compare Source

Patch Changes

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.10

Compare Source

Patch Changes

v2.4.9

Compare Source

Patch Changes

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.2.3: Bun v1.2.3

Compare Source

To install Bun v1.2.3

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.2.3:

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

v1.2.2: Bun v1.2.2

Compare Source

To install Bun v1.2.2

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.2.2:

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

v1.2.1: Bun v1.2.1

Compare Source

To install Bun v1.2.1

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.2.1:

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

v1.2.0: Bun 1.2

Compare Source

Read Bun 1.2's release notes on Bun's blog

Watch the video:

Bun 1.2

To install Bun:

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.2.0:

bun upgrade

v1.1.45: Bun v1.1.45

Compare Source

To install Bun v1.1.45

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.45:

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

v1.1.44: Bun v1.1.44

Compare Source

To install Bun v1.1.44

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.44:

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

v1.1.43: Bun v1.1.43

Compare Source

To install Bun v1.1.43

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.43:

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

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: Bun v1.1.41

Compare Source

To install Bun v1.1.41

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.41:

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

v1.1.40: Bun v1.1.40

Compare Source

To install Bun v1.1.40

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.40:

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

v1.1.39: Bun v1.1.39

Compare Source

To install Bun v1.1.39

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.39:

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

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 upg

</details>

---

### 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](https://github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/rnkln/checkout).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMzMuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

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 Feb 22, 2025 7:41am

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants