Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump tempfile from 3.18.0 to 3.19.0 #842

Merged
merged 2 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. Dates are d

#### [Unreleased](https://github.com/hougesen/mdsf/compare/v0.8.1...HEAD)

- build(deps): bump tempfile from 3.18.0 to 3.19.0 [`#842`](https://github.com/hougesen/mdsf/pull/842)
- build(deps): bump reqwest from 0.12.13 to 0.12.14 [`#841`](https://github.com/hougesen/mdsf/pull/841)
- test(tools): add test for oxlint [`#840`](https://github.com/hougesen/mdsf/pull/840)
- build(deps): bump reqwest from 0.12.12 to 0.12.13 [`#839`](https://github.com/hougesen/mdsf/pull/839)

#### [v0.8.1](https://github.com/hougesen/mdsf/compare/v0.8.0...v0.8.1)
Expand Down
5 changes: 2 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_yaml = { version = "0.9.34" }
sha2 = "0.10.8"
tempfile = "3.18.0"
tempfile = "3.19.0"
terminal_size = "0.4.1"
test-with = { version = "0.14.8", default-features = false, features = [
"executable",
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lint-aggressive:
cargo clean

test:
RUST_BACKTRACE=full cargo nextest run --all-targets --all-features --release
RUST_BACKTRACE=full cargo nextest run --all-targets --all-features --no-fail-fast --release

test-coverage:
cargo llvm-cov clean
Expand Down
5 changes: 2 additions & 3 deletions mdsf/src/tools/hurlfmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ pub const IS_STDIN: bool = false;
#[cfg(test)]
mod test_hurlfmt {
#[test_with::executable(hurlfmt)]
fn test_hurlfmt_hurl_854a543be0e12a7f() {
fn test_hurlfmt_hurl_cc8490154955ef91() {
let input = r#" GET https://example.ord/cats/123 "#;

let output = r#"GET https://example.ord/cats/123
"#;
let output = r#"GET https://example.ord/cats/123"#;

let file_ext = crate::fttype::get_file_extension("hurl");

Expand Down
3 changes: 2 additions & 1 deletion mdsf/src/tools/mago_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ pub const IS_STDIN: bool = false;
#[cfg(test)]
mod test_mago_format {
#[test_with::executable(mago)]
fn test_mago_format_php_b59dd7491a008d86() {
fn test_mago_format_php_17cf4527911d3cc9() {
let input = r#"<?php
echo "Hello World!";
?>"#;

let output = r#"<?php

echo 'Hello World!';
"#;

Expand Down
2 changes: 1 addition & 1 deletion tools/hurlfmt/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"language": "hurl",
"test_input": " GET https://example.ord/cats/123 ",
"test_output": "GET https://example.ord/cats/123\n"
"test_output": "GET https://example.ord/cats/123"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion tools/mago/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"language": "php",
"test_input": "<?php\necho \"Hello World!\";\n?>",
"test_output": "<?php\necho 'Hello World!';\n"
"test_output": "<?php\n\necho 'Hello World!';\n"
}
]
},
Expand Down
Loading