squawk-cli 1.5.5__py3-none-macosx_10_12_x86_64.whl → 1.6.1__py3-none-macosx_10_12_x86_64.whl
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.
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: squawk-cli
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.6.1
|
4
4
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
5
5
|
Classifier: Operating System :: MacOS
|
6
6
|
Classifier: Operating System :: Microsoft :: Windows
|
@@ -193,13 +193,13 @@ See the ["GitHub Integration" docs](https://squawkhq.com/docs/github_app) for mo
|
|
193
193
|
Integrate Squawk into Git workflow with [pre-commit](https://pre-commit.com/). Add the following
|
194
194
|
to your project's `.pre-commit-config.yaml`:
|
195
195
|
|
196
|
-
```
|
196
|
+
```yaml
|
197
197
|
repos:
|
198
198
|
- repo: https://github.com/sbdchd/squawk
|
199
199
|
rev: v0.10.0
|
200
200
|
hooks:
|
201
|
-
|
202
|
-
|
201
|
+
- id: squawk
|
202
|
+
files: path/to/postgres/migrations/written/in/sql
|
203
203
|
```
|
204
204
|
|
205
205
|
Note the `files` parameter as it specifies the location of the files to be linted.
|
@@ -217,6 +217,7 @@ Note the `files` parameter as it specifies the location of the files to be linte
|
|
217
217
|
- <https://github.com/AdmTal/PostgreSQL-Query-Lock-Explainer>
|
218
218
|
- <https://github.com/stripe/pg-schema-diff>
|
219
219
|
- <https://github.com/kristiandupont/schemalint>
|
220
|
+
- <https://github.com/supabase-community/postgres-language-server>
|
220
221
|
|
221
222
|
## related blog posts / SE Posts / PG Docs
|
222
223
|
|
@@ -261,22 +262,20 @@ s/new-rule 'prefer big serial'
|
|
261
262
|
|
262
263
|
### releasing a new version
|
263
264
|
|
264
|
-
1.
|
265
|
-
|
265
|
+
1. Update the `CHANGELOG.md`
|
266
|
+
|
267
|
+
Include a description of any fixes / additions. Make sure to include the PR numbers and credit the authors.
|
268
|
+
|
269
|
+
2. Run `s/update-version`
|
266
270
|
|
267
271
|
```bash
|
268
|
-
# update version in Cargo.toml
|
272
|
+
# update version in cli/Cargo.toml, package.json, flake.nix to 4.5.3
|
269
273
|
s/update-version 4.5.3
|
270
274
|
```
|
271
275
|
|
272
|
-
|
273
|
-
3. wait for build artifacts to be attached to release.
|
274
|
-
4. login to `npm` and publish new version.
|
276
|
+
3. Create a new release on GitHub
|
275
277
|
|
276
|
-
|
277
|
-
npm login
|
278
|
-
npm publish
|
279
|
-
```
|
278
|
+
Use the text and version from the `CHANGELOG.md`
|
280
279
|
|
281
280
|
### algolia
|
282
281
|
|
@@ -0,0 +1,4 @@
|
|
1
|
+
squawk_cli-1.6.1.dist-info/METADATA,sha256=nyHE6hIEDeD4cfj-1CEKm1oIbuWhFr5-0FGPlUakjSM,8853
|
2
|
+
squawk_cli-1.6.1.dist-info/WHEEL,sha256=iynIFuruP98iAQ_vbgENee_L7CnfkfNjTMl4i53tE2Q,103
|
3
|
+
squawk_cli-1.6.1.data/scripts/squawk,sha256=84XAsr8C8c456aZrwjKzkmcWNPXCdSkH_cSEyB9QvWs,7779524
|
4
|
+
squawk_cli-1.6.1.dist-info/RECORD,,
|
@@ -1,4 +0,0 @@
|
|
1
|
-
squawk_cli-1.5.5.dist-info/METADATA,sha256=zRlczbzqQwzVhEPzpn1EpL7e80x60M74Wi88SoPBE-I,8895
|
2
|
-
squawk_cli-1.5.5.dist-info/WHEEL,sha256=iynIFuruP98iAQ_vbgENee_L7CnfkfNjTMl4i53tE2Q,103
|
3
|
-
squawk_cli-1.5.5.data/scripts/squawk,sha256=CIcKbaAbXVoacN2zEmlKu4fKI9s9z1OpMpFxtlwEdEE,7758436
|
4
|
-
squawk_cli-1.5.5.dist-info/RECORD,,
|
File without changes
|