Skip to content

chore(deps): Update all non-major dependencies#546

Merged
jacobk999 merged 2 commits intomainfrom
renovate/all-minor-patch
Aug 16, 2023
Merged

chore(deps): Update all non-major dependencies#546
jacobk999 merged 2 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Aug 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/cli (source) ^17.6.7 -> ^17.7.1 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) ^17.6.7 -> ^17.7.0 age adoption passing confidence devDependencies minor
@nestjs/swagger ^7.1.6 -> ^7.1.8 age adoption passing confidence dependencies patch
@rollup/pluginutils (source) ^5.0.2 -> ^5.0.3 age adoption passing confidence devDependencies patch
@sentry/node (source) ^7.61.0 -> ^7.64.0 age adoption passing confidence dependencies minor
@sentry/tracing (source) ^7.61.0 -> ^7.64.0 age adoption passing confidence dependencies minor
@types/node (source) ^18.17.2 -> ^18.17.5 age adoption passing confidence devDependencies patch
@types/react (source) ^18.2.18 -> ^18.2.20 age adoption passing confidence devDependencies patch
discord-api-types (source) ^0.37.51 -> ^0.37.53 age adoption passing confidence dependencies patch
eslint (source) ^8.46.0 -> ^8.47.0 age adoption passing confidence devDependencies minor
inquirer (source) ^9.2.9 -> ^9.2.10 age adoption passing confidence dependencies patch
luxon ^3.3.0 -> ^3.4.0 age adoption passing confidence dependencies minor
minecraft-protocol ^1.43.2 -> ^1.44.0 age adoption passing confidence dependencies minor
mongoose (source) ^7.4.2 -> ^7.4.3 age adoption passing confidence dependencies patch
node 18.17.0 -> 18.17.1 age adoption passing confidence patch
pnpm (source) 8.6.11 -> 8.6.12 age adoption passing confidence packageManager patch
sass ^1.64.2 -> ^1.65.1 age adoption passing confidence devDependencies minor
sharp (changelog) ^0.32.4 -> ^0.32.5 age adoption passing confidence dependencies patch
typescript (source) 5.2.0-dev.20230803 -> 5.2.0-dev.20230807 age adoption passing confidence devDependencies patch
zod (source) ^3.21.4 -> ^3.22.1 age adoption passing confidence dependencies minor

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v17.7.1

Compare Source

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

v17.7.0

Compare Source

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

17.6.7 (2023-07-19)

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

17.6.6 (2023-06-24)

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

17.6.5 (2023-05-30)

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

17.6.3 (2023-05-04)

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

17.6.1 (2023-04-14)

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

conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.7.0

Compare Source

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

17.6.7 (2023-07-19)

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

17.6.6 (2023-06-24)

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

17.6.5 (2023-05-30)

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

17.6.3 (2023-05-04)

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

17.6.1 (2023-04-14)

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

nestjs/swagger (@​nestjs/swagger)

v7.1.8

Compare Source

v7.1.7

Compare Source

rollup/plugins (@​rollup/pluginutils)

v5.0.3

Compare Source

2023-08-13

Bugfixes
  • fix: add current working dirctory when pattern starts with one * #​1547
getsentry/sentry-javascript (@​sentry/node)

v7.64.0

Compare Source

  • feat(core): Add setMeasurement export (#​8791)
  • fix(nextjs): Check for existence of default export when wrapping pages (#​8794)
  • fix(nextjs): Ensure imports are valid relative paths (#​8799)
  • fix(nextjs): Only re-export default export if it exists (#​8800)

v7.63.0

Compare Source

  • build(deps): bump @​opentelemetry/instrumentation from 0.41.0 to 0.41.2
  • feat(eventbuilder): Export exceptionFromError for use in hybrid SDKs (#​8766)
  • feat(node-experimental): Re-export from node (#​8786)
  • feat(tracing): Add db connection attributes for mysql spans (#​8775)
  • feat(tracing): Add db connection attributes for postgres spans (#​8778)
  • feat(tracing): Improve data collection for mongodb spans (#​8774)
  • fix(nextjs): Execute sentry config independently of autoInstrumentServerFunctions and autoInstrumentAppDirectory (#​8781)
  • fix(replay): Ensure we do not flush if flush took too long (#​8784)
  • fix(replay): Ensure we do not try to flush when we force stop replay (#​8783)
  • fix(replay): Fix hasCheckout handling (#​8782)
  • fix(replay): Handle multiple clicks in a short time (#​8773)
  • ref(replay): Skip events being added too long after initial segment (#​8768)

v7.62.0

Compare Source

Important Changes
  • feat(integrations): Add ContextLines integration for html-embedded JS stack frames (#​8699)

This release adds the ContextLines integration as an optional integration for the Browser SDKs to @sentry/integrations.

This integration adds source code from inline JavaScript of the current page's HTML (e.g. JS in <script> tags) to stack traces of captured errors.
It can't collect source code from assets referenced by your HTML (e.g. <script src="..." />).

The ContextLines integration is useful when you have inline JS code in HTML pages that can't be accessed by Sentry's backend, for example, due to a login-protected page.

import { ContextLines } from "@&#8203;sentry/integrations";

Sentry.init({
  // ...
  integrations: [
    new ContextLines({
      // The number of lines to collect before and after each stack frame's line number
      // Defaults to 7
      frameContextLines: 7,
    }),
  ],
});
Other Changes
  • fix(nextjs): Make all wrappers isomorphic and available in all runtimes (#​8743)
  • fix(replay): Cancel debounce when replay is too short/long (#​8742)
  • fix(utils): dirname and basename should handle Windows paths (#​8737)
  • ref: Hoist flush, close, and lastEventId into @sentry/core (#​8731)
  • ref(node): Don't call JSON.stringify on prisma client when logging (#​8745)

v7.61.1

Compare Source

  • feat(nextjs): Add AsyncLocalStorage async context strategy to edge SDK (#​8720)
  • fix(core): Filter internal API frames for synthetic frames (#​8710)
  • fix(integrations): Capture exception if any arg to console method is an error (#​8671)
  • fix(node-experimental): Update auto integration lookup & readme (#​8690)
  • fix(node): Add availablility check on current hub to Node ContextLines integration (#​8715)
  • fix(replay): Ensure buffer sessions end after capturing an error (#​8713)
  • fix(replay): Ensure buffer->session switch is reliable (#​8712)
  • fix(replay): Ensure we debounce flush if replay too short (#​8716)
  • fix(replay): Improve capture of errorIds/traceIds (#​8678)
  • fix(tracing): Set correct parent span id on fetch sentry-trace header (#​8687)
  • fix(utils): Avoid pre_context and context_line overlap if frame lineno is out of bounds (#​8722)
  • ref(replay): Improve status logging (#​8709)
  • ref(nextjs): Allow withSentryConfig to accept async config function (#​8721)
discordjs/discord-api-types (discord-api-types)

v0.37.53

Compare Source

Features

v0.37.52

Compare Source

Bug Fixes
  • RESTPatchAPIChannelJSONBody: available_tags requires name only (#​802) (5261124)
eslint/eslint (eslint)

v8.47.0

Compare Source

Features
  • 53d7508 feat: update regex for methods with thisArg (#​17439) (Francesco Trotta)
Bug Fixes
  • 631648e fix: do not report on shadowed constructors in no-new-wrappers (#​17447) (Francesco Trotta)
Documentation
Chores
SBoudrias/Inquirer.js (inquirer)

v9.2.10

Compare Source

moment/luxon (luxon)

v3.4.0

Compare Source

  • Fix type checking on input zones
  • Fix Islamic months listing
  • Fix normalize() for negative inputs
PrismarineJS/node-minecraft-protocol (minecraft-protocol)

v1.44.0

Compare Source

1.44.0

Automattic/mongoose (mongoose)

v7.4.3

Compare Source

==================

  • fix: avoid applying map property getters when saving #​13704 #​13657
  • fix(query): allow deselecting discriminator key #​13722 #​13679
  • types(models+query): return lean type when passing QueryOptions with lean: true to relevant model functions like find() and findOne() #​13721 #​13705
  • types(schema): correct return type for Schema.prototype.indexes() #​13718 #​13702
  • types: allow accessing options from pre middleware #​13708 #​13633
  • types: add UpdateQueryKnownOnly type for stricter UpdateQuery type checking #​13699 #​13630
  • types(schema): support required: { isRequired: true } syntax in schema definition #​13680
  • docs(middleware): clarify that doc.deleteOne() doesn't run query middleware currently #​13707 #​13669
nodejs/node (node)

v18.17.1: 2023-08-09, Version 18.17.1 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in August 2023 Security Releases blog post.

Commits
pnpm/pnpm (pnpm)

v8.6.12

Compare Source

Patch Changes

  • Make the error message friendlier when a user attempts to run a command that does not exist #​6887.
  • pnpm patch should work correctly when shared-workspace-file is set to false #​6885.
  • pnpm env use should retry deleting the previous Node.js executable #​6587.
  • pnpm dlx should not print an error stack when the underlying script execution fails #​6698.
  • When showing the download progress of large tarball files, always display the same number of digits after the decimal point #​6901.
  • Report download progress less frequently to improve performance #​6906.
  • pnpm install --frozen-lockfile --lockfile-only should fail if the lockfile is not up to date with the package.json files #​6913.

Our Gold Sponsors

Our Silver Sponsors

sass/dart-sass (sass)

v1.65.1

Compare Source

  • Update abs-percent deprecatedIn version to 1.65.0.

v1.65.0

Compare Source

  • All functions defined in CSS Values and Units 4 are now parsed as calculation
    objects: round(), mod(), rem(), sin(), cos(), tan(), asin(),
    acos(), atan(), atan2(), pow(), sqrt(), hypot(), log(), exp(),
    abs(), and sign().

  • Deprecate explicitly passing the % unit to the global abs() function. In
    future releases, this will emit a CSS abs() function to be resolved by the
    browser. This deprecation is named abs-percent.

lovell/sharp (sharp)

v0.32.5

Compare Source

Microsoft/TypeScript (typescript)

v5.2.0-dev.20230807

Compare Source

v5.2.0-dev.20230806

Compare Source

v5.2.0-dev.20230805

Compare Source

v5.2.0-dev.20230804

Compare Source

colinhacks/zod (zod)

v3.22.1

Compare Source

Commits:

Fix handing of this in ZodFunction schemas. The parse logic for function schemas now requires the Reflect API.

const methodObject = z.object({
  property: z.number(),
  method: z.function().args(z.string()).returns(z.number()),
});
const methodInstance = {
  property: 3,
  method: function (s: string) {
    return s.length + this.property;
  },
};
const parsed = methodObject.parse(methodInstance);
parsed.method("length=8"); // => 11 (8 length + 3 property)

v3.22.0

Compare Source

ZodReadonly

This release introduces ZodReadonly and the .readonly() method on ZodType.

Calling .readonly() on any schema returns a ZodReadonly instance that wraps the original schema. The new schema parses all inputs using the original schema, then calls Object.freeze() on the result. The inferred type is also marked as readonly.

const schema = z.object({ name: string }).readonly();
type schema = z.infer<typeof schema>;
// Readonly<{name: string}>

const result = schema.parse({ name: "fido" });
result.name = "simba"; // error

The inferred type uses TypeScript's built-in readonly types when relevant.

z.array(z.string()).readonly();
// readonly string[]

z.tuple([z.string(), z.number()]).readonly();
// readonly [string, number]

z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>

z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>

Commits:


Configuration

📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 added the dependencies label Aug 6, 2023
@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 6, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
statsify ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 16, 2023 7:50pm

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7d5f652 to e95397e Compare August 6, 2023 10:21
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from e95397e to 35779a0 Compare August 6, 2023 13:11
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 35779a0 to 03721c9 Compare August 7, 2023 09:11
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 03721c9 to b7096be Compare August 7, 2023 13:54
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from b7096be to 43d1c14 Compare August 8, 2023 08:44
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 43d1c14 to 11906fd Compare August 8, 2023 21:41
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 11906fd to 3a8bfa5 Compare August 9, 2023 04:53
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3a8bfa5 to 49d2bb7 Compare August 9, 2023 10:58
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 01181e2 to 09b71e0 Compare August 9, 2023 23:23
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 09b71e0 to a771674 Compare August 10, 2023 06:45
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a771674 to 1fc2356 Compare August 10, 2023 10:14
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1fc2356 to e8da3a4 Compare August 10, 2023 20:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from e8da3a4 to 68c10f4 Compare August 11, 2023 17:32
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 68c10f4 to b40ba71 Compare August 11, 2023 20:22
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from b40ba71 to e580ce5 Compare August 13, 2023 13:50
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from e580ce5 to adf247b Compare August 14, 2023 12:48
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from adf247b to 2b9fc8f Compare August 14, 2023 14:17
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 2b9fc8f to 9f8d95e Compare August 14, 2023 22:49
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Aug 16, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@jacobk999 jacobk999 merged commit b2a687a into main Aug 16, 2023
@jacobk999 jacobk999 deleted the renovate/all-minor-patch branch August 16, 2023 19:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant