squawk-cli 0.7.2 → 0.8.2
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/CHANGELOG.md +26 -0
- package/README.md +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## v0.8.2 - 2022-01-07
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- errors parsing PG12 and later query syntax by upgrading to PG13 parser (#174)
|
|
15
|
+
- parsing alter constraint statement (#173)
|
|
16
|
+
|
|
17
|
+
## v0.8.1 - 2021-11-30
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- copy pasta of rename-table into the ban-drop-column rule (#168)
|
|
22
|
+
- parsing an index without a name specified (#169)
|
|
23
|
+
|
|
24
|
+
## v0.8.0 - 2021-10-31
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- false positives with disallowed-unique-constraint and adding-serial-primary-key-field. Thanks @qoelet! (#161)
|
|
29
|
+
|
|
30
|
+
## v0.7.3 - 2021-08-11
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
|
|
34
|
+
- false positives with require-concurrent-index rule (#157)
|
|
35
|
+
|
|
10
36
|
## v0.7.2 - 2021-08-02
|
|
11
37
|
|
|
12
38
|
### Fixed
|
package/README.md
CHANGED
|
@@ -144,6 +144,7 @@ See the ["GitHub Integration" docs](https://squawkhq.com/docs/github_app) for mo
|
|
|
144
144
|
- <https://www.postgresql.org/docs/10/sql-altertable.html#SQL-ALTERTABLE-NOTES>
|
|
145
145
|
- <https://www.postgresql.org/docs/current/explicit-locking.html>
|
|
146
146
|
- <https://benchling.engineering/move-fast-and-migrate-things-how-we-automated-migrations-in-postgres-d60aba0fc3d4>
|
|
147
|
+
- <https://medium.com/paypal-tech/postgresql-at-scale-database-schema-changes-without-downtime-20d3749ed680>
|
|
147
148
|
|
|
148
149
|
## dev
|
|
149
150
|
|
|
@@ -157,8 +158,8 @@ cargo run
|
|
|
157
158
|
|
|
158
159
|
### releasing a new version
|
|
159
160
|
|
|
160
|
-
1. update the CHANGELOG.md and bump version in
|
|
161
|
-
|
|
161
|
+
1. update the CHANGELOG.md and bump version in the cli `Cargo.toml`, ensure the
|
|
162
|
+
lock file is updated, and update `package.json` and commit the changes
|
|
162
163
|
|
|
163
164
|
```bash
|
|
164
165
|
# update version in Cargo.toml files and package.json to 4.5.3
|