Skip to content

Commit bae1cb5

Browse files
authored
Merge pull request #604 from supabase/rs/bump-version
chore: bump version to 0.15.12
2 parents c8a38d5 + 62cd075 commit bae1cb5

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pg_graphql"
3-
version = "1.5.11"
3+
version = "1.5.12"
44
edition = "2021"
55

66
[lib]

docs/changelog.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
## 1.0.0
2+
23
- Initial release
34

45
## 1.0.1
6+
57
- feature: Add support for Postgres 15
68

79
## 1.0.2
10+
811
- bugfix: Correct inconsistent treatment of null literals
912

1013
## 1.1.0
14+
1115
- feature: Add support for Views, Materialized Views, and Foreign Tables
1216
- feature: Add support for filtering on `is null` and `is not null`
1317
- feature: User configurable page size
1418
- bugfix: Remove requirement for `insert` permission on every column for inserts to succeed
1519
- bugfix: `hasNextPage` and `hasPreviousPage` during reverse pagination were backwards
1620

1721
## 1.2.0
22+
1823
- feature: `String` type filters support `ilike`, `like`, `startsWith`
1924
- feature: Support for `@skip` and `@include` directives
2025
- feature: Custom descriptions via comment directive `@graphql({"description": ...})`
@@ -23,77 +28,100 @@
2328
- bugfix: Creating a new enum variant between existing variants no longer errors
2429

2530
## 1.2.1
31+
2632
- feature: `String` type filters support `regex`, `iregex`
2733
- feature: computed relationships via functions returning setof
2834
- bugfix: function based computed columns with same name no longer error
2935

3036
## 1.2.2
37+
3138
- feature: reproducible builds
3239

3340
## 1.2.3
41+
3442
- bugfix: enums not on the roles `search_path` are excluded from introspection
3543
- bugfix: remove duplicate Enum registration
3644
- bugfix: foreign keys on non-null columns produce non-null GraphQL relationships
3745

3846
## 1.3.0
47+
3948
- feature: rename enum variants with comment directive `@graphql({"mappings": "sql-value": "graphql_value""})`
4049
- bugfix: query with more than 50 fields fails
4150
- bugfix: @skip and @include directives missing from introspection schema
4251
- feature: Support for `and`, `or` and `not` operators in filters
4352
- bugfix: queries failed to run if the database was in read-only replica mode
4453

4554
## 1.4.0
55+
4656
- feature: citext type represented as a GraphQL String
4757
- feature: Support for Postgres 16
4858
- feature: Support for user defined functions
4959

5060
## 1.4.1
61+
5162
- feature: Support for user defined functions with default arguments
5263
- bugfix: Trigger functions excluded from API
5364

5465
## 1.4.2
66+
5567
- bugfix: UDF call returned null if the row returned by the function had any null column
5668

5769
## 1.4.3
70+
5871
- bugfix: make non-default args non-null in UDFs
5972
- bugfix: default value of a string type argument in a UDF was wrapped in single quotes
6073
- feature: add support for array types in UDFs
6174
- bugfix: fix crash when there are cycles in fragments
6275
- bugfix: function returning an inaccessible table's type no longer breaks introspection
6376

6477
## 1.4.4
78+
6579
- bugfix: function returning a noncompliant view's type no longer breaks introspection
6680

6781
## 1.5.0
82+
6883
- feature: `first`/`offset` based pagination
6984
- feature: improved descriptions for all internal error states
7085

7186
## 1.5.1
87+
7288
- bugfix: reimplemented field merging to resolve a performance issue on large queries
7389

7490
## 1.5.2
91+
7592
- bugfix: enabled schema based multi-tenancy via filtering SQL context on schema permissions
7693
- bugfix: function arguments with a null default value were required instead of optional
7794

7895
## 1.5.3
96+
7997
- bugfix: computed field returning a composite type was always null
8098

8199
## 1.5.4
100+
82101
- bugfix: once a query panics, all subsequent queries return a lock poisoned error.
83102

84103
## 1.5.6
104+
85105
- feature: add support for filtering on array column types using `contains`, `containedBy`, `overlaps`, `is`, `eq`
86106

87107
## 1.5.7
108+
88109
- bugfix: UDF argument with a complex default expression was marked as required
89110
- bugfix: not null foreign keys referencing tables with RLS are marked as nullable
90111

91112
## 1.5.8
113+
92114
- bugfix: relational query with more than 100 fields fails
93115

94116
## 1.5.11
117+
95118
- bugfix: qualify schema refs
96119

97-
## master
120+
## 1.5.12
121+
122+
- bugfix: description field was missing in schema introspection
123+
- bugfix: oids overflowed when loading context
98124
- feature: Add support for aggregate functions (count, sum, avg, min, max) on collection types
99125
- feature: Add support for per table and view `max_row` directives
126+
127+
## master

0 commit comments

Comments
 (0)