forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutil.py
More file actions
346 lines (300 loc) · 12.8 KB
/
util.py
File metadata and controls
346 lines (300 loc) · 12.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#!/usr/bin/env python
"""Utility strings for use during deployment.
NB: This is not part of the core sqlfluff code.
"""
# This contains various utility scripts
import os
import re
import shutil
import subprocess
import time
import click
from fastcore.net import HTTPError
from ghapi.all import GhApi
@click.group()
def cli():
"""Launch the utility cli."""
pass
@cli.command()
@click.option("--path", default=".test-reports")
def clean_tests(path):
"""Clear up the tests directory.
NB: Using scripts allows platform independence
Makes a new one afterward
"""
try:
shutil.rmtree(path)
click.echo(f"Removed {path!r}...")
# OSError is for python 27
# in py36 its FileNotFoundError (but that inherits from IOError, which exists in
# py27)
except OSError:
click.echo(f"Directory {path!r} does not exist. Skipping...")
os.mkdir(path)
click.echo(f"Created {path!r}")
def convert_pep440_to_semver(version: str) -> str:
"""Convert Python PEP 440 version to Rust SemVer format.
Maturin automatically converts SemVer back to PEP 440 for Python packages.
See: https://www.maturin.rs/metadata.html
Examples:
4.0.0a1 -> 4.0.0-alpha.1
4.0.0b2 -> 4.0.0-beta.2
4.0.0rc3 -> 4.0.0-rc.3
4.0.0 -> 4.0.0 (stable versions unchanged)
"""
# Match PEP 440 pre-release versions: X.Y.Z{a|b|rc}N
pep440_pattern = r"^(\d+\.\d+\.\d+)(a|b|rc)(\d+)$"
match = re.match(pep440_pattern, version)
if not match:
# Not a pre-release or doesn't match pattern, return as-is
return version
base_version, pre_type, pre_num = match.groups()
# Map PEP 440 pre-release identifiers to SemVer
pre_type_map = {"a": "alpha", "b": "beta", "rc": "rc"}
semver_pre_type = pre_type_map.get(pre_type, pre_type)
return f"{base_version}-{semver_pre_type}.{pre_num}"
def check_cargo_installed():
"""Check if cargo is installed and available.
Returns:
bool: True if cargo is installed, False otherwise.
"""
try:
result = subprocess.run(
["cargo", "--version"],
capture_output=True,
text=True,
check=False,
)
return result.returncode == 0
except FileNotFoundError:
return False
@cli.command()
@click.argument("new_version_num")
def release(new_version_num):
"""Change version number in the cfg files.
NOTE: For fine grained personal access tokens, this requires
_write_ access to the "contents" scope. For dome reason, if you
only grant the _read_ access, you can't see any *draft* PRs
which are necessary for this script to run.
"""
api = GhApi(
owner=os.environ["GITHUB_REPOSITORY_OWNER"],
repo="sqlfluff",
token=os.environ["GITHUB_TOKEN"],
)
try:
releases = api.repos.list_releases(per_page=100)
except HTTPError as err:
raise click.UsageError(
"HTTP Error from GitHub API. Check your credentials.\n"
"(i.e. GITHUB_REPOSITORY_OWNER & GITHUB_TOKEN)\n"
f"{err}"
)
latest_draft_release = None
for rel in releases:
if rel["draft"]:
latest_draft_release = rel
break
if not latest_draft_release:
raise click.UsageError(
"No draft release found on GitHub.\n"
"This could be because the GitHub action which generates it is broken, "
"but is more likely due to using an API token which only has read-only "
"access to the `sqlfluff/sqlfluff` repository. This script requires an "
"API token with `read and write` access to the `contents` scope in "
"order to be able to view draft releases."
)
# Pre-releases are identifiable because they contain letters.
# https://peps.python.org/pep-0440/
is_pre_release = any(char.isalpha() for char in new_version_num)
click.echo(
f"Preparing for release {new_version_num}. (Pre-release: {is_pre_release})"
)
# Linkify the PRs and authors
draft_body_parts = latest_draft_release["body"].split("\n")
potential_new_contributors = []
for i, p in enumerate(draft_body_parts):
draft_body_parts[i] = re.sub(
r"\(#([0-9]*)\) @([^ ]*)$",
r"[#\1](https://github.com/sqlfluff/sqlfluff/pull/\1) [@\2](https://github.com/\2)", # noqa E501
p,
)
new_contrib_string = re.sub(
r".*\(#([0-9]*)\) @([^ ]*)$",
r"* [@\2](https://github.com/\2) made their first contribution in [#\1](https://github.com/sqlfluff/sqlfluff/pull/\1)", # noqa E501
p,
)
if new_contrib_string.startswith("* "):
new_contrib_name = re.sub(r"\* \[(.*?)\].*", r"\1", new_contrib_string)
potential_new_contributors.append(
{"name": new_contrib_name, "line": new_contrib_string}
)
whats_changed_text = "\n".join(draft_body_parts)
# Find the first commit for each contributor in this release
potential_new_contributors.reverse()
seen_contributors = set()
deduped_potential_new_contributors = []
for c in potential_new_contributors:
if c["name"] not in seen_contributors:
seen_contributors.add(c["name"])
deduped_potential_new_contributors.append(c)
click.echo("Updating CHANGELOG.md...")
input_changelog = open("CHANGELOG.md", encoding="utf8").readlines()
write_changelog = open("CHANGELOG.md", "w", encoding="utf8")
for i, line in enumerate(input_changelog):
write_changelog.write(line)
if "DO NOT DELETE THIS LINE" in line:
existing_entry_start = i + 2
new_heading = f"## [{new_version_num}] - {time.strftime('%Y-%m-%d')}\n"
# If the release is already in the changelog, update it
if f"## [{new_version_num}]" in input_changelog[existing_entry_start]:
click.echo(f"...found existing entry for {new_version_num}")
# Update the existing heading with the new date.
input_changelog[existing_entry_start] = new_heading
# Delete the existing What’s Changed and New Contributors sections
remaining_changelog = input_changelog[existing_entry_start:]
existing_whats_changed_start = (
next(
j
for j, line in enumerate(remaining_changelog)
if line.startswith("## What’s Changed")
)
+ existing_entry_start
)
existing_new_contributors_start = (
next(
j
for j, line in enumerate(remaining_changelog)
if line.startswith("## New Contributors")
)
+ existing_entry_start
)
existing_new_contributors_length = (
next(
j
for j, line in enumerate(
input_changelog[existing_new_contributors_start:]
)
if line.startswith("## [")
)
- 1
)
del input_changelog[
existing_whats_changed_start : existing_new_contributors_start
+ existing_new_contributors_length
]
# Now that we've cleared the previous sections, we will accurately
# find if contributors have been previously mentioned in the changelog
new_contributor_lines = []
input_changelog_str = "".join(
input_changelog[existing_whats_changed_start:]
)
for c in deduped_potential_new_contributors:
if c["name"] not in input_changelog_str:
new_contributor_lines.append(c["line"])
input_changelog[existing_whats_changed_start] = (
whats_changed_text
+ "\n\n## New Contributors\n"
+ "\n".join(new_contributor_lines)
+ "\n\n"
)
else:
click.echo(f"...creating new entry for {new_version_num}")
write_changelog.write(f"\n{new_heading}\n## Highlights\n\n")
write_changelog.write(whats_changed_text)
write_changelog.write("\n## New Contributors\n\n")
# Ensure contributor names don't appear in input_changelog list
new_contributor_lines = []
input_changelog_str = "".join(input_changelog)
for c in deduped_potential_new_contributors:
if c["name"] not in input_changelog_str:
new_contributor_lines.append(c["line"])
write_changelog.write("\n".join(new_contributor_lines))
write_changelog.write("\n")
write_changelog.close()
click.echo("Updating plugins/sqlfluff-templater-dbt/pyproject.toml")
for filename in ["plugins/sqlfluff-templater-dbt/pyproject.toml"]:
# NOTE: Toml files are always encoded in UTF-8.
input_file = open(filename, "r", encoding="utf-8").readlines()
# Regardless of platform, write newlines as \n
write_file = open(filename, "w", encoding="utf-8", newline="\n")
for line in input_file:
if line.startswith("version"):
line = f'version = "{new_version_num}"\n'
elif line.startswith(' "sqlfluff=='):
line = f' "sqlfluff=={new_version_num}",\n'
write_file.write(line)
write_file.close()
click.echo("Updating sqlfluffrs/Cargo.toml")
filename = "sqlfluffrs/Cargo.toml"
# Convert Python PEP 440 version to Rust SemVer format
# Maturin will automatically convert this back to PEP 440 for the Python package
rust_version = convert_pep440_to_semver(new_version_num)
click.echo(f" Converting version: {new_version_num} -> {rust_version} (SemVer)")
# NOTE: Toml files are always encoded in UTF-8.
input_file = open(filename, "r", encoding="utf-8").readlines()
# Regardless of platform, write newlines as \n
write_file = open(filename, "w", encoding="utf-8", newline="\n")
for line in input_file:
if line.startswith("version"):
line = f'version = "{rust_version}"\n'
write_file.write(line)
write_file.close()
# Update Cargo.lock via `cargo check`
if check_cargo_installed():
click.echo("Running cargo check to update Cargo.lock...")
result = subprocess.run(
["cargo", "check"],
cwd="sqlfluffrs",
capture_output=True,
text=True,
check=False,
)
if result.returncode == 0:
click.echo("✓ Rust cargo check complete")
else:
click.echo("✗ Rust cargo check failed:")
if result.stdout:
click.echo(result.stdout)
if result.stderr:
click.echo(result.stderr)
else:
click.echo("Error: cargo not installed, unable to update Cargo.lock")
keys = ["version"]
if not is_pre_release:
# Only update stable_version if it's not a pre-release.
keys.append("stable_version")
click.echo("Updating pyproject.toml")
for filename in ["pyproject.toml"]:
input_file = open(filename, "r", encoding="utf-8").readlines()
# Regardless of platform, write newlines as \n
write_file = open(filename, "w", encoding="utf-8", newline="\n")
for line in input_file:
for key in keys:
if line.startswith(key):
# For pyproject.toml we quote the version identifier.
line = f'{key} = "{new_version_num}"\n'
break
# Update sqlfluffrs dependency version
if line.startswith('rs = ["sqlfluffrs'):
line = f'rs = ["sqlfluffrs=={new_version_num}"]\n'
write_file.write(line)
write_file.close()
if not is_pre_release:
click.echo("Updating gettingstarted.rst")
for filename in ["docs/source/gettingstarted.rst"]:
input_file = open(filename, "r").readlines()
# Regardless of platform, write newlines as \n
write_file = open(filename, "w", newline="\n")
change_next_line = False
for line in input_file:
if change_next_line:
line = f" {new_version_num}\n"
change_next_line = False
elif line.startswith(" $ sqlfluff version"):
change_next_line = True
write_file.write(line)
write_file.close()
click.echo("DONE")
if __name__ == "__main__":
cli()