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

chore(deps-dev): bump the minor-and-patch group with 6 updates #59

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2024

Bumps the minor-and-patch group with 6 updates:

Package From To
@commitlint/cli 18.4.4 18.6.0
@commitlint/config-conventional 18.4.4 18.6.0
@types/luxon 3.4.1 3.4.2
@types/node 20.11.3 20.11.16
lint-staged 15.2.0 15.2.2
prettier 3.2.2 3.2.5

Updates @commitlint/cli from 18.4.4 to 18.6.0

Release notes

Sourced from @​commitlint/cli's releases.

v18.6.0

18.6.0 (2024-01-25)

Features

Full Changelog: conventional-changelog/commitlint@v18.5.1...v18.6.0

v18.5.1

18.5.1 (2024-01-22)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v18.5.0...v18.5.1

v18.5.0

18.5.0 (2024-01-22)

Bug Fixes

  • config-nx-scopes: restore compatibility with nx 17.2.0 and higher (#3855) (1e08a17), closes #3820

Features

  • cli: print-config now can be configured to print a json in stdout (#3863) (6381a2d), closes #3819

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.4.4...v18.5.0

Changelog

Sourced from @​commitlint/cli's changelog.

18.6.0 (2024-01-25)

Note: Version bump only for package @​commitlint/cli

18.5.0 (2024-01-22)

Features

  • cli: print-config now can be configured to print a json in stdout (#3863) (6381a2d), closes #3819
Commits

Updates @commitlint/config-conventional from 18.4.4 to 18.6.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v18.6.0

18.6.0 (2024-01-25)

Features

Full Changelog: conventional-changelog/commitlint@v18.5.1...v18.6.0

v18.5.1

18.5.1 (2024-01-22)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v18.5.0...v18.5.1

v18.5.0

18.5.0 (2024-01-22)

Bug Fixes

  • config-nx-scopes: restore compatibility with nx 17.2.0 and higher (#3855) (1e08a17), closes #3820

Features

  • cli: print-config now can be configured to print a json in stdout (#3863) (6381a2d), closes #3819

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.4.4...v18.5.0

Changelog

Sourced from @​commitlint/config-conventional's changelog.

18.6.0 (2024-01-25)

Features

18.5.0 (2024-01-22)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @types/luxon from 3.4.1 to 3.4.2

Commits

Updates @types/node from 20.11.3 to 20.11.16

Commits

Updates lint-staged from 15.2.0 to 15.2.2

Release notes

Sourced from lint-staged's releases.

v15.2.2

Patch Changes

  • #1391 fdcdad4 Thanks @​iiroj! - Lint-staged no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.

v15.2.1

Patch Changes

  • #1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
Changelog

Sourced from lint-staged's changelog.

15.2.2

Patch Changes

  • #1391 fdcdad4 Thanks @​iiroj! - Lint-staged no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.

15.2.1

Patch Changes

  • #1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
Commits
  • 4d4270b chore(changeset): release
  • a7c5957 Merge pull request #1391 from lint-staged/fix-sparse-checkout
  • c1b2a6a ci: use macOS Sonoma M1 runners
  • fdcdad4 fix: do not try to load configuration from files that are not checked out
  • 999dcce chore(changeset): release
  • 52a9e3f Merge pull request #1387 from lint-staged/ignore-stdin
  • dd72fde ci: update "actions/cache@v4"
  • e4023f6 fix: ignore stdin of spawned commands
  • 46f2c43 ci: update actions/setup-node@v4
  • a684125 ci: update CodeQL action v3
  • Additional commits viewable in compare view

Updates prettier from 3.2.2 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.4
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}
// Prettier 3.2.5
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";
@​Component({
[template]: &lt;h1&gt;{{       hello }}&lt;/h1&gt;,
})
export class AppComponent {}
</tr></table>

... (truncated)

Commits

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `18.4.4` | `18.6.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `18.4.4` | `18.6.0` |
| [@types/luxon](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/luxon) | `3.4.1` | `3.4.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.3` | `20.11.16` |
| [lint-staged](https://github.com/okonet/lint-staged) | `15.2.0` | `15.2.2` |
| [prettier](https://github.com/prettier/prettier) | `3.2.2` | `3.2.5` |


Updates `@commitlint/cli` from 18.4.4 to 18.6.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v18.6.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 18.4.4 to 18.6.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v18.6.0/@commitlint/config-conventional)

Updates `@types/luxon` from 3.4.1 to 3.4.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/luxon)

Updates `@types/node` from 20.11.3 to 20.11.16
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `lint-staged` from 15.2.0 to 15.2.2
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.0...v15.2.2)

Updates `prettier` from 3.2.2 to 3.2.5
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.2...3.2.5)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/luxon"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 5, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 12, 2024

Superseded by #60.

@dependabot dependabot bot closed this Feb 12, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-1d9d3c8f4d branch February 12, 2024 21:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants