chore(deps): bump the cargo-all-dependencies group across 1 directory with 10 updates
Bumps the cargo-all-dependencies group with 10 updates in the / directory:
| Package | From | To |
|---|---|---|
| swc_common | 0.36.3 |
0.37.2 |
| swc_ecma_ast | 0.117.4 |
0.118.1 |
| swc_ecma_parser | 0.148.3 |
0.149.0 |
| clap | 3.2.25 |
4.5.15 |
| serde | 1.0.204 |
1.0.207 |
| serde_json | 1.0.122 |
1.0.124 |
| sqlparser | 0.45.0 |
0.49.0 |
| mysql_async | 0.34.1 |
0.34.2 |
| assert_cmd | 2.0.15 |
2.0.16 |
| tempfile | 3.11.0 |
3.12.0 |
Updates swc_common from 0.36.3 to 0.37.2
Commits
- See full diff in compare view
Updates swc_ecma_ast from 0.117.4 to 0.118.1
Commits
- See full diff in compare view
Updates swc_ecma_parser from 0.148.3 to 0.149.0
Commits
- See full diff in compare view
Updates clap from 3.2.25 to 4.5.15
Release notes
Sourced from clap's releases.
v4.5.15
[4.5.15] - 2024-08-10
Compatiblity
- (unstable-ext)
Arg::removechanged return typesFixes
- (unstable-ext) Make
Arg::removereturn the removed itemv4.5.14
[4.5.14] - 2024-08-08
Features
- (unstable-ext) Added
Arg::addfor attaching arbitrary state, like completion hints, toArgwithoutArgknowing about itv4.5.13
[4.5.13] - 2024-07-31
Fixes
- (derive) Improve error message when
#[flatten]ing an optional#[group(skip)]- (help) Properly wrap long subcommand descriptions in help
v4.5.12
[4.5.12] - 2024-07-31
v4.5.10
[4.5.10] - 2024-07-23
v4.5.9
[4.5.9] - 2024-07-09
Fixes
- (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
v4.5.8
[4.5.8] - 2024-06-28
Fixes
- Reduce extra flushes
v4.5.7
[4.5.7] - 2024-06-10
Fixes
... (truncated)
Changelog
Sourced from clap's changelog.
[4.5.15] - 2024-08-10
Compatiblity
- (unstable-ext)
Arg::removechanged return typesFixes
- (unstable-ext) Make
Arg::removereturn the removed item[4.5.14] - 2024-08-08
Features
- (unstable-ext) Added
Arg::addfor attaching arbitrary state, like completion hints, toArgwithoutArgknowing about it[4.5.13] - 2024-07-31
Fixes
- (derive) Improve error message when
#[flatten]ing an optional#[group(skip)]- (help) Properly wrap long subcommand descriptions in help
[4.5.12] - 2024-07-31
[4.5.11] - 2024-07-25
[4.5.10] - 2024-07-23
[4.5.9] - 2024-07-09
Fixes
- (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
[4.5.8] - 2024-06-28
Fixes
- Reduce extra flushes
[4.5.7] - 2024-06-10
Fixes
- Clean up error message when too few arguments for
num_args[4.5.6] - 2024-06-06
[4.5.5] - 2024-06-06
... (truncated)
Commits
050b6c5chore: Release5e61bd4docs: Update changelog6f88091Merge pull request #5671 from epage/envc402ec6feat(complete): Env hook for dynamic completions6288e11test(complete): Specialize tests84cfd92Merge pull request #5667 from a-kenji/fix-typo70d8334Merge pull request #5669 from epage/reorgcddbb56fix(complete): Correct version check6374053style: Order fn attributesf75251ffix(complete)!: Rename shells to command- Additional commits viewable in compare view
Updates serde from 1.0.204 to 1.0.207
Release notes
Sourced from serde's releases.
v1.0.207
- Improve interactions between
flattenattribute andskip_serializing/skip_deserializing(#2795, thanks@Mingun)v1.0.206
v1.0.205
Commits
1b4da41Release 1.0.207f61d452Touch up PR 2795f986609Merge pull request #2795 from Mingun/has-flatten-rework77a6a9dTake into account only not skipped flatten fields when choose serialization form547d843Remove dead code - serialize_struct_as_map always called when cattrs.has_flat...005cb84Fail with an understandable message is number of fields for serialization is ...fd5b5e9Correctly calculatehas_flattenattribute in all cases for deserialization0647a7cFix creating and filling a collections that was not read85c73efRelease 1.0.2065ba1796Resolve doc_markdown pedantic lint on regression test function- Additional commits viewable in compare view
Updates serde_json from 1.0.122 to 1.0.124
Release notes
Sourced from serde_json's releases.
v1.0.124
- Fix a bug in processing string escapes in big-endian architectures (#1173, thanks
@purplesyringa)v1.0.123
- Optimize string parsing by applying SIMD-within-a-register: 30.3% improvement on twitter.json from 613 MB/s to 799 MB/s (#1161, thanks
@purplesyringa)
Commits
cf771a0Release 1.0.1248b314a7Merge pull request #1173 from iex-rs/fix-big-endian8eba786Fix skip_to_escape on BE architectures2cab07eRelease 1.0.123346189aFix needless_borrow clippy lint in new control character test859ead8Merge pull request #1161 from iex-rs/vectorized-string-parsinge43da5eImmediately bail-out on empty strings8389d8aDon't run the slow algorithm from the beginning1f0dcf7Allow clippy::items_after_statementsa95d6dfBig endian support- Additional commits viewable in compare view
Updates sqlparser from 0.45.0 to 0.49.0
Changelog
Sourced from sqlparser's changelog.
[0.49.0] 2024-07-23
As always, huge props to
@iffyio@jmhainand@lovasoafor their help reviewing and merging PRs!We are in the process of moving sqlparser to governed as part of the Apache DataFusion project: sqlparser-rs/sqlparser-rs#1294
Fixed
- Fix quoted identifier regression edge-case with "from" in SELECT (#1346) - Thanks
@alexander-beedie- Fix
ASquery clause should be after the create table options (#1339) - Thanks@git-hulkAdded
- Support
MATERIALIZED/ALIAS/EPHERMERALdefault column options for ClickHouse (#1348) - Thanks@git-hulk- Support
()as theGROUP BYnothing (#1347) - Thanks@git-hulk- Support Map literal syntax for DuckDB and Generic (#1344) - Thanks
@goldmedal- Support subquery expression in
SETexpressions (#1343) - Thanks@iffyio- Support
WITH FILLfor ClickHouse (#1330) - Thanks@nickpresta- Support
PARTITION BYfor PostgreSQL inCREATE TABLEstatement (#1338) - Thanks@git-hulk- Support of table function
WITH ORDINALITYmodifier for Postgres (#1337) - Thanks@git-hulk[0.48.0] 2024-07-09
Huge shout out to
@iffyio@jmhainand@lovasoafor their help reviewing and merging PRs!Fixed
- Fix CI error message in CI (#1333) - Thanks
@alamb- Fix typo in sqlparser-derive README (#1310) - Thanks
@leoyvens- Re-enable trailing commas in DCL (#1318) - Thanks
@MohamedAbdeen21- Fix a few typos in comment lines (#1316) - Thanks
@git-hulk- Fix Snowflake
SELECT * wildcard REPLACE ... RENAMEorder (#1321) - Thanks@alexander-beedie- Allow semi-colon at the end of UNCACHE statement (#1320) - Thanks
@LorrensP-2158466- Return errors, not panic, when integers fail to parse in
AUTO_INCREMENTandTOP(#1305) - Thanks@eejbyfeldtAdded
- Support
OWNER TOclause in Postgres (#1314) - Thanks@gainings- Support
FORMATclause for ClickHouse (#1335) - Thanks@git-hulk- Support
DROP PROCEDUREstatement (#1324) - Thanks@LorrensP-2158466- Support
PREWHEREcondition for ClickHouse dialect (#1328) - Thanks@git-hulk- Support
SETTINGSpairs for ClickHouse dialect (#1327) - Thanks@git-hulk- Support
GROUP BY WITH MODIFIERfor ClickHouse dialect (#1323) - Thanks@git-hulk- Support DuckDB Union datatype (#1322) - Thanks
@gstvg- Support parametric arguments to
FUNCTIONfor ClickHouse dialect (#1315) - Thanks@git-hulk- Support
TOinCREATE VIEWclause for Clickhouse (#1313) - Thanks@Bidaya0- Support
UPDATEstatements that contain tuple assignments (#1317) - Thanks@lovasoa- Support `BY NAME quantifier across all set ops (#1309) - Thanks
@alexander-beedie- Support SnowFlake exclusive
CREATE TABLEoptions (#1233) - Thanks@balliegojr- Support ClickHouse
CREATE TABLEwith primary key and parametrised table engine (#1289) - Thanks@7phs- Support custom operators in Postgres (#1302) - Thanks
@lovasoa- Support ClickHouse data types (#1285) - Thanks
@7phs
... (truncated)
Commits
6c64d43chore: Release sqlparser version 0.49.01e82a14Add CHANGELOG for 0.49.0 (#1350)390d4d3Add support of MATERIALIZED/ALIAS/EPHERMERAL default column options for Click...b27abf0Allow to use()as the GROUP BY nothing (#1347)48ea564Support Map literal syntax for DuckDB and Generic (#1344)71dc966Fix quoted identifier regression edge-case with "from" in SELECT (#1346)028ada8Support subquery expression in SET expressions (#1343)845a1aa[ClickHouse] Add support for WITH FILL to OrderByExpr (#1330)20f7ac5Fix AS query clause should be after the create table options (#1339)993216fEnable PARTITION BY feature for PostgreSQL while parsing the create table sta...- Additional commits viewable in compare view
Updates mysql_async from 0.34.1 to 0.34.2
Release notes
Sourced from mysql_async's releases.
v0.34.2
What's Changed
- Add support to specify pre-resolved IP addresses for the connection & avoid a DNS lookup by
@rjobanpin blackbeam/mysql_async#300- Compatibility with non-Unix and non-Windows platforms. by
@L-jasminein blackbeam/mysql_async#301- Replace lazy_static & once_cell with std::sync::OnceLock by
@serprexin blackbeam/mysql_async#302- conn: handle initial error packet correctly by
@petrosaggin blackbeam/mysql_async#307- Update dependencies by
@westy92in blackbeam/mysql_async#313New Contributors
@L-jasminemade their first contribution in blackbeam/mysql_async#301@serprexmade their first contribution in blackbeam/mysql_async#302@westy92made their first contribution in blackbeam/mysql_async#313Full Changelog: https://github.com/blackbeam/mysql_async/compare/v0.34.1...v0.34.2
Commits
091286cBump micro version5bd5c1eRemove explicit mio dependencye15a023Merge pull request #313 from westy92/update-mioa16384fUpdate dependencies.125aebeMerge pull request #307 from petrosagg/initial-error-packet4bf929aconn: handle initial error packet correctlyd596978conn: add test for initial error packet handlinga475a5fMerge pull request #302 from serprex/remove-lazy-static11a86f1Replace once_cell with std::sync::OnceLockd34b756Replace lazy_static with std::cell:OnceLock- Additional commits viewable in compare view
Updates assert_cmd from 2.0.15 to 2.0.16
Changelog
Sourced from assert_cmd's changelog.
[2.0.16] - 2024-08-09
Features
- Add getters to
Commandto mirror those added to the standard library
Commits
bf1025echore: Release assert_cmd version 2.0.1650e8293docs: Update changelog6539f0aMerge pull request #213 from mcky/feat-add-command-gettersb037f96feat: Add getters to mirror those available on std::process::Command4d3dbd3chore(deps): Update Rust crate escargot to v0.5.12936e453Merge pull request #210 from epage/min26a368cchore: Clean up minimal deps hack3229492chore(deps): Update Rust Stable to v1.807c63917Merge pull request #208 from epage/template3dc2b41fix: Workaround bad minimal-versions- Additional commits viewable in compare view
Updates tempfile from 3.11.0 to 3.12.0
Changelog
Sourced from tempfile's changelog.
3.12.0
- Add a
keep(keep: bool)function to builder that suppresses delete-on-drop behavior (thanks to@RalfJung).- Update
windows-sysfrom 0.52 to 0.59.
Commits
- See full diff in compare view
Most Recent Ignore Conditions Applied to This Pull Request
| Dependency Name | Ignore Conditions |
|---|---|
| swc_ecma_ast | [>= 0.113.a, < 0.114] |
| swc_ecma_parser | [>= 0.144.a, < 0.145] |
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions