Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Oct 29, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@klnjs/eslint-config (source) 4.0.64.4.1 age adoption passing confidence devDependencies minor
@klnjs/prettier-config (source) 4.0.64.4.1 age adoption passing confidence devDependencies minor
@mswjs/http-middleware (source) 0.10.10.10.3 age adoption passing confidence devDependencies patch
@types/yargs (source) 17.0.3217.0.35 age adoption passing confidence devDependencies patch
@vanilla-extract/css (source) 1.15.31.18.0 age adoption passing confidence dependencies minor
@vanilla-extract/next-plugin (source) 2.4.22.4.17 age adoption passing confidence devDependencies patch
@vanilla-extract/sprinkles (source) 1.6.21.6.5 age adoption passing confidence dependencies patch
bun 1.1.271.3.6 age adoption passing confidence minor
chalk 5.3.05.6.2 age adoption passing confidence devDependencies minor
eslint (source) 9.13.09.39.2 age adoption passing confidence devDependencies minor
lottie-react (source) 2.4.02.4.1 age adoption passing confidence dependencies patch
msw (source) 2.4.92.12.7 age adoption passing confidence devDependencies minor
prettier (source) 3.3.33.8.0 age adoption passing confidence devDependencies minor
react-hook-form (source) 7.52.07.71.1 age adoption passing confidence dependencies minor
typescript (source) 5.6.35.9.3 age adoption passing confidence devDependencies minor
yup 1.4.01.7.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.18.0

Compare Source

Minor Changes
  • #​1566 8b49b35 Thanks @​lfantone! - style: Add support for @starting-style rules

    EXAMPLE USAGE:

    import { style } from '@​vanilla-extact/css';
    export const styleWithStartingStyle = style({
      backgroundColor: 'black',
      '@​starting-style': {
        backgroundColor: 'white'
      }
    });
Patch Changes
  • #​1646 0b2c09e Thanks @​plesiecki! - Swap the order of createVar's overloads to enable inference of VarDelcaration type

  • #​1666 c6047fb Thanks @​askoufis! - Remove custom container properties type

    The csstype package used by Vanilla Extract now provides types for container properties, so the custom type definitions that were previously necessary have been removed.

v1.17.5

Compare Source

Patch Changes

v1.17.4

Compare Source

Patch Changes

v1.17.3

Compare Source

Patch Changes

v1.17.2

Compare Source

Patch Changes

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

Compare Source

Patch Changes

v2.4.16

Compare Source

Patch Changes

v2.4.15

Compare Source

Patch Changes

v2.4.14

Compare Source

Patch Changes

v2.4.13

Compare Source

Patch Changes

v2.4.12

Compare Source

Patch Changes

v2.4.11

Compare Source

Patch Changes

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

Compare Source

Patch Changes

v1.6.4

Compare Source

Patch Changes

v1.6.3

Compare Source

Patch Changes
oven-sh/bun (bun)

v1.3.6

Compare Source

v1.3.5: Bun v1.3.5

Compare Source

To install Bun v1.3.5

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

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

v1.3.4: Bun v1.3.4

Compare Source

To install Bun v1.3.4

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

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

v1.3.3: Bun v1.3.3

Compare Source

To install Bun v1.3.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.3.3:

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

v1.3.2: Bun v1.3.2

Compare Source

To install Bun v1.3.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.3.2:

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

v1.3.1: Bun v1.3.1

Compare Source

To install Bun v1.3.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.3.1:

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

Special thanks to Martin Schwarzl of Cloudflare for fuzzing & reporting several bugs!!

v1.3.0: Bun v1.3

Compare Source

Read the blog post

Group 77

Windows:

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

To upgrade to Bun v1.3:

bun upgrade

v1.2.23: Bun v1.2.23

Compare Source

To install Bun v1.2.23

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

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

v1.2.22: Bun v1.2.22

Compare Source

To install Bun v1.2.22

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

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

v1.2.21: Bun v1.2.21

Compare Source

To install Bun v1.2.21

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

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

v1.2.20: Bun v1.2.20

Compare Source

To install Bun v1.2.20

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

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

v1.2.19: Bun v1.2.19

Compare Source

To install Bun v1.2.19

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

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

[v1.2.18](https://redirec


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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.

@vercel
Copy link

vercel bot commented Oct 29, 2024

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
checkout Ready Ready Preview, Comment Jan 16, 2026 0:12am

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.

1 participant