supabase 1.157.2 → 1.157.4

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.
Files changed (2) hide show
  1. package/README.md +6 -7
  2. 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] Pushing your local changes to production
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
- - [ ] Generating API and validation schemas from your database
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
- The CLI is a WIP and we're still exploring the design, so expect a lot of breaking changes. We try to document migration steps in [Releases](https://github.com/supabase/cli/releases). Please file an issue if these steps don't work!
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.20
174
+ # Go >= 1.22
176
175
  go run . help
177
176
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supabase",
3
- "version": "1.157.2",
3
+ "version": "1.157.4",
4
4
  "description": "Supabase CLI",
5
5
  "repository": "supabase/cli",
6
6
  "homepage": "https://supabase.com/docs/reference/cli",