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

fix(deps): update all non-major dependencies #1512

Merged
merged 1 commit into from
Jan 6, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/vscode (source) ^1.95.0 -> ^1.96.0 age adoption passing confidence devDependencies minor
@vanilla-extract/css (source) ^1.16.0 -> ^1.17.0 age adoption passing confidence devDependencies minor
chromatic (source) ^11.19.0 -> ^11.22.0 age adoption passing confidence devDependencies minor
framer-motion 11.12.0 -> 11.15.0 age adoption passing confidence dependencies minor
html-react-parser 5.1.1 -> 5.2.2 age adoption passing confidence devDependencies minor
isomorphic-dompurify ^2.18.0 -> ^2.19.0 age adoption passing confidence dependencies minor
lint-staged ^15.2.0 -> ^15.3.0 age adoption passing confidence devDependencies minor
node (source) 22.11.0 -> 22.12.0 age adoption passing confidence minor
pnpm (source) 9.14.2 -> 9.15.3 age adoption passing confidence packageManager minor
style-dictionary ^4.2.0 -> ^4.3.0 age adoption passing confidence devDependencies minor
vscode ^1.95.0 -> ^1.96.2 age adoption passing confidence engines minor

Release Notes

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
chromaui/chromatic-cli (chromatic)

v11.22.0

Compare Source

🚀 Enhancement
Authors: 1

v11.21.0

Compare Source

🚀 Enhancement
Authors: 2

v11.20.2

Compare Source

🐛 Bug Fix
Authors: 1

v11.20.1

Compare Source

🐛 Bug Fix
Authors: 1

v11.20.0

Compare Source

🚀 Enhancement
Authors: 1

motiondivision/motion (framer-motion)

v11.15.0

Compare Source

Added
  • Add support for repeat in animation sequences.
Fixed
  • Clearing scheduled jobs at the end of an animation frame to ensure memory is released should the animation loop settle.

v11.14.4

Compare Source

Fixed
  • Exporting AnimationSequence via "motion" entrypoint.
  • Adding support for passing normal components to motion.create() in React 19.

v11.14.3

Compare Source

Fixed
  • Fixing motion-dom and motion-utils entrypoints.

v11.14.2

Compare Source

Fixed
  • Exporting time for internal use.
  • Making MotionValue.updatedAt public for internal use.

v11.14.1

Compare Source

Fixed
  • Fixing missing license in motion-dom and motion-utils packages.

v11.14.0

Compare Source

Added
  • Added press gesture in Motion+ early access.

v11.13.5

Compare Source

Fixed
  • Adding React 19 to optional peer dependencies in "framer-motion" packages.

v11.13.4

Compare Source

Fixed
  • Fixing types for React 19.

v11.13.3

Compare Source

Fixed
  • Attempting to update types to be compatible with both React 18 and 19.

v11.13.1

Compare Source

Fixed
  • SVG elements (like motion.text) now update when given a MotionValue as children, matching HTML element behavior.
  • Exporting DynamicAnimationOptions type.

v11.13.0

Compare Source

Added
  • Vanilla hover gesture in Motion+ early access.
remarkablemark/html-react-parser (html-react-parser)

v5.2.2

Compare Source

Build System

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features

v5.1.19

Compare Source

Bug Fixes

v5.1.18

Compare Source

Bug Fixes

v5.1.17

Compare Source

Build System

v5.1.16

Compare Source

Build System

v5.1.15

Compare Source

Build System

v5.1.14

Compare Source

Build System

v5.1.13

Compare Source

Continuous Integration
  • github: publish package to npm registry with provenance (e098038)

v5.1.12

Compare Source

Build System

v5.1.11

Compare Source

Bug Fixes

v5.1.10

Compare Source

Build System

v5.1.9

Compare Source

Build System

v5.1.8

Compare Source

Build System

v5.1.7

Compare Source

Bug Fixes
  • package: set dependency @types/react to 17 or 18 (0605477), closes #​1320

v5.1.6

Compare Source

Bug Fixes

v5.1.5

Compare Source

Bug Fixes
  • esm: fix attributes-to-props and dom-to-react exported types (e3c7931)
  • package: move @types/react from devDependencies to dependencies (78b7a8e), closes #​1313

v5.1.4

Compare Source

Bug Fixes
  • esm: fix exported types (7a94d61), closes #​1305
  • types: use React.JSX instead of the global JSX namespace (a25f41c)

v5.1.3

Compare Source

Build System

v5.1.2

Compare Source

Code Refactoring
  • improved dom-to-react, type (6630d01)
kkomelin/isomorphic-dompurify (isomorphic-dompurify)

v2.19.0: Updated dependencies

Compare Source

Changelog
  • Updated dompurify and other dependencies.

See the complete changelog for more details.

Release

2.19.0

lint-staged/lint-staged (lint-staged)

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

nodejs/node (node)

v22.12.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.3

Compare Source

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1

Compare Source

v9.15.0

Compare Source

v9.14.4

Compare Source

v9.14.3

Compare Source

amzn/style-dictionary (style-dictionary)

v4.3.0

Compare Source

Minor Changes
  • 302b466: Introduce a new entrypoint: style-dictionary/enums for most of the library's hard-coded string values. Most of these are built-in hooks names. This provides better type-safety for consumers as well as various maintainability related benefits for this library. See documentation for more info.
  • 5aad797: Add tailwind preset example, remove unused .editorconfig file
  • bd8be17: Add support for native .TS token & config file processing.
  • 209085d: Add tokenMap properties to Dictionary, which is a JavaScript Map structure of the tokens, which makes it easy to iterate as well as access tokens. Also add convertTokenData utility that allows to seemlessly convert between Map, Object or Array of tokens, and deprecate the flattenTokens utility in favor of that one.
Patch Changes
  • 2966cfd: handle DTCG-format tokens in typescript/es6-declarations formatter
  • 4a7bca7: add accessControl field to Android Compose template
  • f694f67: Fix Prettier imports, see https://prettier.io/docs/en/api#custom-parser-api-removed for more info.
  • fd8cdb4: handle DTCG-format tokens in javascript/es6 formatter
  • 6a6a409: Move prettier to dependencies since style-dictionary isn't really a prettier plugin and a direct dependency seems more accurate here.
  • 8a9cfa0: Fix outputReferencesTransformed util, would return true for tokens which original values were not strings.
  • 7a661bb: Fix font-style and font-weight logic for fonts.css.template.js
microsoft/vscode (vscode)

v1.96.2: November 2024 Recovery 2

Compare Source

The update addresses these issues.

For the complete release notes go to Updates on code.visualstudio.com.

v1.96.1: November 2024 Recovery 1

Compare Source

The update addresses these issues.

For the complete release notes go to Updates on code.visualstudio.com.

v1.96.0: November 2024

Compare Source

Welcome to the November 2024 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:

For the complete release notes go to Updates on code.visualstudio.com.

Insiders: Want to see new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available. And for the latest Visual Studio Code news, updates, and content, follow us on Twitter @​code!

v1.95.3: October 2024 Recovery 3

Compare Source

The update addresses these issues.

For the complete release notes go to Updates on code.visualstudio.com.

v1.95.2: October 2024 Recovery 2

Compare Source

The update addresses these issues.

For the complete release notes go to Updates on code.visualstudio.com.

v1.95.1: October 2024 Recovery 1

Compare Source

The update addresses these issues.

For the complete release notes go to Updates on code.visualstudio.com.


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.

@renovate renovate bot requested a review from a team as a code owner January 1, 2025 02:18
Copy link

changeset-bot bot commented Jan 1, 2025

⚠️ No Changeset found

Latest commit: d2a8fd4

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Jan 1, 2025

Size Change: +1.46 kB (+0.27%)

Total Size: 539 kB

Filename Size Change
apps/vscode/dist/server.js 246 kB +1.46 kB (+0.6%)
ℹ️ View Unchanged
Filename Size
apps/vscode/dist/client.js 111 kB
packages/alert/dist/index.es.js 1.32 kB
packages/alert/dist/index.js 1.39 kB
packages/alert/dist/style.css 897 B
packages/avatar/dist/index.es.js 1.16 kB
packages/avatar/dist/index.js 1.23 kB
packages/avatar/dist/style.css 411 B
packages/banner/dist/index.es.js 624 B
packages/banner/dist/index.js 695 B
packages/banner/dist/style.css 474 B
packages/box/dist/index.es.js 6.85 kB
packages/box/dist/index.js 6.97 kB
packages/box/dist/style.css 2.65 kB
packages/button/dist/index.es.js 1.87 kB
packages/button/dist/index.js 1.94 kB
packages/button/dist/style.css 3 kB
packages/card/dist/index.es.js 688 B
packages/card/dist/index.js 754 B
packages/card/dist/style.css 666 B
packages/chip/dist/index.es.js 674 B
packages/chip/dist/index.js 745 B
packages/chip/dist/style.css 532 B
packages/clipboard/dist/index.es.js 1.49 kB
packages/clipboard/dist/index.js 1.57 kB
packages/clipboard/dist/style.css 802 B
packages/collapsible/dist/index.es.js 856 B
packages/collapsible/dist/index.js 926 B
packages/collapsible/dist/style.css 81 B
packages/columns/dist/index.es.js 579 B
packages/columns/dist/index.js 651 B
packages/columns/dist/style.css 281 B
packages/components/dist/index.es.js 12.8 kB
packages/components/dist/index.js 12.9 kB
packages/components/dist/style.css 7.32 kB
packages/core/dist/index.es.js 961 B
packages/core/dist/index.js 1.29 kB
packages/counter/dist/index.es.js 330 B
packages/counter/dist/index.js 397 B
packages/counter/dist/style.css 248 B
packages/drawer/dist/index.es.js 1.7 kB
packages/drawer/dist/index.js 2.25 kB
packages/drawer/dist/style.css 490 B
packages/dropdown/dist/index.es.js 1.19 kB
packages/dropdown/dist/index.js 1.25 kB
packages/filter/dist/index.es.js 2.26 kB
packages/filter/dist/index.js 2.33 kB
packages/filter/dist/style.css 907 B
packages/focus-trap/dist/index.es.js 267 B
packages/focus-trap/dist/index.js 333 B
packages/form/dist/index.es.js 4.13 kB
packages/form/dist/index.js 4.24 kB
packages/form/dist/style.css 2.23 kB
packages/icons/dist/index.es.js 1.27 kB
packages/icons/dist/index.js 1.35 kB
packages/icons/dist/style.css 554 B
packages/inline-edit/dist/index.es.js 1.57 kB
packages/inline-edit/dist/index.js 1.65 kB
packages/inline-edit/dist/style.css 329 B
packages/inline/dist/index.es.js 572 B
packages/inline/dist/index.js 643 B
packages/inline/dist/style.css 243 B
packages/markdown/dist/index.es.js 967 B
packages/markdown/dist/index.js 1.04 kB
packages/markdown/dist/style.css 217 B
packages/menu/dist/index.es.js 3.82 kB
packages/menu/dist/index.js 3.9 kB
packages/menu/dist/style.css 861 B
packages/modal/dist/index.es.js 2.97 kB
packages/modal/dist/index.js 3.54 kB
packages/modal/dist/style.css 892 B
packages/navigation/dist/index.es.js 2.73 kB
packages/navigation/dist/index.js 2.8 kB
packages/navigation/dist/style.css 866 B
packages/overlay/dist/index.es.js 1.03 kB
packages/overlay/dist/index.js 1.09 kB
packages/pagination/dist/index.es.js 1.15 kB
packages/pagination/dist/index.js 1.23 kB
packages/pagination/dist/style.css 300 B
packages/popover/dist/index.es.js 3.12 kB
packages/popover/dist/index.js 3.62 kB
packages/popover/dist/style.css 517 B
packages/portal/dist/index.es.js 398 B
packages/portal/dist/index.js 457 B
packages/progress-bubbles/dist/index.es.js 1.74 kB
packages/progress-bubbles/dist/index.js 1.81 kB
packages/progress-bubbles/dist/style.css 813 B
packages/progress/dist/index.es.js 1.07 kB
packages/progress/dist/index.js 1.14 kB
packages/progress/dist/style.css 267 B
packages/stack/dist/index.es.js 464 B
packages/stack/dist/index.js 535 B
packages/stack/dist/style.css 181 B
packages/tab-list/dist/index.es.js 728 B
packages/tab-list/dist/index.js 801 B
packages/tab-list/dist/style.css 410 B
packages/table/dist/index.es.js 931 B
packages/table/dist/index.js 1.01 kB
packages/table/dist/style.css 689 B
packages/tag/dist/index.es.js 2.86 kB
packages/tag/dist/index.js 2.94 kB
packages/tag/dist/style.css 743 B
packages/tokens/dist/fonts.css 183 B
packages/tokens/dist/index.css 2.35 kB
packages/tokens/dist/index.es.js 2.73 kB
packages/tokens/dist/index.js 2.73 kB
packages/tokens/dist/media-queries.css 114 B
packages/tokens/dist/themes.css 1.12 kB
packages/tooltip/dist/index.es.js 506 B
packages/tooltip/dist/index.js 581 B
packages/tooltip/dist/style.css 326 B
packages/vars/dist/index.es.js 2.37 kB
packages/vars/dist/index.js 2.44 kB

compressed-size-action

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bea8e26 to 16ebe65 Compare January 3, 2025 20:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16ebe65 to d2a8fd4 Compare January 6, 2025 00:23
@Niznikr Niznikr added the skip changeset To indicate a pull request does not need a changeset label Jan 6, 2025
@Niznikr Niznikr merged commit b2f1e9e into main Jan 6, 2025
17 of 19 checks passed
@Niznikr Niznikr deleted the renovate/all-minor-patch branch January 6, 2025 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip changeset To indicate a pull request does not need a changeset
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant