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

Bump the npm-dependencies group with 10 updates #88

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 17, 2023

Bumps the npm-dependencies group with 10 updates:

Package From To
@sveltejs/kit 1.22.5 1.22.6
@total-typescript/ts-reset 0.4.2 0.5.1
@types/node 20.4.9 20.5.0
@typescript-eslint/eslint-plugin 6.3.0 6.4.0
@typescript-eslint/parser 6.3.0 6.4.0
autoprefixer 10.4.14 10.4.15
postcss 8.4.27 8.4.28
prettier 3.0.1 3.0.2
prettier-plugin-tailwindcss 0.5.2 0.5.3
tailwindcss-3d 0.2.6 0.3.0

Updates @sveltejs/kit from 1.22.5 to 1.22.6

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​1.22.6

Patch Changes

  • fix: correctly restore trailing slash in url pathname for data requests (#10475)

  • fix: load trailing slash option from server even when there's no load function (#10475)

Changelog

Sourced from @​sveltejs/kit's changelog.

1.22.6

Patch Changes

  • fix: correctly restore trailing slash in url pathname for data requests (#10475)

  • fix: load trailing slash option from server even when there's no load function (#10475)

Commits

Updates @total-typescript/ts-reset from 0.4.2 to 0.5.1

Changelog

Sourced from @​total-typescript/ts-reset's changelog.

0.5.1

Patch Changes

  • Added homepage for npm purposes.

0.5.0

Minor Changes

  • 49b8603: Added a rule, /session, to make sessionStorage and localStorage safer.

    // Is now typed as `unknown`, not `any`!
    localStorage.a;
    // Is now typed as unknown, not any!
    sessionStorage.abc;

  • 49b8603: Added a /dom entrypoint to allow users to import DOM-only rules.

0.4.1

Patch Changes

  • No changes, just pushing to fix the previous slightly borked release.

0.4.0

Minor Changes

  • ce9db42: Added support for widening in Array.lastIndexOf, Array.indexOf, ReadonlyArray.lastIndexOf and ReadonlyArray.indexOf.

  • 107dfc2: Changed the array.includes on readonly arrays to NOT be a type predicate. Before this change, this perfectly valid code would not behave correctly.

    type Code = 0 | 1 | 2;
    type SpecificCode = 0 | 1;
    const currentCode: Code = 0;
    // Create an empty list of subset type
    const specificCodeList: ReadonlyArray<SpecificCode> = [];
    // This will be false, since 0 is not in []
    if (specificCodeList.includes(currentCode)) {
    currentCode; // -> SpecificCode
    } else {
    // This branch will be entered, and ts will think z is 2, when it is actually 0
    currentCode; // -> 2

... (truncated)

Commits

Updates @types/node from 20.4.9 to 20.5.0

Commits

Updates @typescript-eslint/eslint-plugin from 6.3.0 to 6.4.0

Release notes

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

v6.4.0

6.4.0 (2023-08-14)

Bug Fixes

  • eslint-plugin: [non-nullable-type-assertion-style] consider operator precedence when fixing (#7289) (bad37a2)
  • eslint-plugin: [strict-boolean-expressions] replace dangerous fixer with suggestions (#7394) (ad8401a)
  • typescript-estree: support declare and export modifiers for nested namespace declaration (#7410) (49a53f0)
  • utils: add new properties since eslint 8.40.0 (#7460) (660aff7)
  • utils: add to JSONSchema4Type missing Array and Object (#7406) (60df0bb)

Features

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

Changelog

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

6.4.0 (2023-08-14)

Bug Fixes

  • eslint-plugin: [non-nullable-type-assertion-style] consider operator precedence when fixing (#7289) (bad37a2)
  • eslint-plugin: [strict-boolean-expressions] replace dangerous fixer with suggestions (#7394) (ad8401a)

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

Commits
  • 14bea42 chore: publish v6.4.0
  • 9181252 docs: add note on common misconceptions about type narrowing (#7391)
  • ad8401a fix(eslint-plugin): [strict-boolean-expressions] replace dangerous fixer with...
  • bad37a2 fix(eslint-plugin): [non-nullable-type-assertion-style] consider operator pre...
  • 2f535c3 chore(eslint-plugin): remove unused natural-compare-lite from dependencies ...
  • See full diff in compare view

Updates @typescript-eslint/parser from 6.3.0 to 6.4.0

Release notes

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

v6.4.0

6.4.0 (2023-08-14)

Bug Fixes

  • eslint-plugin: [non-nullable-type-assertion-style] consider operator precedence when fixing (#7289) (bad37a2)
  • eslint-plugin: [strict-boolean-expressions] replace dangerous fixer with suggestions (#7394) (ad8401a)
  • typescript-estree: support declare and export modifiers for nested namespace declaration (#7410) (49a53f0)
  • utils: add new properties since eslint 8.40.0 (#7460) (660aff7)
  • utils: add to JSONSchema4Type missing Array and Object (#7406) (60df0bb)

Features

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

Changelog

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

6.4.0 (2023-08-14)

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

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

Commits

Updates autoprefixer from 10.4.14 to 10.4.15

Changelog

Sourced from autoprefixer's changelog.

10.4.15

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).
Commits

Updates postcss from 8.4.27 to 8.4.28

Release notes

Sourced from postcss's releases.

8.4.28

  • Fixed Root.source.end for better source map (by @​romainmenke).
  • Fixed Result.root types when process() has no parser.
Changelog

Sourced from postcss's changelog.

8.4.28

  • Fixed Root.source.end for better source map (by Romain Menke).
  • Fixed Result.root types when process() has no parser.
Commits
  • b0efcc0 Release 8.4.28 version
  • 33aca81 Fix tests
  • b352861 Merge pull request #1872 from romainmenke/add-source.end-to-root-nodes--compa...
  • 1bcc280 add source.end to Root nodes
  • ec034e4 Merge pull request #1871 from RiadhAdrani/main
  • 6222d3d chore: add postcss-plugin-ignore-file to plugins.md
  • 7d51976 Cast Result.root type from process() options
  • 0ef29c2 Update dependecnies
  • a0a82d3 Merge pull request #1867 from strarsis/add-postcss-baseurl-plugin
  • 510d0a5 Add postcss-urlrebase plugin to plugins page.
  • Additional commits viewable in compare view

Updates prettier from 3.0.1 to 3.0.2

Release notes

Sourced from prettier's releases.

3.0.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.0.2

diff

Break after = of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#15204 by @​seiyab)

// Input
const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData);
// Prettier 3.0.1
const { section, rubric, authors, tags } = await utils.upsertCommonData(
mainData,
);
// Prettier 3.0.2
const { section, rubric, authors, tags } =
await utils.upsertCommonData(mainData);

Do not add trailing comma for grouped scss comments (#15217 by @​auvred)

/* Input */
$foo: (
	'property': (),
	// comment 1
	// comment 2
)
/* Prettier 3.0.1 */
$foo: (
"property": (),
// comment 1
// comment 2,
);
/* Prettier 3.0.2 */
$foo: (
"property": (),
// comment 1
// comment 2
);

Print declare and export keywords for nested namespace (#15249 by @​sosukesuzuki)

... (truncated)

Commits

Updates prettier-plugin-tailwindcss from 0.5.2 to 0.5.3

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.5.3

Fixed

  • Fix CJS __dirname interop on Windows (#204)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.5.3] - 2023-08-15

Fixed

  • Fix CJS __dirname interop on Windows (#204)
Commits

Updates tailwindcss-3d from 0.2.6 to 0.3.0

Commits
  • b466055 chore: release v0.3.0
  • 5c542f5 fix: move type definitions into new index files
  • 700298c fix: tidy up import of lodash, chain requires the whole library anyway
  • dc87b92 chore(deps): package updates
  • 145f1d1 fix(config): add baseUrl for swc configs
  • 15d8813 chore(deps): node v20.5.1
  • 7e773ee chore(deps): pnpm v8.6.12
  • 5c10da0 Merge pull request #63 from sambauers/dependabot/npm_and_yarn/typescript-esli...
  • 69e2d34 chore(deps-dev): bump the typescript-eslint group with 2 updates
  • 9807fc7 Merge pull request #60 from sambauers/dependabot/npm_and_yarn/prettier-3.0.1
  • 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 <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> dependency 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> dependency 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 npm-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `1.22.5` | `1.22.6` |
| [@total-typescript/ts-reset](https://github.com/total-typescript/ts-reset) | `0.4.2` | `0.5.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.4.9` | `20.5.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.3.0` | `6.4.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.3.0` | `6.4.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.14` | `10.4.15` |
| [postcss](https://github.com/postcss/postcss) | `8.4.27` | `8.4.28` |
| [prettier](https://github.com/prettier/prettier) | `3.0.1` | `3.0.2` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.2` | `0.5.3` |
| [tailwindcss-3d](https://github.com/sambauers/tailwindcss-3d) | `0.2.6` | `0.3.0` |


Updates `@sveltejs/kit` from 1.22.5 to 1.22.6
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/master/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `@total-typescript/ts-reset` from 0.4.2 to 0.5.1
- [Release notes](https://github.com/total-typescript/ts-reset/releases)
- [Changelog](https://github.com/total-typescript/ts-reset/blob/main/CHANGELOG.md)
- [Commits](https://github.com/total-typescript/ts-reset/commits)

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

Updates `@typescript-eslint/eslint-plugin` from 6.3.0 to 6.4.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.4.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.3.0 to 6.4.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.4.0/packages/parser)

Updates `autoprefixer` from 10.4.14 to 10.4.15
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.14...10.4.15)

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

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

Updates `prettier-plugin-tailwindcss` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.2...v0.5.3)

Updates `tailwindcss-3d` from 0.2.6 to 0.3.0
- [Release notes](https://github.com/sambauers/tailwindcss-3d/releases)
- [Commits](sambauers/tailwindcss-3d@v0.2.6...v0.3.0)

---
updated-dependencies:
- dependency-name: "@sveltejs/kit"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@total-typescript/ts-reset"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: tailwindcss-3d
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 17, 2023
@WarningImHack3r WarningImHack3r merged commit 4d220e8 into main Aug 20, 2023
6 checks passed
@WarningImHack3r WarningImHack3r deleted the dependabot/npm_and_yarn/npm-dependencies-4875ec19d1 branch August 20, 2023 15:11
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant