the-collab-lab / website

Home of TCL’s website
https://the-collab-lab.codes
6 stars 4 forks source link

chore(deps-dev): bump the development-dependencies group with 5 updates #97

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the development-dependencies group with 5 updates:

Package From To
@typescript-eslint/eslint-plugin 6.7.4 6.7.5
@typescript-eslint/parser 6.7.4 6.7.5
astro 3.2.3 3.3.0
eslint-plugin-prettier 5.0.0 5.0.1
lint-staged 14.0.1 15.0.1

Updates @typescript-eslint/eslint-plugin from 6.7.4 to 6.7.5

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v6.7.5

6.7.5 (2023-10-09)

Bug Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#7712) (db40a0a)

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

6.7.5 (2023-10-09)

Bug Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#7712) (db40a0a)

You can read about our versioning strategy and releases on our website.

Commits
  • 36aecb6 chore: publish v6.7.5
  • db40a0a fix(eslint-plugin): [prefer-string-starts-ends-with] only report slice/substr...
  • 8f4d939 docs: fix prefer-optional-chain example for the unsafe fixes option (#7711)
  • See full diff in compare view


Updates @typescript-eslint/parser from 6.7.4 to 6.7.5

Release notes

Sourced from @​typescript-eslint/parser's releases.

v6.7.5

6.7.5 (2023-10-09)

Bug Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#7712) (db40a0a)

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

6.7.5 (2023-10-09)

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

Commits


Updates astro from 3.2.3 to 3.3.0

Release notes

Sourced from astro's releases.

@​astrojs/markdown-remark@​3.3.0

Minor Changes

  • #8502 c4270e476 Thanks @​bluwy! - Updates the internal shiki syntax highlighter to shikiji, an ESM-focused alternative that simplifies bundling and maintenance.

    There are no new options and no changes to how you author code blocks and syntax highlighting.

    Potentially breaking change: While this refactor should be transparent for most projects, the transition to shikiji now produces a smaller HTML markup by attaching a fallback color style to the pre or code element, instead of to the line span directly. For example:

    Before:

    <code class="astro-code" style="background-color: #24292e">
      <pre>
        <span class="line" style="color: #e1e4e8">my code</span>
      </pre>
    </code>
    

    After:

    <code class="astro-code" style="background-color: #24292e; color: #e1e4e8">
      <pre>
        <span class="line">my code<span>
      </pre>
    </code>
    

    This does not affect the colors as the span will inherit the color from the parent, but if you're relying on a specific HTML markup, please check your site carefully after upgrading to verify the styles.

Patch Changes

astro@3.3.0

Minor Changes

  • #8808 2993055be Thanks @​delucis! - Adds support for an --outDir CLI flag to astro build

  • #8502 c4270e476 Thanks @​bluwy! - Updates the internal shiki syntax highlighter to shikiji, an ESM-focused alternative that simplifies bundling and maintenance.

    There are no new options and no changes to how you author code blocks and syntax highlighting.

    Potentially breaking change: While this refactor should be transparent for most projects, the transition to shikiji now produces a smaller HTML markup by attaching a fallback color style to the pre or code element, instead of to the line span directly. For example:

    Before:

... (truncated)

Changelog

Sourced from astro's changelog.

3.3.0

Minor Changes

  • #8808 2993055be Thanks @​delucis! - Adds support for an --outDir CLI flag to astro build

  • #8502 c4270e476 Thanks @​bluwy! - Updates the internal shiki syntax highlighter to shikiji, an ESM-focused alternative that simplifies bundling and maintenance.

    There are no new options and no changes to how you author code blocks and syntax highlighting.

    Potentially breaking change: While this refactor should be transparent for most projects, the transition to shikiji now produces a smaller HTML markup by attaching a fallback color style to the pre or code element, instead of to the line span directly. For example:

    Before:

    <code class="astro-code" style="background-color: #24292e">
      <pre>
        <span class="line" style="color: #e1e4e8">my code</span>
      </pre>
    </code>
    

    After:

    <code class="astro-code" style="background-color: #24292e; color: #e1e4e8">
      <pre>
        <span class="line">my code<span>
      </pre>
    </code>
    

    This does not affect the colors as the span will inherit the color from the parent, but if you're relying on a specific HTML markup, please check your site carefully after upgrading to verify the styles.

  • #8798 f369fa250 Thanks @​Princesseuh! - Fixed tsconfig.json's new array format for extends not working. This was done by migrating Astro to use tsconfck instead of tsconfig-resolver to find and parse tsconfig.json files.

  • #8620 b2ae9ee0c Thanks @​Princesseuh! - Adds experimental support for generating srcset attributes and a new <Picture /> component.

    srcset support

    Two new properties have been added to Image and getImage(): densities and widths.

    These properties can be used to generate a srcset attribute, either based on absolute widths in pixels (e.g. [300, 600, 900]) or pixel density descriptors (e.g. ["2x"] or [1.5, 2]).

    ---
    import { Image } from 'astro';
    import myImage from './my-image.jpg';
    ---
    

... (truncated)

Commits


Updates eslint-plugin-prettier from 5.0.0 to 5.0.1

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.0.1

Patch Changes

Commits


Updates lint-staged from 14.0.1 to 15.0.1

Release notes

Sourced from lint-staged's releases.

v15.0.1

Patch Changes

  • #1217 d2e6f8b Thanks @​louneskmt! - Previously it was possible for a function task to mutate the list of staged files passed to the function, and accidentally affect the generation of other tasks. This is now fixed by passing a copy of the original file list instead.

v15.0.0

Major Changes

  • #1322 66b93aa Thanks @​iiroj! - Require at least Node.js 18.12.0

    This release drops support for Node.js 16, which is EOL after 2023-09-11. Please upgrade your Node.js to the latest version.

    Additionally, all dependencies have been updated to their latest versions.

Changelog

Sourced from lint-staged's changelog.

15.0.1

Patch Changes

  • #1217 d2e6f8b Thanks @​louneskmt! - Previously it was possible for a function task to mutate the list of staged files passed to the function, and accidentally affect the generation of other tasks. This is now fixed by passing a copy of the original file list instead.

15.0.0

Major Changes

  • #1322 66b93aa Thanks @​iiroj! - Require at least Node.js 18.12.0

    This release drops support for Node.js 16, which is EOL after 2023-09-11. Please upgrade your Node.js to the latest version.

    Additionally, all dependencies have been updated to their latest versions.

Commits
  • e799ce1 chore(changeset): release
  • 67e3854 fix: run task command on files deep copy (#1217)
  • d2e6f8b fix: run task command on files deep copy
  • 499e367 ci: remove dependabot config
  • ac54ea5 ci: rename npm script, because it was triggered when running "npm publish"
  • 3949492 ci: update Actions workflow for publishing Changeset releases to npm correctly
  • 59ff2ef Merge pull request #1328 from lint-staged/changeset-release/master
  • dd89e16 chore(changeset): release
  • 244faa9 chore(deps): update dependencies (#1330)
  • 50cc3cc docs: add information about ESLint --no-warn-ignored (#1332)
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
netlify[bot] commented 11 months ago

Deploy Preview for the-collab-lab ready!

Name Link
Latest commit edebe8a7c15cc450455b4aba0a58cc227d630dfc
Latest deploy log https://app.netlify.com/sites/the-collab-lab/deploys/652d222988f6ed0008bc849e
Deploy Preview https://deploy-preview-97--the-collab-lab.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.