pg-introspection 0.0.1-beta.1 → 0.0.1-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/LICENSE.md +2 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# pg-introspection
|
|
2
2
|
|
|
3
|
+
## 0.0.1-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#496](https://github.com/benjie/crystal/pull/496)
|
|
8
|
+
[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
|
|
9
|
+
Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
|
|
10
|
+
through major versions).
|
|
11
|
+
|
|
3
12
|
## 0.0.1-beta.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/LICENSE.md
CHANGED
|
@@ -26,7 +26,8 @@ license applies to those excerpts:
|
|
|
26
26
|
|
|
27
27
|
PostgreSQL is Copyright © 1996–2022 by the PostgreSQL Global Development Group.
|
|
28
28
|
|
|
29
|
-
Postgres95 is Copyright © 1994–5 by the Regents of the University of
|
|
29
|
+
Postgres95 is Copyright © 1994–5 by the Regents of the University of
|
|
30
|
+
California.
|
|
30
31
|
|
|
31
32
|
Permission to use, copy, modify, and distribute this software and its
|
|
32
33
|
documentation for any purpose, without fee, and without a written agreement is
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-introspection",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.2",
|
|
4
4
|
"description": "Strongly typed PostgreSQL introspection library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/graphile/heart/tree/main/utils/pg-introspection",
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@types/debug": "4.1.
|
|
35
|
-
"@types/jest": "^
|
|
36
|
-
"@types/node": "
|
|
37
|
-
"jest": "^
|
|
34
|
+
"@types/debug": "4.1.8",
|
|
35
|
+
"@types/jest": "^29.5.4",
|
|
36
|
+
"@types/node": "20.5.7",
|
|
37
|
+
"jest": "^29.6.4",
|
|
38
38
|
"ts-node": "^10.9.1",
|
|
39
|
-
"typescript": "^5.
|
|
39
|
+
"typescript": "^5.2.2"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"tslib": "^2.
|
|
42
|
+
"tslib": "^2.6.2"
|
|
43
43
|
},
|
|
44
44
|
"files": [
|
|
45
45
|
"dist"
|