Alan-Gomes / blog

MIT License
2 stars 0 forks source link

build(deps): bump the production-dependencies group across 1 directory with 15 updates #63

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the production-dependencies group with 15 updates in the / directory:

Package From To
@astrojs/check 0.7.0 0.9.1
@astrojs/mdx 3.1.0 3.1.3
@astrojs/react 3.5.0 3.6.1
@astrojs/rss 4.0.6 4.0.7
@astrojs/sitemap 3.1.5 3.1.6
@expressive-code/plugin-collapsible-sections 0.35.3 0.35.4
@expressive-code/plugin-line-numbers 0.35.3 0.35.4
@iconify-json/lucide 1.1.192 1.1.204
@playform/compress 0.0.13 0.1.1
astro 4.10.2 4.13.0
astro-critters 2.1.10 2.2.0
astro-expressive-code 0.35.3 0.35.4
monaco-editor 0.49.0 0.50.0
satori 0.10.13 0.10.14
tailwindcss 3.4.4 3.4.7

Updates @astrojs/check from 0.7.0 to 0.9.1

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

@​astrojs/check@​0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0

@​astrojs/check@​0.8.3

Patch Changes

  • 0a46801: Fixes a regression where errors could wrongly show (or not show) inside scripts and style tags
  • Updated dependencies [0a46801]
  • Updated dependencies [72f61e1]
    • @​astrojs/language-server@​2.12.7

@​astrojs/check@​0.8.2

Patch Changes

  • 708167e: Fixes script and style tags being wrongfully included in the generated TSX
  • Updated dependencies [708167e]
    • @​astrojs/language-server@​2.12.1

@​astrojs/check@​0.8.1

Patch Changes

  • 5eb20f2: Fixes installation on Yarn 4
  • Updated dependencies [5eb20f2]
    • @​astrojs/language-server@​2.11.1

@​astrojs/check@​0.8.0

Minor Changes

  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.

Patch Changes

  • a1769da: Adds a README with helpful links
  • Updated dependencies [b8a6af3]
    • @​astrojs/language-server@​2.11.0
Changelog

Sourced from @​astrojs/check's changelog.

0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0

0.8.3

Patch Changes

  • 0a46801: Fixes a regression where errors could wrongly show (or not show) inside scripts and style tags
  • Updated dependencies [0a46801]
  • Updated dependencies [72f61e1]
    • @​astrojs/language-server@​2.12.7

0.8.2

Patch Changes

  • 708167e: Fixes script and style tags being wrongfully included in the generated TSX
  • Updated dependencies [708167e]
    • @​astrojs/language-server@​2.12.1

0.8.1

Patch Changes

  • 5eb20f2: Fixes installation on Yarn 4
  • Updated dependencies [5eb20f2]
    • @​astrojs/language-server@​2.11.1

0.8.0

Minor Changes

  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.

... (truncated)

Commits


Updates @astrojs/mdx from 3.1.0 to 3.1.3

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.3

Patch Changes

  • Updated dependencies [49b5145]:
    • @​astrojs/markdown-remark@​5.2.0

@​astrojs/mdx@​3.1.2

Patch Changes

  • Updated dependencies [b6afe6a]:
    • @​astrojs/markdown-remark@​5.1.1

@​astrojs/mdx@​3.1.1

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

3.1.3

Patch Changes

  • Updated dependencies [49b5145]:
    • @​astrojs/markdown-remark@​5.2.0

3.1.2

Patch Changes

  • Updated dependencies [b6afe6a]:
    • @​astrojs/markdown-remark@​5.1.1

3.1.1

Patch Changes

Commits


Updates @astrojs/react from 3.5.0 to 3.6.1

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​3.6.1

Patch Changes

  • #11571 1c3265a Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.

    import { actions } from 'astro:actions';
    

    // Before const { data, error } = await actions.like.safe(); // After const { data, error } = await actions.like();

    // Before const newLikes = await actions.like(); // After const newLikes = await actions.like.orThrow();

    Migration

    To migrate your existing action calls:

    • Remove .safe from existing safe action calls
    • Add .orThrow to existing unsafe action calls
  • #11570 84189b6 Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Updates the Astro Actions fallback to support action={actions.name} instead of using getActionProps(). This will submit a form to the server in zero-JS scenarios using a search parameter:

    ---
    import { actions } from 'astro:actions';
    ---
    

    <form action={actions.logOut}> <!--output: action="?_astroAction=logOut"--> <button>Log Out</button> </form>

    You may also construct form action URLs using string concatenation, or by using the URL() constructor, with the an action's .queryString property:

    ---
    import { actions } from 'astro:actions';
    

    const confirmationUrl = new URL('/confirmation', Astro.url);

... (truncated)

Changelog

Sourced from @​astrojs/react's changelog.

3.6.1

Patch Changes

  • #11571 1c3265a Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.

    import { actions } from 'astro:actions';
    

    // Before const { data, error } = await actions.like.safe(); // After const { data, error } = await actions.like();

    // Before const newLikes = await actions.like(); // After const newLikes = await actions.like.orThrow();

    Migration

    To migrate your existing action calls:

    • Remove .safe from existing safe action calls
    • Add .orThrow to existing unsafe action calls
  • #11570 84189b6 Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Updates the Astro Actions fallback to support action={actions.name} instead of using getActionProps(). This will submit a form to the server in zero-JS scenarios using a search parameter:

    ---
    import { actions } from 'astro:actions';
    ---
    

    <form action={actions.logOut}> <!--output: action="?_astroAction=logOut"--> <button>Log Out</button> </form>

    You may also construct form action URLs using string concatenation, or by using the URL() constructor, with the an action's .queryString property:

    ---
    import { actions } from 'astro:actions';
    

... (truncated)

Commits


Updates @astrojs/rss from 4.0.6 to 4.0.7

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.7

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.7

Patch Changes

Commits


Updates @astrojs/sitemap from 3.1.5 to 3.1.6

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.1.6

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.1.6

Patch Changes

Commits


Updates @expressive-code/plugin-collapsible-sections from 0.35.3 to 0.35.4

Release notes

Sourced from @​expressive-code/plugin-collapsible-sections's releases.

@​expressive-code/plugin-collapsible-sections@​0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Changelog

Sourced from @​expressive-code/plugin-collapsible-sections's changelog.

0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Commits


Updates @expressive-code/plugin-line-numbers from 0.35.3 to 0.35.4

Release notes

Sourced from @​expressive-code/plugin-line-numbers's releases.

@​expressive-code/plugin-line-numbers@​0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Changelog

Sourced from @​expressive-code/plugin-line-numbers's changelog.

0.35.4

Patch Changes

  • Updated dependencies [876d24c]
    • @​expressive-code/core@​0.35.4
Commits


Updates @iconify-json/lucide from 1.1.192 to 1.1.204

Commits
  • b378181 Update HeroIcons Outline, HeroIcons Solid
  • d59357a Update Carbon, Material Design Icons
  • 1b5091a Update HeroIcons Outline, HeroIcons Solid, Google Material Icons, Material De...
  • 7e9cf22 Update Material Design Icons, Tabler Icons
  • e23ae58 Update Material Design Icons, OpenMoji, Simple Icons
  • 9a765b9 Update Material Design Icons
  • 8c98f55 Update Carbon, Material Design Icons
  • d0d7ab6 Update Codicons, Octicons
  • c141407 Update Material Design Icons, OpenMoji
  • c31a1e1 Update Material Design Icons, Simple Icons
  • Additional commits viewable in compare view


Updates @playform/compress from 0.0.13 to 0.1.1

Release notes

Sourced from @​playform/compress's releases.

Compress/v0.1.1

Full Changelog: https://github.com/PlayForm/Compress/compare/Compress/v0.1.0...Compress/v0.1.1

Compress/v0.1.0

What's Changed

Full Changelog: https://github.com/PlayForm/Compress/compare/Compress/v0.0.13...Compress/v0.1.0

Changelog

Sourced from @​playform/compress's changelog.

0.1.1

Changed

  • Updated .npmignore file:
    • Reordered ignored directories and files
    • Added 'Summary.md' to ignored files

Fixed

  • Improved code formatting in Source/Function/Image/Writesharp.ts:
    • Simplified import statement for default sharp options

0.1.0

Added

  • Significant project restructuring with separate directories for Source, Interface, Type, and Variable
  • New modules and interfaces for CSS, HTML, Image, JavaScript, and SVG file types
  • Utility functions: Directory and Merge
  • Expanded support for additional image formats and optimization options
  • Enhanced error handling and logging
  • New "Run" script for building and watching 'Source/*/.ts' files
  • Added svgo v4.0.0-rc.0 dependency
  • Added terser v5.31.3 dependency

Changed

  • Major refactoring of the integration functionality in Source/Function/Integration.ts
  • Moved configuration options to separate files in the Variable directory
  • Updated and expanded type definitions throughout the project
  • Modularized and improved compression logic for different file types
  • Overall code structure is now more modular and type-safe

Dependency Updates

  • Added svgo v4.0.0-rc.0
  • Changed astro dependency to use any version (*)
  • Updated @​playform/build to v0.1.2
  • Updated @​playform/pipe to v0.1.0
  • Updated lightningcss to v1.25.1
  • Updated sharp to v0.33.4
  • Updated terser to v5.31.3

Removed

  • Removed specific version for astro dependency
Commits


Updates astro from 4.10.2 to 4.13.0

Release notes

Sourced from astro's releases.

astro@4.13.0

Minor Changes

  • #11507 a62345f Thanks @​ematipico! - Adds color-coding to the console output during the build to highlight slow pages.

    Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.

  • #11379 e5e2d3e Thanks @​alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.

    If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.

    This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:

    {
      "$schema": "../../../.astro/collections/authors.schema.json",
      "name": "Armand",
      "skills": ["Astro", "Starlight"]
    }
    

    Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:

    {
      "json.schemas": [
        {
          "fileMatch": ["/src/content/authors/**"],
          "url": "./.astro/collections/authors.schema.json"
        }
      ]
    }
    

    If you were previously using this feature, please remove the experimental flag from your Astro config:

    import { defineConfig } from 'astro'
    

    export default defineConfig({

    • experimental: {
    • contentCollectionJsonSchema: true
    • } })

If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so.

Please see the content collections guide for more about this feature.

... (truncated)

Changelog

Sourced from astro's changelog.

4.13.0

Minor Changes

  • #11507 a62345f Thanks @​ematipico! - Adds color-coding to the console output during the build to highlight slow pages.

    Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.

  • #11379 e5e2d3e Thanks @​alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.

    If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.

    This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:

    {
      "$schema": "../../../.astro/collections/authors.schema.json",
      "name": "Armand",
      "skills": ["Astro", "Starlight"]
    }
    

    Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:

    {
      "json.schemas": [
        {
          "fileMatch": ["/src/content/authors/**"],
          "url": "./.astro/collections/authors.schema.json"
        }
      ]
    }
    

    If you were previously using this feature, please remove the experimental flag from your Astro config:

    import { defineConfig } from 'astro'
    

    export default defineConfig({

    • experimental: {
    • contentCollectionJsonSchema: true
    • } })

If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so.

Please see the content collections guide for more about this feature.

... (truncated)

Commits


Updates astro-critters from 2.1.10 to 2.2.0

Release notes

Sourced from astro-critters's releases.

AstroCritters/v2.2.0

Full Changelog: https://github.com/PlayForm/Inline/compare/Inline/v0.1.0...AstroCritters/v2.2.0

Changelog

Sourced from astro-critters's changelog.

2.2.0

  • Cleanup
Commits


Updates astro-expressive-code from 0.35.3 to 0.35.4

Release notes

Sourced from astro-expressive-code's releases.

astro-expressive-code@0.35.4

Patch Changes

  • 876d24c: Improves performance of client script managing tabindex on code samples. Thanks @​delucis!
  • Updated dependencies [876d24c]
    • rehype-expressive-code@0.35.4
Changelog

Sourced from astro-expressive-code's changelog.

0.35.4

Patch Changes

  • 876d24c: Improves performance of client script managing tabindex on code samples. Thanks @​delucis!
  • Updated dependencies [876d24c]
    • rehype-expressive-code@0.35.4
Commits


Updates monaco-editor from 0.49.0 to 0.50.0

Release notes

Sourced from monaco-editor's releases.

v0.50.0

Changes:

  • #4572: Prepare monaco-editor for release
  • #4570: Bump ws from 8.4.2 to 8.17.1
  • #4447: Bump express from 4.18.1 to 4.19.2 in /website
  • #4446: Bump express from 4.18.1 to 4.19.2 in /samples
  • #4565: Bump braces from 3.0.2 to 3.0.3 in /samples
  • #4564: Bump braces from 3.0.2 to 3.0.3
  • #4482: Call clearFiles on internal EmitOutput diagnostics, pass args down
  • #4504: Add extension to csp.contribution.ts
  • #4525: Update version
  • #4528: chore: exclude all vscode from CG
  • #4401: Adding Python f-string syntax support
  • #4305: Update TypeScript to TS 5.4.5 in all projects, vendored files

This list of changes was auto generated.

v0.50.0-rc

Changes:

  • #4570: Bump ws from 8.4.2 to 8.17.1

This list of changes was auto generated.

v0.50.0-dev-20240620

No release notes provided.

v0.50.0-dev-20240619

No release notes provided.

v0.50.0-dev-20240618

Changes:

  • #4447: Bump express from 4.18.1 to 4.19.2 in /website
  • #4446: Bump express from 4.18.1 to 4.19.2 in /samples
  • #4565: Bump braces from 3.0.2 to 3.0.3 in /samples
  • #4564: Bump braces from 3.0.2 to 3.0.3

This list of changes was auto generated.

v0.50.0-dev-20240617

... (truncated)

Changelog

Sourced from monaco-editor's changelog.

[0.50.0]

  • New field IEditorMinimapOptions.sectionHeaderLetterSpacing
  • New field IOverlayWidgetPosition.stackOridinal
  • New field EmitOutput.diagnostics
  • New event IOverlayWidget.onDidLayout
  • New events ICodeEditor.onBeginUpdate and ICodeEditor.onEndUpdate
  • HoverVerbosityRequest.action -> HoverVerbosityRequest.verbosityDelta
  • MultiDocumentHighlightProvider.selector changed from LanguageFilter to LanguageSelector
  • New optional parameters in getEmitOutput: emitOnlyDtsFiles and forceDtsEmit

Contributions to monaco-editor:

Commits
  • c321d0f Merge pull request #4572 from microsoft/satisfactory-beetle
  • 29a4a3a updating the version in the package.json file
  • ada2b3d Merge pull request #4570 from microsoft/dependabot/npm_and_yarn/ws-8.17.1
  • 8a98f87 Bump ws from 8.4.2 to 8.17.1
  • d15d6ba Bump express from 4.18.1 to 4.19.2 in /website (#4447)
  • 654fd3d Bump express from 4.18.1 to 4.19.2 in /samples (#4446)
  • 1eed447 Bump braces from 3.0.2 to 3.0.3 in /samples (#4565)
  • f883fe9 Bump braces from 3.0.2 to 3.0.3 (#4564)
  • c49fdf9 Merge pull request #4482 from jakebailey/emit-file-diagnostics
  • 045e29b Merge pull request #4504 from htcfreek/patch-1
  • Additional commits viewable in compare view


Updates satori from 0.10.13 to 0.10.14

Release notes

Sourced from satori's releases.

0.10.14

0.10.14 (2024-07-04)

Bug Fixes

Commits


Updates tailwindcss from 3.4.4 to 3.4.7

Release notes

Sourced from tailwindcss's releases.

v3.4.7

Fixed

  • Fix class detection in Slim templates with attached attributes and ID (#14019)
  • Ensure attribute values in data-* and aria-* modifiers are always quoted in the generated CSS (#14037)

v3.4.6

Fixed

  • Fix detection of some utilities in Slim/Pug templates (#14006)

Changed

  • Loosen :is() wrapping rules when using an important selector (#13900)

v3.4.5

Fixed

  • Disable automatic var() injection for anchor properties (#13826)
  • Use no value instead of blur(0px) for backdrop-blur-none and
dependabot[bot] commented 3 months ago

Superseded by #64.