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): update all non-major dependencies #10

Merged
merged 1 commit into from Aug 5, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt-themes/docus ^1.14.4 -> ^1.14.6 age adoption passing confidence
@types/node (source) ^18.17.1 -> ^18.17.2 age adoption passing confidence
prettier (source) ^3.0.0 -> ^3.0.1 age adoption passing confidence

Release Notes

nuxt-themes/docus (@​nuxt-themes/docus)

v1.14.6

Compare Source

  • fix(search): handle back docsearch properly (b5f3108)
  • fix(footer): handle icons value for credits (e1ed5c8)

Full Changelog: nuxt-themes/docus@v1.14.5...v1.14.6

v1.14.5

Compare Source

What's Changed

Full Changelog: nuxt-themes/docus@v1.14.4...v1.14.5

prettier/prettier (prettier)

v3.0.1

Compare Source

diff

Fix cursor positioning for a special case (#​14812 by @​fisker)
// <|> is the cursor position

/* Input */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>  } from "fs"

/* Prettier 3.0.0 */
// All messages are represented in JSON.
// So, the prettier.py <|>controls a subprocess which spawns "node {this_file}".
import {} from "fs"

/* Prettier 3.0.1 */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>} from "fs"
Fix plugins/estree.d.ts to make it a module (#​15018 by @​kingyue737)

Add export {} in plugins/estree.d.ts to fix the "File is not a module" error

Add parenthesis around leading multiline comment in return statement (#​15037 by @​auvred)
// Input
function fn() {
  return (
    /**
     * @&#8203;type {...}
     */ expresssion
  )
}

// Prettier 3.0.0
function fn() {
  return /**
   * @&#8203;type {...}
   */ expresssion;
}

// Prettier 3.0.1
function fn() {
  return (
    /**
     * @&#8203;type {...}
     */ expresssion
  );
}
Add support for Vue "Generic Components" (#​15066 by @​auvred)

https://blog.vuejs.org/posts/vue-3-3#generic-components

<!-- Input -->
<script setup lang="ts" generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"></script>

<!-- Prettier 3.0.0 -->
<script
  setup
  lang="ts"
  generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"
></script>

<!-- Prettier 3.0.1 -->
<script
  setup
  lang="ts"
  generic="
    T extends Type1 & Type2 & (Type3 | Type4),
    U extends string | number | boolean
  "
></script>
Fix comments print in IfStatement (#​15076 by @​fisker)
function a(b) {
  if (b) return 1; // comment
  else return 2;
}

/* Prettier 3.0.0 */
Error: Comment "comment" was not printed. Please report this error!

/* Prettier 3.0.1 */
function a(b) {
  if (b) return 1; // comment
  else return 2;
}
Add missing type definition for printer.preprocess (#​15123 by @​so1ve)
export interface Printer<T = any> {
  // ...
+ preprocess?:
+   | ((ast: T, options: ParserOptions<T>) => T | Promise<T>)
+   | undefined;
}
Add missing getVisitorKeys method type definition for Printer (#​15125 by @​auvred)
const printer: Printer = {
  print: () => [],
  getVisitorKeys(node, nonTraversableKeys) {
    return ["body"];
  },
};
Add typing to support readonly array properties of AST Node (#​15127 by @​auvred)
// Input
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");

// Prettier 3.0.0
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");
//                  ^ Argument of type '"readonlyArray"' is not assignable to parameter of type '"regularArray"'. ts(2345)

// Prettier 3.0.1
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");
Add space before unary minus followed by a function call (#​15129 by @​pamelalozano)
// Input
div {
  margin: - func();
}

// Prettier 3.0.0
div {
  margin: -func();
}

// Prettier 3.0.1
div {
  margin: - func();
}

Configuration

📅 Schedule: Branch creation - "every 3 day" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from Hebilicious as a code owner July 4, 2023 02:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from f3fffec to 568273d Compare July 10, 2023 23:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from c2be54b to 15f09fc Compare July 18, 2023 15:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from c00f5bc to ed91359 Compare July 23, 2023 18:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ae2593b to 15a64dd Compare July 30, 2023 19:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 82a3424 to c158c72 Compare August 2, 2023 01:59
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Aug 2, 2023
@renovate renovate bot closed this Aug 2, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch August 2, 2023 08:21
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Aug 2, 2023
@renovate renovate bot reopened this Aug 2, 2023
@renovate renovate bot restored the renovate/all-minor-patch branch August 2, 2023 16:30
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency @nuxt-themes/docus to ^1.14.6 Aug 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c158c72 to b53412b Compare August 2, 2023 19:24
@renovate renovate bot changed the title chore(deps): update devdependency @nuxt-themes/docus to ^1.14.6 chore(deps): update all non-major dependencies Aug 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from b770837 to 6793f04 Compare August 4, 2023 12:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6793f04 to b81e502 Compare August 4, 2023 12:51
@renovate renovate bot merged commit f060670 into main Aug 5, 2023
2 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch August 5, 2023 01:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants