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

Update non-major deps #263

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update non-major deps #263

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 23, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/papaparse (source) 5.3.8 -> 5.3.15 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.21 -> 18.3.12 age adoption passing confidence devDependencies minor
@types/react-dom (source) 18.2.7 -> 18.3.1 age adoption passing confidence devDependencies minor
anyhow 1.0.57 -> 1.0.93 age adoption passing confidence dependencies patch
autoprefixer 10.4.15 -> 10.4.20 age adoption passing confidence devDependencies patch
bytemuck 1.14.0 -> 1.19.0 age adoption passing confidence dependencies minor
eslint (source) 8.49.0 -> 8.57.1 age adoption passing confidence devDependencies minor
eslint-plugin-react 7.33.2 -> 7.37.2 age adoption passing confidence devDependencies minor
eslint-plugin-react-hooks (source) 4.6.0 -> 4.6.2 age adoption passing confidence devDependencies patch
itertools 0.11 -> 0.13 age adoption passing confidence dependencies minor
js-sys (source) 0.3.64 -> 0.3.72 age adoption passing confidence dependencies patch
lazy_static 1.4.0 -> 1.5.0 age adoption passing confidence dependencies minor
nalgebra (source) 0.32 -> 0.33 age adoption passing confidence dependencies minor
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence dependencies minor
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence dependencies minor
rstar 0.11 -> 0.12 age adoption passing confidence dependencies minor
serde (source) 1.0.137 -> 1.0.214 age adoption passing confidence dependencies patch
serde_json 1.0.81 -> 1.0.132 age adoption passing confidence dependencies patch
tailwindcss (source) 3.3.3 -> 3.4.14 age adoption passing confidence dependencies minor
wasm-bindgen (source) 0.2.87 -> 0.2.95 age adoption passing confidence dependencies patch
web-sys (source) 0.3.64 -> 0.3.72 age adoption passing confidence dependencies patch

Release Notes

dtolnay/anyhow (anyhow)

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)

v1.0.91

Compare Source

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#​388)

v1.0.90

Compare Source

  • Documentation improvements

v1.0.89

Compare Source

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#​386)

v1.0.88

Compare Source

  • Documentation improvements

v1.0.87

Compare Source

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#​383)

v1.0.86

Compare Source

  • Fix parse error in ensure! with non-literal after minus sign (#​373)

v1.0.85

Compare Source

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#​368, #​371)

v1.0.84

Compare Source

  • Disallow calling ensure! through a Not impl for a type that is not bool (#​367)

v1.0.83

Compare Source

  • Integrate compile-time checking of cfgs (#​363)

v1.0.82

Compare Source

  • Documentation improvements

v1.0.81

Compare Source

  • Make backtrace support available when using -Dwarnings (#​354)

v1.0.80

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v1.0.79

Compare Source

  • Work around improperly cached build script result by sccache (#​340)

v1.0.78

Compare Source

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#​337)

v1.0.77

Compare Source

v1.0.76

Compare Source

  • Opt in to unsafe_op_in_unsafe_fn lint (#​329)

v1.0.75

Compare Source

v1.0.74

Compare Source

v1.0.73

Compare Source

v1.0.72

Compare Source

  • Documentation improvements

v1.0.71

Compare Source

  • Documentation improvements

v1.0.70

Compare Source

  • Update syn dependency to 2.x

v1.0.69

Compare Source

  • Documentation improvements

v1.0.68

Compare Source

  • Opt out of -Zrustdoc-scrape-examples on docs.rs for now

v1.0.67

Compare Source

  • Improve the backtrace captured when context() is used on an Option (#​280)

v1.0.66

Compare Source

  • Reduce unhelpful backtrace frames in backtraces captured during a context call (#​279)

v1.0.65

Compare Source

v1.0.64

Compare Source

  • Correctly propagate Backtrace when using #[source] anyhow::Error with thiserror crate (#​231)

v1.0.63

Compare Source

v1.0.62

Compare Source

  • Fix extra rebuilding when interleaving command-line cargo invocations with IDE builds (#​261)

v1.0.61

Compare Source

  • Work around rust-analyzer builds poisoning all subsequent command-line cargo builds (#​252)

v1.0.60

Compare Source

  • Propagate --target to rustc invocation when deciding about backtrace support (#​249, thanks @​RalfJung)

v1.0.59

Compare Source

  • Update crates.io metadata to include no-std category

v1.0.58

Compare Source

  • Fix some broken links in documentation
postcss/autoprefixer (autoprefixer)

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.

v10.4.19

Compare Source

  • Removed end value has mixed support, consider using flex-end warning
    since end/start now have good support.

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.

v10.4.16

Compare Source

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).
Lokathor/bytemuck (bytemuck)

v1.19.0

Compare Source

v1.18.0

Compare Source

v1.17.1

Compare Source

  • Adds #[repr(C)] to the union Transmute<A, B> type that's used internally
    for most of the transmutations.

v1.17.0

Compare Source

  • Makes the must_cast versions of the by-value and by-ref casts be const.
    The mut ref cast is unaffected for now (mut references aren't yet stable in const fn).
    This increases the MSRV of using that particular feature from 1.57 to 1.64.

v1.16.3

Compare Source

v1.16.2

Compare Source

  • Fixes potential UB where BoxBytes could attempt to free a dangling pointer
    if the Layout is zero sized. This type was introduced in 1.14.1, so that
    version and the others up to and including 1.16.1 are now yanked for safety.

v1.16.1

Compare Source

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This
    activates the f16 and f128 nightly features, and then provides Zeroable
    and Pod impls for those types.

v1.16.0

Compare Source

  • Adds a const_zeroed feature (MSRV 1.75) which puts a zeroed fn at the crate root.
    This is just like the Zeroable::zeroed method, but as a const fn.

v1.15.0

Compare Source

This primarily relaxes the bounds on a From impl.

Previously:

impl<T: NoUninit> From<Box<T>> for BoxBytes

Now:

impl<T: ?Sized + sealed::BoxBytesOf> From<Box<T>> for BoxBytes

All related functions and methods are similarly updated.

We believe this to be backwards compatible with all previous uses,
and now BoxBytes can be converted to/from more types than before.

v1.14.3

Compare Source

  • The new std simd nightly features are apparently arch-specific.
    This adjusts the feature activation to be x86/ x86_64 only.

v1.14.2

Compare Source

  • Changes the name of the Nightly feature activated by the crate's
    nightly_stdsimd feature. This is needed as of (approximately) Nightly
    2024-02-06 and later, because the Nightly feature was changed.

v1.14.1

Compare Source

  • docs clarifications.
eslint/eslint (eslint)

v8.57.1

Compare Source

v8.57.0

Compare Source

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#​18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#​18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#​18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#​18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#​18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#​18056) (Milos Djermanovic)

Documentation

Chores

v8.56.0

Compare Source

Features
  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#​17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#​17818) (Arka Pratim Chaudhuri)
Bug Fixes
  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#​17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#​17812) (Bryan Mishkin)
Documentation
  • 9007719 docs: update link in ways-to-extend.md (#​17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#​17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#​17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#​17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)
Chores

v8.55.0

Compare Source

Features

  • 8c9e6c1 feat: importNamePattern option in no-restricted-imports (#​17721) (Tanuj Kanti)

Documentation

  • 83ece2a docs: fix typo --rules -> --rule (#​17806) (OKURA Masafumi)
  • fffca5c docs: remove "Open in Playground" buttons for removed rules (#​17791) (Francesco Trotta)
  • a6d9442 docs: fix correct/incorrect examples of rules (#​17789) (Tanuj Kanti)
  • 383e999 docs: update and fix examples for no-unused-vars (#​17788) (Tanuj Kanti)
  • 5a8efd5 docs: add specific stylistic rule for each deprecated rule (#​17778) (Etienne)

Chores

v8.54.0

Compare Source

Features

  • a7a883b feat: for-direction rule add check for condition in reverse order (#​17755) (Angelo Annunziata)
  • 1452dc9 feat: Add suggestions to no-console (#​17680) (Joel Mathew Koshy)
  • 21ebf8a feat: update no-array-constructor rule (#​17711) (Francesco Trotta)

Bug Fixes

  • 98926e6 fix: Ensure that extra data is not accidentally stored in the cache file (#​17760) (Milos Djermanovic)
  • e8cf9f6 fix: Make dark scroll bar in dark theme (#​17753) (Pavel)
  • 3cbeaad fix: Use cwd constructor option as config basePath in Linter (#​17705) (Milos Djermanovic)

Documentation

  • becfdd3 docs: Make clear when rules are removed (#​17728) (Nicholas C. Zakas)
  • 05d6e99 docs: update "Submit a Pull Request" page (#​17712) (Francesco Trotta)
  • eb2279e docs: display info about deprecated rules (#​17749) (Percy Ma)
  • d245326 docs: Correct working in migrating plugin docs (#​17722) (Filip Tammergård)

Chores

v8.53.0

Compare Source

Features

  • 528e1c0 feat: Deprecate formatting rules (#​17696) (Nicholas C. Zakas)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#​17677) (Yonathan Randolph)

Bug Fixes

  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#​17683) (Milos Djermanovic)
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#​17672) (Francesco Trotta)

Documentation

  • ab8c60d docs: change position of return to top button (#​17688) (Tanuj Kanti)
  • 4fc44c0 docs: update twitter icon to new X icon (#​17687) (Tanuj Kanti)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#​17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#​17657) (Josh Goldberg ✨)

Chores

v8.52.0

Compare Source

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#​17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#​17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#​17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#​17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#​17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#​17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#​17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#​17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#​17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#​17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#​17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#​17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#​17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#​17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

Chores


Configuration

📅 Schedule: Branch creation - "after 1:00am on Saturday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (rebase) September 23, 2023 04:42
@netlify
Copy link

netlify bot commented Sep 23, 2023

Deploy Preview for zuse-koba789 ready!

Name Link
🔨 Latest commit 5dc972e
🔍 Latest deploy log https://app.netlify.com/sites/zuse-koba789/deploys/672b0c3d8959590008e7b4d1
😎 Deploy Preview https://deploy-preview-263--zuse-koba789.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/non-major-deps branch 4 times, most recently from 88a7668 to f80bf11 Compare September 29, 2023 00:29
@renovate renovate bot force-pushed the renovate/non-major-deps branch 6 times, most recently from 7ee708c to e7931da Compare October 7, 2023 01:44
@renovate renovate bot force-pushed the renovate/non-major-deps branch 3 times, most recently from 713e21d to 8404b1b Compare October 10, 2023 23:04
@renovate renovate bot force-pushed the renovate/non-major-deps branch 7 times, most recently from 7e8f3ee to c2f61e0 Compare October 24, 2023 19:19
@renovate renovate bot force-pushed the renovate/non-major-deps branch 2 times, most recently from b1c3175 to adbb509 Compare October 26, 2023 08:05
Copy link
Contributor Author

renovate bot commented Nov 1, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: crates/zuse-rs/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/zuse-rs/Cargo.toml --package serde@1.0.137 --precise 1.0.201
    Updating crates.io index
    Updating git repository `https://github.com/koba789/zuse-core#593cdd052d956be9b2dc56e21de6419c0dbad532`
error: failed to select a version for `syn`.
    ... required by package `serde_derive v1.0.201`
    ... which satisfies dependency `serde_derive = "=1.0.201"` of package `serde v1.0.201`
    ... which satisfies dependency `serde = "^1.0"` of package `zuse-rs v0.1.0 (/tmp/renovate/repos/github/KOBA789/zuse/crates/zuse-rs)`
versions that meet the requirements `^2.0.46` are: 2.0.61, 2.0.60, 2.0.59, 2.0.58, 2.0.57, 2.0.56, 2.0.55, 2.0.54, 2.0.53, 2.0.52, 2.0.51, 2.0.50, 2.0.49, 2.0.48, 2.0.47, 2.0.46

all possible versions conflict with previously selected packages.

  previously selected package `syn v2.0.16`
    ... which satisfies dependency `syn = "^2.0"` (locked to 2.0.16) of package `wasm-bindgen-macro-support v0.2.92`
    ... which satisfies dependency `wasm-bindgen-macro-support = "=0.2.92"` (locked to 0.2.92) of package `wasm-bindgen-macro v0.2.92`
    ... which satisfies dependency `wasm-bindgen-macro = "=0.2.92"` (locked to 0.2.92) of package `wasm-bindgen v0.2.92`
    ... which satisfies dependency `wasm-bindgen = "^0.2.87"` (locked to 0.2.92) of package `zuse-rs v0.1.0 (/tmp/renovate/repos/github/KOBA789/zuse/crates/zuse-rs)`

failed to select a version for `syn` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/non-major-deps branch 4 times, most recently from bcda8d8 to ee0857d Compare November 6, 2023 16:36
@renovate renovate bot force-pushed the renovate/non-major-deps branch 4 times, most recently from 6052dd6 to 037d6c9 Compare September 27, 2024 16:35
@renovate renovate bot force-pushed the renovate/non-major-deps branch 2 times, most recently from 63dba06 to cf073d1 Compare October 2, 2024 16:51
@renovate renovate bot force-pushed the renovate/non-major-deps branch 6 times, most recently from 1fdf184 to 09c32c7 Compare October 15, 2024 11:49
@renovate renovate bot force-pushed the renovate/non-major-deps branch 9 times, most recently from bfd7448 to 84a98e5 Compare October 22, 2024 22:23
@renovate renovate bot force-pushed the renovate/non-major-deps branch 6 times, most recently from 61a941d to da1877f Compare November 4, 2024 11:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants