Skip to content

Commit 608391d

Browse files
Merge pull request #101 from krishnprakash/dependabot/npm_and_yarn/prettier-plugin-tailwindcss-0.6.11
[Docs Site] Bump prettier-plugin-tailwindcss from 0.6.9 to 0.6.11
2 parents 518e8f8 + e2e898f commit 608391d

File tree

3 files changed

+79
-27
lines changed

3 files changed

+79
-27
lines changed

package-lock.json

Lines changed: 75 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"parse-duration": "2.1.3",
8686
"prettier": "3.5.3",
8787
"prettier-plugin-astro": "0.14.1",
88-
"prettier-plugin-tailwindcss": "0.6.9",
88+
"prettier-plugin-tailwindcss": "0.6.11",
8989
"pretty-bytes": "6.1.1",
9090
"react": "19.0.0",
9191
"react-dom": "19.0.0",

public/cloudflare-one/static/authenticated-doh.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ def request_doh_token(account_tag, user_id, client_id, client_secret):
6969
'-H', f"Cf-Access-Client-Id: {client_id}",
7070
'-H', f"Cf-Access-Client-Secret: {client_secret}"]
7171
if verbose:
72-
print(f"Issuing request {' '.join(command)}")
72+
sanitized_command = [part if "Cf-Access-Client-Secret" not in part else "Cf-Access-Client-Secret: [REDACTED]" for part in command]
73+
print(f"Issuing request {' '.join(sanitized_command)}")
7374
response = json.loads(subprocess.check_output(command))
7475
if verbose:
7576
print("Got response:")
@@ -145,8 +146,7 @@ def request(method, url, body):
145146
if client_id == "new":
146147
service_token_name = input('Please input name for service token > ')
147148
client_id, client_secret = request_create_service_token(service_token_name)
148-
print(
149-
f"Created service token with client_id {client_id} and client_secret {client_secret}. You may want to save these secrets.")
149+
print("Created service token. Please save the client_secret securely.")
150150

151151

152152
if len(client_secret) == 0:

0 commit comments

Comments
 (0)