Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gajus/slonik
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v31.4.0
Choose a base ref
...
head repository: gajus/slonik
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v31.4.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Oct 18, 2022

  1. Copy the full SHA
    2df4c06 View commit details
  2. fix: update roarr

    gajus committed Oct 18, 2022
    Copy the full SHA
    04b1a86 View commit details
Showing with 9 additions and 9 deletions.
  1. +7 −7 package-lock.json
  2. +1 −1 package.json
  3. +1 −1 src/types.ts
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@
"pg-types": "^4.0.0",
"postgres-array": "^3.0.1",
"postgres-interval": "^4.0.0",
"roarr": "^7.13.0",
"roarr": "^7.14.0",
"serialize-error": "^8.0.0",
"through2": "^4.0.2",
"zod": "^3.19.1"
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ export type TypeNameIdentifier =
| 'uuid';

export type SerializableValue =
SerializableValue[] | boolean | number | string | {
SerializableValue[] | boolean | number | string | readonly SerializableValue[] | {
[key: string]: SerializableValue,
} | null;