Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 9, 2025

This PR contains the following updates:

Package Change Age Confidence
kysely-codegen 0.18.5 -> 0.19.0 age confidence

Release Notes

RobinBlomberg/kysely-codegen (kysely-codegen)

v0.19.0

New features

Thanks to amazing contributions from @​kevinmichaelchen in #​274, you can now override types on a global level:

.kysely-codegenrc.json

{
  "customImports": {
    "InstantRange": "./custom-types",
    "CustomDuration": "@​my-org/custom-types#Duration",
    "Temporal": "@​js-temporal/polyfill",
  },
  "typeMapping": {
    "timestamptz": "Temporal.Instant",
    "tstzrange": "InstantRange",
    "date": "Temporal.PlainDate",
    "interval": "CustomDuration"
  }
}

Example of generated output:

import type { InstantRange } from './custom-types';
import type { Duration as CustomDuration } from '@​my-org/custom-types';
import type { Temporal } from '@​js-temporal/polyfill';

export interface EventModel {
  createdAt: Temporal.Instant;
  dateRange: ColumnType<InstantRange, InstantRange, never>;
  eventDate: Temporal.PlainDate;
  interval: CustomDuration;
}

export interface DB {
  events: EventModel;
}

What's Changed

New Contributors

Full Changelog: RobinBlomberg/kysely-codegen@0.18.0...0.19.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner September 9, 2025 21:30
@renovate renovate bot force-pushed the renovate/kysely-codegen-0.x branch 3 times, most recently from b2ed715 to a2e8323 Compare September 29, 2025 07:52
@renovate renovate bot force-pushed the renovate/kysely-codegen-0.x branch 4 times, most recently from 93357ee to 16da347 Compare October 8, 2025 06:50
@renovate renovate bot force-pushed the renovate/kysely-codegen-0.x branch 2 times, most recently from e8c77b4 to 01665be Compare October 22, 2025 07:06
@renovate renovate bot force-pushed the renovate/kysely-codegen-0.x branch from 01665be to 7661da8 Compare November 10, 2025 21:37
@renovate renovate bot force-pushed the renovate/kysely-codegen-0.x branch from 7661da8 to 00ed11c Compare November 18, 2025 22:58
@renovate renovate bot force-pushed the renovate/kysely-codegen-0.x branch from 00ed11c to fa0e59b Compare December 3, 2025 19:08
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.

1 participant