Skip to content

Commit 19c949d

Browse files
authored
chore: add ignore md rules to dev container and fix changelog (#67)
* fix: interpolations erros and other things reported by sourcery-ai * chore: add ignore md rules to dev container and fix changelog
1 parent c80c3ff commit 19c949d

File tree

3 files changed

+64
-66
lines changed

3 files changed

+64
-66
lines changed

.devcontainer/devcontainer.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,13 @@
5353
"--force-grid-wrap=0",
5454
"--use-parentheses",
5555
"--line-width=88",
56-
]
56+
],
57+
"markdownlint.config": {
58+
"MD022": false,
59+
"MD024": false,
60+
"MD032": false,
61+
"MD033": false
62+
}
5763
},
5864
// Add the IDs of extensions you want installed when the container is created.
5965
"extensions": [

CHANGELOG.md

+57-57
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CHANGELOG
1+
# Changelog
22

33
<!--next-version-placeholder-->
44

@@ -8,100 +8,100 @@
88

99
**[See all commits in this version](https://github.com/supabase-community/postgrest-py/compare/v0.7.0...v0.7.1)**
1010

11-
### v0.5.0
11+
## v0.5.0
1212

13-
#### Features
13+
### Features
1414

15-
- Allow setting headers in `PostgrestClient`'s constructor
16-
- Improve `PostgrestClient.auth()` behavior
15+
* Allow setting headers in `PostgrestClient`'s constructor
16+
* Improve `PostgrestClient.auth()` behavior
1717

18-
#### Internal
18+
### Internal
1919

20-
- Require Poetry >= 1.0.0
21-
- Update CI workflow
22-
- Use Dependabot
23-
- Update httpx to v0.19.0
20+
* Require Poetry >= 1.0.0
21+
* Update CI workflow
22+
* Use Dependabot
23+
* Update httpx to v0.19.0
2424

25-
### v0.4.0
25+
## v0.4.0
2626

27-
#### Added
27+
### Added
2828

29-
- Add some tests
30-
- Allow multivalued query parameters
29+
* Add some tests
30+
* Allow multivalued query parameters
3131

32-
#### Changed
32+
### Changed
3333

34-
- Internal changes & improvements
34+
* Internal changes & improvements
3535

36-
### v0.3.2
36+
## v0.3.2
3737

38-
#### Added
38+
### Added
3939

40-
- Use Github Actions
40+
* Use Github Actions
4141

42-
#### Changed
42+
### Changed
4343

44-
- Move to a new home: [supabase/postgrest-py](https://github.com/supabase/postgrest-py)
44+
* Move to a new home: [supabase/postgrest-py](https://github.com/supabase/postgrest-py)
4545

46-
#### Removed
46+
### Removed
4747

48-
- Remove Travis CI
48+
* Remove Travis CI
4949

50-
### v0.3.1
50+
## v0.3.1
5151

52-
#### Removed
52+
### Removed
5353

54-
- Remove dummy test cases
55-
- Remove PyPy3 from Travis CI
54+
* Remove dummy test cases
55+
* Remove PyPy3 from Travis CI
5656

57-
### v0.3.0
57+
## v0.3.0
5858

59-
#### Added
59+
### Added
6060

61-
- Add some basic test cases for `PostgrestClient`
62-
- Use Travis CI
61+
* Add some basic test cases for `PostgrestClient`
62+
* Use Travis CI
6363

64-
#### Changed
64+
### Changed
6565

66-
- Change behavior of `RequestBuilder.filter()`
67-
- Change signature of general filters
66+
* Change behavior of `RequestBuilder.filter()`
67+
* Change signature of general filters
6868

69-
#### Removed
69+
### Removed
7070

71-
- Remove `RequestBuilder.filter_in()` and `RequestBuilder.filter_out()`
71+
* Remove `RequestBuilder.filter_in()` and `RequestBuilder.filter_out()`
7272

73-
#### Fixed
73+
### Fixed
7474

75-
- Fix `PostgrestClient.schema()` not actually work
75+
* Fix `PostgrestClient.schema()` not actually work
7676

77-
### v0.2.0
77+
## v0.2.0
7878

79-
#### Added
79+
### Added
8080

81-
- Support basic authentication
82-
- Support stored procedures (RPC)
83-
- `RequestBuilder.select()` now accepts `columns` as variable-length arguments
84-
- Add `RequestBuilder.not_` getter
85-
- Add `RequestBuilder.ov()`
81+
* Support basic authentication
82+
* Support stored procedures (RPC)
83+
* `RequestBuilder.select()` now accepts `columns` as variable-length arguments
84+
* Add `RequestBuilder.not_` getter
85+
* Add `RequestBuilder.ov()`
8686

87-
#### Changed
87+
### Changed
8888

89-
- Rename `Client` to `PostgrestClient` and deprecate the old name
90-
- Deprecate `PostgrestClient.from_table()`
89+
* Rename `Client` to `PostgrestClient` and deprecate the old name
90+
* Deprecate `PostgrestClient.from_table()`
9191

92-
#### Removed
92+
### Removed
9393

94-
- Remove `RequestBuilder.not_()`
95-
- Remove `RequestBuilder.ova()` and `RequestBuilder.ovr()`
94+
* Remove `RequestBuilder.not_()`
95+
* Remove `RequestBuilder.ova()` and `RequestBuilder.ovr()`
9696

97-
### v0.1.1
97+
## v0.1.1
9898

99-
#### Fixed
99+
### Fixed
100100

101-
- Fix a typo in `Client.from_()`
101+
* Fix a typo in `Client.from_()`
102102

103-
### v0.1.0
103+
## v0.1.0
104104

105-
#### Added
105+
### Added
106106

107-
- Add basic features
107+
* Add basic features

TODO.md

-8
This file was deleted.

0 commit comments

Comments
 (0)