Skip to content

Update changelog

Update changelog #315

Triggered via push March 25, 2024 17:42
Status Success
Total duration 1m 8s
Artifacts

clippy_check.yml

on: push
clippy_check
56s
clippy_check
Fit to window
Zoom out
Zoom in

Annotations

25 warnings
match can be simplified with `.unwrap_or_default()`: yaml_test_runner/src/step/skip.rs#L65
warning: match can be simplified with `.unwrap_or_default()` --> yaml_test_runner/src/step/skip.rs:65:9 | 65 | / match &self.features { 66 | | Some(v) => v, 67 | | None => &[], 68 | | } | |_________^ help: replace it with: `&self.features.unwrap_or_default()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or_default = note: `#[warn(clippy::manual_unwrap_or_default)]` on by default
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9250
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9250:37 | 9250 | pub fn scripts_painless_execute<'a, 'b>(&'a self) -> ScriptsPainlessExecute<'a, 'b, ()> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9250 - pub fn scripts_painless_execute<'a, 'b>(&'a self) -> ScriptsPainlessExecute<'a, 'b, ()> { 9250 + pub fn scripts_painless_execute<'b>(&self) -> ScriptsPainlessExecute<'_, 'b, ()> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9230
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9230:20 | 9230 | pub fn reindex<'a, 'b>(&'a self) -> Reindex<'a, 'b, ()> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9230 - pub fn reindex<'a, 'b>(&'a self) -> Reindex<'a, 'b, ()> { 9230 + pub fn reindex<'b>(&self) -> Reindex<'_, 'b, ()> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9216
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9216:17 | 9216 | pub fn ping<'a, 'b>(&'a self) -> Ping<'a, 'b> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9216 - pub fn ping<'a, 'b>(&'a self) -> Ping<'a, 'b> { 9216 + pub fn ping<'b>(&self) -> Ping<'_, 'b> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9190
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9190:17 | 9190 | pub fn info<'a, 'b>(&'a self) -> Info<'a, 'b> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9190 - pub fn info<'a, 'b>(&'a self) -> Info<'a, 'b> { 9190 + pub fn info<'b>(&self) -> Info<'_, 'b> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9178
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9178:33 | 9178 | pub fn get_script_languages<'a, 'b>(&'a self) -> GetScriptLanguages<'a, 'b> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9178 - pub fn get_script_languages<'a, 'b>(&'a self) -> GetScriptLanguages<'a, 'b> { 9178 + pub fn get_script_languages<'b>(&self) -> GetScriptLanguages<'_, 'b> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9172
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9172:31 | 9172 | pub fn get_script_context<'a, 'b>(&'a self) -> GetScriptContext<'a, 'b> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9172 - pub fn get_script_context<'a, 'b>(&'a self) -> GetScriptContext<'a, 'b> { 9172 + pub fn get_script_context<'b>(&self) -> GetScriptContext<'_, 'b> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9162
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9162:25 | 9162 | pub fn get_all_pits<'a, 'b>(&'a self) -> GetAllPits<'a, 'b> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9162 - pub fn get_all_pits<'a, 'b>(&'a self) -> GetAllPits<'a, 'b> { 9162 + pub fn get_all_pits<'b>(&self) -> GetAllPits<'_, 'b> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9134
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9134:23 | 9134 | pub fn delete_pit<'a, 'b>(&'a self) -> DeletePit<'a, 'b, ()> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 9134 - pub fn delete_pit<'a, 'b>(&'a self) -> DeletePit<'a, 'b, ()> { 9134 + pub fn delete_pit<'b>(&self) -> DeletePit<'_, 'b, ()> { |
the following explicit lifetimes could be elided: 'a: opensearch/src/root/mod.rs#L9116
warning: the following explicit lifetimes could be elided: 'a --> opensearch/src/root/mod.rs:9116:28 | 9116 | pub fn delete_all_pits<'a, 'b>(&'a self) -> DeleteAllPits<'a, 'b> { | ^^ ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 9116 - pub fn delete_all_pits<'a, 'b>(&'a self) -> DeleteAllPits<'a, 'b> { 9116 + pub fn delete_all_pits<'b>(&self) -> DeleteAllPits<'_, 'b> { |
the item `str` is imported redundantly: api_generator/src/generator/code_gen/url/url_builder.rs#L37
warning: the item `str` is imported redundantly --> api_generator/src/generator/code_gen/url/url_builder.rs:37:55 | 35 | use crate::generator::{code_gen::*, Path, Type, TypeKind}; | ----------- the item `str` is already imported here 36 | use serde::{Deserialize, Deserializer}; 37 | use std::{collections::BTreeMap, fmt, iter::Iterator, str}; | ^^^
the item `Iterator` is imported redundantly: api_generator/src/generator/code_gen/url/url_builder.rs#L37
warning: the item `Iterator` is imported redundantly --> api_generator/src/generator/code_gen/url/url_builder.rs:37:39 | 37 | use std::{collections::BTreeMap, fmt, iter::Iterator, str}; | ^^^^^^^^^^^^^^ --> /rustc/0824b300eb0dae5d9ed59719d3f2732016683d66/library/std/src/prelude/mod.rs:115:13 | = note: the item `Iterator` is already defined here
the item `TypeKind` is imported redundantly: api_generator/src/generator/code_gen/url/url_builder.rs#L35
warning: the item `TypeKind` is imported redundantly --> api_generator/src/generator/code_gen/url/url_builder.rs:35:49 | 35 | use crate::generator::{code_gen::*, Path, Type, TypeKind}; | ----------- ^^^^^^^^ | | | the item `TypeKind` is already imported here
the item `Inflector` is imported redundantly: api_generator/src/generator/code_gen/url/enum_builder.rs#L36
warning: the item `Inflector` is imported redundantly --> api_generator/src/generator/code_gen/url/enum_builder.rs:36:5 | 35 | use crate::generator::{code_gen::*, ApiEndpoint, Path}; | ----------- the item `Inflector` is already imported here 36 | use inflector::Inflector; | ^^^^^^^^^^^^^^^^^^^^
the item `ImplItem` is imported redundantly: api_generator/src/generator/code_gen/request/request_builder.rs#L27
warning: the item `ImplItem` is imported redundantly --> api_generator/src/generator/code_gen/request/request_builder.rs:27:45 | 20 | code_gen::{url::enum_builder::EnumBuilder, *}, | - the item `ImplItem` is already imported here ... 27 | use syn::{parse::Parser, Field, FieldValue, ImplItem}; | ^^^^^^^^
the item `str` is imported redundantly: api_generator/src/generator/code_gen/request/request_builder.rs#L26
warning: the item `str` is imported redundantly --> api_generator/src/generator/code_gen/request/request_builder.rs:26:50 | 20 | code_gen::{url::enum_builder::EnumBuilder, *}, | - the item `str` is already imported here ... 26 | use std::{collections::BTreeMap, fs, path::Path, str}; | ^^^
the item `Inflector` is imported redundantly: api_generator/src/generator/code_gen/request/request_builder.rs#L23
warning: the item `Inflector` is imported redundantly --> api_generator/src/generator/code_gen/request/request_builder.rs:23:5 | 20 | code_gen::{url::enum_builder::EnumBuilder, *}, | - the item `Inflector` is already imported here ... 23 | use inflector::Inflector; | ^^^^^^^^^^^^^^^^^^^^
the item `TypeKind` is imported redundantly: api_generator/src/generator/code_gen/request/request_builder.rs#L21
warning: the item `TypeKind` is imported redundantly --> api_generator/src/generator/code_gen/request/request_builder.rs:21:48 | 20 | code_gen::{url::enum_builder::EnumBuilder, *}, | - the item `TypeKind` is already imported here 21 | ApiEndpoint, Deprecated, HttpMethod, Type, TypeKind, | ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
item has both inner and outer attributes: api_generator/src/generator/code_gen/url/enum_builder.rs#L272
warning: item has both inner and outer attributes --> api_generator/src/generator/code_gen/url/enum_builder.rs:272:1 | 272 | / #[cfg(test)] 273 | | mod tests { 274 | | #![cfg_attr(rustfmt, rustfmt_skip)] | |_______________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mixed_attributes_style = note: `#[warn(clippy::mixed_attributes_style)]` on by default
clippy_check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/