supabase 1.157.3 → 1.157.5
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/README.md +6 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,12 +8,9 @@ This repository contains all the functionality for Supabase CLI.
|
|
|
8
8
|
|
|
9
9
|
- [x] Running Supabase locally
|
|
10
10
|
- [x] Managing database migrations
|
|
11
|
-
- [x]
|
|
12
|
-
- [x] Create and Deploy Supabase Functions
|
|
13
|
-
- [ ] Manage your Supabase Account
|
|
14
|
-
- [x] Manage your Supabase Projects
|
|
11
|
+
- [x] Creating and deploying Supabase Functions
|
|
15
12
|
- [x] Generating types directly from your database schema
|
|
16
|
-
- [
|
|
13
|
+
- [x] Making authenticated HTTP requests to [Management API](https://supabase.com/docs/reference/api/introduction)
|
|
17
14
|
|
|
18
15
|
## Getting started
|
|
19
16
|
|
|
@@ -165,13 +162,15 @@ Command & config reference can be found [here](https://supabase.com/docs/referen
|
|
|
165
162
|
|
|
166
163
|
## Breaking changes
|
|
167
164
|
|
|
168
|
-
|
|
165
|
+
We follow semantic versioning for changes that directly impact CLI commands, flags, and configurations.
|
|
166
|
+
|
|
167
|
+
However, due to dependencies on other service images, we cannot guarantee that schema migrations, seed.sql, and generated types will always work for the same CLI major version. If you need such guarantees, we encourage you to pin a specific version of CLI in package.json.
|
|
169
168
|
|
|
170
169
|
## Developing
|
|
171
170
|
|
|
172
171
|
To run from source:
|
|
173
172
|
|
|
174
173
|
```sh
|
|
175
|
-
# Go >= 1.
|
|
174
|
+
# Go >= 1.22
|
|
176
175
|
go run . help
|
|
177
176
|
```
|