Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

chore(deps): update all non-major dependencies #176

Merged
merged 2 commits into from
Aug 21, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@discordjs/collection (source) ^1.5.1 -> ^1.5.3 age adoption passing confidence
@snowcrystals/iglo ^1.2.7 -> ^1.2.8 age adoption passing confidence
discord.js (source) 14.11.0 -> 14.13.0 age adoption passing confidence
smol-toml ^1.1.1 -> ^1.1.2 age adoption passing confidence
tslib (source) 2.6.1 -> 2.6.2 age adoption passing confidence
zod (source) 3.21.4 -> 3.22.2 age adoption passing confidence

Release Notes

discordjs/discord.js (@​discordjs/collection)

v1.5.3

Compare Source

Documentation

v1.5.2

Compare Source

Refactor

snowcrystals/iglo (@​snowcrystals/iglo)

v1.2.8: 1.2.8

Compare Source

Release v1.2.8 🎉

🐛 Bug Fixes

♻️ chores

discordjs/discord.js (discord.js)

v14.13.0

Compare Source

Bug Fixes

Documentation

Features

Typings

v14.12.1

Compare Source

Bug Fixes

v14.12.0

Compare Source

Bug Fixes

Documentation

Features

Performance

Refactor

  • User: Remove deprecation warning from tag (#​9660) (cf8012c)
  • GuildMember: Make _roles property non-enumerable (#​9387) (46167a7)
  • rest: Switch api to fetch-like and provide strategies (#​9416) (cdaa0a3)
    • BREAKING CHANGE: NodeJS v18+ is required when using node due to the use of global fetch
    • BREAKING CHANGE: The raw method of REST now returns a web compatible Respone object.
    • BREAKING CHANGE: The parseResponse utility method has been updated to operate on a web compatible Response object.
    • BREAKING CHANGE: Many underlying internals have changed, some of which were exported.
    • BREAKING CHANGE: DefaultRestOptions used to contain a default agent, which is now set to null instead.

Typings

  • MessageManager: Allow comparison of messages again (#​9612) (a48d0ef)
  • AutoModerationActionExecution: Add forum channels as a possible type in channel() (#​9623) (d64330a)
  • ModalSubmitFields: Components is an array (#​9406) (1cab79f)
  • Use readonly arrays and const type parameters in places (#​9641) (cd69868)
  • BaseInteraction: appPermissions not null in guilds (#​9601) (6c2242f)
squirrelchat/smol-toml (smol-toml)

v1.1.2

Compare Source

Fixed a smol issue with types where TomlPrimitive was not exposed, despite being a user-facing type.

Full Changelog: squirrelchat/smol-toml@v1.1.1...v1.1.2

Microsoft/tslib (tslib)

v2.6.2: tslib 2.6.2

Compare Source

What's Changed

Full Changelog: microsoft/tslib@v2.6.1...v2.6.2

colinhacks/zod (zod)

v3.22.2

Compare Source

Commits:

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.

@ijsblokjeee ijsblokjeee bot added Dependencies 🚀 PRs and Issues related to dependencies Chore 🧹 labels Aug 6, 2023
@renovate renovate bot force-pushed the renovate/all-non-major branch 7 times, most recently from b8e766d to 8615830 Compare August 20, 2023 16:20
@renovate renovate bot force-pushed the renovate/all-non-major branch from 8615830 to 329af1e Compare August 21, 2023 15:35
@kodiakhq kodiakhq bot merged commit 17071e4 into main Aug 21, 2023
@kodiakhq kodiakhq bot deleted the renovate/all-non-major branch August 21, 2023 15:39
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Chore 🧹 Dependencies 🚀 PRs and Issues related to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant