supabase 1.65.0 → 1.66.0

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +71 -59
  3. package/package.json +2 -1
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Bobbie Soedirgo
3
+ Copyright (c) 2021 Supabase, Inc. and contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -19,109 +19,121 @@ This repository contains all the functionality for Supabase CLI.
19
19
 
20
20
  ### Install the CLI
21
21
 
22
- #### NodeJS
23
-
24
22
  Available via [NPM](https://www.npmjs.com) as dev dependency. To install:
25
23
 
26
24
  ```bash
27
25
  npm i supabase --save-dev
28
26
  ```
29
27
 
30
- To run:
28
+ To install the beta release channel:
31
29
 
32
30
  ```bash
33
- npx supabase -h
31
+ npm i supabase@beta --save-dev
34
32
  ```
35
33
 
36
- #### macOS
34
+ <details>
35
+ <summary><b>macOS</b></summary>
37
36
 
38
- Available via [Homebrew](https://brew.sh). To install:
37
+ Available via [Homebrew](https://brew.sh). To install:
39
38
 
40
- ```sh
41
- brew install supabase/tap/supabase
42
- ```
39
+ ```sh
40
+ brew install supabase/tap/supabase
41
+ ```
43
42
 
44
- To upgrade:
43
+ To upgrade:
45
44
 
46
- ```sh
47
- brew upgrade supabase
48
- ```
45
+ ```sh
46
+ brew upgrade supabase
47
+ ```
48
+ </details>
49
49
 
50
- #### Windows
50
+ <details>
51
+ <summary><b>Windows</b></summary>
51
52
 
52
- Available via [Scoop](https://scoop.sh). To install:
53
+ Available via [Scoop](https://scoop.sh). To install:
53
54
 
54
- ```powershell
55
- scoop bucket add supabase https://github.com/supabase/scoop-bucket.git
56
- scoop install supabase
57
- ```
55
+ ```powershell
56
+ scoop bucket add supabase https://github.com/supabase/scoop-bucket.git
57
+ scoop install supabase
58
+ ```
58
59
 
59
- To upgrade:
60
+ To upgrade:
60
61
 
61
- ```powershell
62
- scoop update supabase
63
- ```
62
+ ```powershell
63
+ scoop update supabase
64
+ ```
65
+ </details>
64
66
 
65
- #### Linux
67
+ <details>
68
+ <summary><b>Linux</b></summary>
66
69
 
67
- Available via [Homebrew](https://brew.sh) and Linux packages.
70
+ Available via [Homebrew](https://brew.sh) and Linux packages.
68
71
 
69
- ##### via Homebrew
72
+ #### via Homebrew
70
73
 
71
- To install:
74
+ To install:
72
75
 
73
- ```sh
74
- brew install supabase/tap/supabase
75
- ```
76
+ ```sh
77
+ brew install supabase/tap/supabase
78
+ ```
76
79
 
77
- To upgrade:
80
+ To upgrade:
78
81
 
79
- ```sh
80
- brew upgrade supabase
81
- ```
82
+ ```sh
83
+ brew upgrade supabase
84
+ ```
82
85
 
83
- ##### via Linux packages
86
+ #### via Linux packages
84
87
 
85
- Linux packages are provided in [Releases](https://github.com/supabase/cli/releases). To install, download the `.apk`/`.deb`/`.rpm`/`.pkg.tar.zst` file depending on your package manager and run the respective commands.
88
+ Linux packages are provided in [Releases](https://github.com/supabase/cli/releases). To install, download the `.apk`/`.deb`/`.rpm`/`.pkg.tar.zst` file depending on your package manager and run the respective commands.
86
89
 
87
- ```sh
88
- sudo apk add --allow-untrusted <...>.apk
89
- ```
90
+ ```sh
91
+ sudo apk add --allow-untrusted <...>.apk
92
+ ```
90
93
 
91
- ```sh
92
- sudo dpkg -i <...>.deb
93
- ```
94
+ ```sh
95
+ sudo dpkg -i <...>.deb
96
+ ```
94
97
 
95
- ```sh
96
- sudo rpm -i <...>.rpm
97
- ```
98
+ ```sh
99
+ sudo rpm -i <...>.rpm
100
+ ```
98
101
 
99
- ```sh
100
- sudo pacman -U <...>.pkg.tar.zst
101
- ```
102
+ ```sh
103
+ sudo pacman -U <...>.pkg.tar.zst
104
+ ```
105
+ </details>
102
106
 
103
- #### Other Platforms
107
+ <details>
108
+ <summary><b>Other Platforms</b></summary>
104
109
 
105
- You can also install the CLI via [go modules](https://go.dev/ref/mod#go-install) without the help of package managers.
110
+ You can also install the CLI via [go modules](https://go.dev/ref/mod#go-install) without the help of package managers.
106
111
 
107
- ```sh
108
- go install github.com/supabase/cli@latest
109
- ```
112
+ ```sh
113
+ go install github.com/supabase/cli@latest
114
+ ```
110
115
 
111
- Add a symlink to the binary in `$PATH` for easier access:
116
+ Add a symlink to the binary in `$PATH` for easier access:
112
117
 
113
- ```sh
114
- ln -s "$(go env GOPATH)/cli" /usr/bin/supabase
115
- ```
118
+ ```sh
119
+ ln -s "$(go env GOPATH)/cli" /usr/bin/supabase
120
+ ```
116
121
 
117
- This works on other non-standard Linux distros.
122
+ This works on other non-standard Linux distros.
123
+ </details>
118
124
 
119
125
  ### Run the CLI
120
126
 
121
- ```sh
127
+ ```bash
122
128
  supabase help
123
129
  ```
124
130
 
131
+ Or using npx:
132
+
133
+ ```bash
134
+ npx supabase help
135
+ ```
136
+
125
137
  ## Docs
126
138
 
127
139
  Command & config reference can be found [here](https://supabase.com/docs/reference/cli/about).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supabase",
3
- "version": "1.65.0",
3
+ "version": "1.66.0",
4
4
  "description": "Supabase CLI",
5
5
  "repository": "supabase/cli",
6
6
  "homepage": "https://supabase.com/docs/reference/cli",
@@ -27,6 +27,7 @@
27
27
  },
28
28
  "release": {
29
29
  "branches": [
30
+ "+([0-9])?(.{+([0-9]),x}).x",
30
31
  {
31
32
  "name": "main",
32
33
  "channel": "beta"