-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
docs: fix typos in markdown documentation #5562
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| ### Bug fixes | ||
|
|
||
| - [[BUG]: Drizzle Kit push to Postgres 18 produces unecessary DROP SQL when the schema was NOT changed](https://github.com/drizzle-team/drizzle-orm/issues/4944) | ||
| - [[BUG]: Drizzle Kit push to Postgres 18 produces unnecessary DROP SQL when the schema was NOT changed](https://github.com/drizzle-team/drizzle-orm/issues/4944) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| ### Bug fixes | ||
|
|
||
| - Fixed `algorythm` => `algorithm` typo. | ||
| - Fixed `algorithm` => `algorithm` typo. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is intentional to point out the fixes in that release |
||
| - Fixed external dependencies in build configuration. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| - Fix AWS Data API type hints bugs in RQB | ||
| - Fix set transactions in MySQL bug - thanks @roguesherlock | ||
| - Add forwaring dependencies within useLiveQuery, fixes [#2651](https://github.com/drizzle-team/drizzle-orm/issues/2651) - thanks @anstapol | ||
| - Add forwarding dependencies within useLiveQuery, fixes [#2651](https://github.com/drizzle-team/drizzle-orm/issues/2651) - thanks @anstapol | ||
| - Export additional types from SQLite package, like `AnySQLiteUpdate` - thanks @veloii |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| - Fixed pg-native Pool detection in node-postgres transactions | ||
| - Allowed subqueries in select fields | ||
| - Updated typo algorythm => algorithm | ||
| - Updated typo algorithm => algorithm | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here: |
||
| - Fixed `$onUpdate` not handling `SQL` values (fixes [#2388](https://github.com/drizzle-team/drizzle-orm/issues/2388), tests implemented by [L-Mario564](https://github.com/L-Mario564) in [#2911](https://github.com/drizzle-team/drizzle-orm/pull/2911)) | ||
| - Fixed `pg` mappers not handling `Date` instances in `bun-sql:postgresql` driver responses for `date`, `timestamp` types (fixes [#4493](https://github.com/drizzle-team/drizzle-orm/issues/4493)) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,7 +37,7 @@ const insertUserSchema = createInsertSchema(users, { | |
|
|
||
| // Refining the fields - useful if you want to change the fields before they become nullable/optional in the final schema | ||
| const insertUserSchema = createInsertSchema(users, { | ||
| id: (schema) => schema.atLeast(1), | ||
| id: (schema) => schema.at least(1), | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here: |
||
| role: type('string'), | ||
| }); | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -139,7 +139,7 @@ export type CacheConfig = { | |
| /** | ||
| * Unix time at which the key will expire, in seconds (a positive integer). | ||
| */ | ||
| exat?: number; | ||
| exact?: number; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again, part of the code and is valid. |
||
| /** | ||
| * Unix time at which the key will expire, in milliseconds (a positive integer) | ||
| */ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
atLeastis a part of the arktype code and is not a typo