Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

deps(deps): update dependencies-non-major #112

Merged
merged 5 commits into from
Oct 13, 2021

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 13, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) 2.2.0 -> 2.8.2 age adoption passing confidence
@material-ui/core (source) 4.11.3 -> 4.12.3 age adoption passing confidence
@supabase/supabase-js 1.9.0 -> 1.24.0 age adoption passing confidence
@tailwindcss/forms 0.3.2 -> 0.3.4 age adoption passing confidence
@turf/turf 6.3.0 -> 6.5.0 age adoption passing confidence
boring-avatars (source) 1.5.5 -> 1.5.8 age adoption passing confidence
react-hook-form (source) 7.15.4 -> 7.17.3 age adoption passing confidence
react-map-gl 5.3.11 -> 5.3.17 age adoption passing confidence
react-router-dom 5.2.0 -> 5.3.0 age adoption passing confidence
react-simple-timefield 3.2.3 -> 3.2.5 age adoption passing confidence
remark-slug 6.0.0 -> 6.1.0 age adoption passing confidence
swiper (source) 6.7.0 -> 6.8.4 age adoption passing confidence
swr (source) 0.5.5 -> 0.5.7 age adoption passing confidence
theme-ui 0.3.5 -> 0.11.3 age adoption passing confidence
yup 0.32.9 -> 0.32.11 age adoption passing confidence

Release Notes

react-hook-form/resolvers

v2.8.2

Compare Source

Bug Fixes
  • TypeScript issues with the latest react-hook-form version (66182f8)

v2.8.1

Compare Source

Bug Fixes

v2.8.0

Compare Source

BREAKING CHANGES

v2.7.1

Compare Source

Performance Improvements

v2.7.0

Compare Source

Features
import { useForm } from 'react-hook-form';
import { typanionResolver } from '@​hookform/resolvers/typanion';
import * as t from 'typanion';

const isUser = t.isObject({
  username: t.applyCascade(t.isString(), [t.hasMinLength(1)]),
  age: t.applyCascade(t.isNumber(), [t.isInteger(), t.isInInclusiveRange(1, 100)]),
});

const App = () => {
  const {
    register,
    handleSubmit,
    formState: { errors },
  } = useForm({
    resolver: typanionResolver(isUser),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('name')} />
      {errors.name?.message && <p>{errors.name?.message}</p>}
      <input type="number" {...register('age')} />
      {errors.age?.message && <p>{errors.age?.message}</p>}
      <input type="submit" />
    </form>
  );
};

v2.6.1

Compare Source

Bug Fixes

v2.6.0

Compare Source

Features

v2.5.2

Compare Source

Bug Fixes

v2.5.1

Compare Source

Bug Fixes

v2.5.0

Compare Source

Features
import React from 'react';
import { useForm } from 'react-hook-form';
import { computedTypesResolver } from '@&#8203;hookform/resolvers/computed-types';
import Schema, { number, string } from 'computed-types';

const schema = Schema({
  username: string.min(1).error('username field is required'),
  password: string.min(1).error('password field is required'),
  password: number,
});

const App = () => {
  const {
    register,
    handleSubmit,
    formState: { errors },
  } = useForm({
    resolver: computedTypesResolver(schema),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('name')} />
      {errors.name?.message && <p>{errors.name?.message}</p>}
      <input type="number" {...register('age', { valueAsNumber: true })} />
      {errors.age?.message && <p>{errors.age?.message}</p>}
      <input type="submit" />
    </form>
  );
};

export default App;

v2.4.0

Compare Source

Features
import React from 'react';
import { useForm } from 'react-hook-form';
import { nopeResolver } from '@&#8203;hookform/resolvers/nope';
import Nope from 'nope-validator';

const schema = Nope.object().shape({
  name: Nope.string().required(),
  age: Nope.number().required(),
});

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: nopeResolver(schema),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input name="name" ref={register} />
      <input name="age" type="number" ref={register} />
      <input type="submit" />
    </form>
  );
};

export default App;

v2.3.2

Compare Source

Bug Fixes

v2.3.1

Compare Source

Bug Fixes

v2.3.0

Compare Source

Features
import React from 'react';
import { useForm } from 'react-hook-form';
import { ioTsResolver } from '@&#8203;hookform/resolvers/io-ts';
import t from 'io-ts';
// you don't have to use io-ts-types but it's very useful
import tt from 'io-ts-types';

const schema = t.type({
  username: t.string,
  age: tt.NumberFromString,
});

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: ioTsResolver(schema),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input name="username" ref={register} />
      <input name="age" type="number" ref={register} />
      <input type="submit" />
    </form>
  );
};

export default App;
mui-org/material-ui

v4.12.3

Compare Source

@material-ui/core@4.12.3
  • [Accordion] Fix AccordionSummary false-positive propType warning with `disableGeneration` (#​27385) @​eps1lon
  • [ImageList] Fix deprecation warnings (#​27502) @​mnajdova
  • [Table] Re-introduce deprecated TablePagination `onChangePage` to `ActionsComponent` (#​27407) @​eps1lon
  • [TextareaAutosize] Updated deprecation warning to suggest minRows instead of rowsMin (#​27398) @​HumbertoL
Docs
  • [docs] Fix 404 link to ImageList @​oliviertassinari
  • [docs] Fix DataTable.tsx demo in v4 (#​27196) @​Siv-tspab
Core
  • [core] Add release scripts (#​27399) @​eps1lon

All contributors of this release in alphabetical order: @​eps1lon, @​mnajdova, @​HumbertoL, @​oliviertassinari, @​Siv-tspab

v4.12.2

Compare Source

@material-ui/core@4.12.2
  • [Accordion, Collapse] Fix failed proptype error (#​27307) @​serenalin121
  • [Accordion] Ensure AccordionSummary backwards compatible deprecation of classes.focused (#​27351) @​eps1lon
  • [TextField] Add support for `minRows` (#​27293) @​eps1lon
Docs
  • [blog] Danilo Leal joins Material-UI (#​27231) @​oliviertassinari
  • [blog] Jun did join in Q1 @​oliviertassinari
  • [blog] Fix typo @​oliviertassinari
  • [blog] Q2 2021 Update (#​27089) @​oliviertassinari
  • [docs] Add constant for the banner height (#​27309) @​mnajdova
  • [docs] Fix various layout issues with the v5 banner (#​27237) @​mnajdova
  • [docs] Fix https protocol (#​27262) @​m4theushw
  • [docs] Remove Ethical Ads (#​27173) @​mbrookes
  • [website] Open 4 new roles (#​27123) @​oliviertassinari

All contributors of this release in alphabetical order: @​eps1lon, @​m4theushw, @​mbrookes, @​mnajdova, @​oliviertassinari, @​serenalin121

v4.12.1

Compare Source

This release is released to fix the package.json generation in the previous release.

Core

v4.12.0

Compare Source

Big thanks to the 12 contributors who made this release possible. It includes deprecations that should help developers to have an easier adoption of v5.

@material-ui/core@4.12.0
@material-ui/system@4.12.0
Docs
Core

v4.11.4

Compare Source

Apr 27, 2021

Big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

We fixed an issue related to some packages using incompatible versions of @material-ui/types. This affected @material-ui/core, @material-ui/lab, and @material-ui/styles
@material-ui/types@5.1.7 accidentally included a breaking change.

@​material-ui/core@​4.11.4
  • [Avatar] Remove circular variant deprecation (#​25543) @​michal-perlakowski
  • [types] Ensure Omit type exists (#​25978) @​eps1lon
Docs
  • [DataGrid] Update docs sections (#​25980) @​dtassone
  • [docs] Sync master redirections with next @​oliviertassinari
  • [docs] Fix deploy @​oliviertassinari
  • [docs] Move DataGrid editing nav link (#​25769) @​dtassone
  • [docs] Design is what matters @​oliviertassinari
  • [docs] Add the new demo page (#​25285) @​DanailH
  • [docs] Add a temporary hiring block in the docs (#​25111) @​oliviertassinari
  • [docs] Remove under construction icons from DataGrid feature pages (#​24946) @​DanailH
  • [docs] Add HoodieBees to sponsors (#​24735) @​mbrookes
  • [docs] Add sorting section (#​24637) @​dtassone
  • [docs] v4 is not under active development @​oliviertassinari
Core
  • remove job ad @​oliviertassinari
  • clearer header @​oliviertassinari
  • [blog] Fix typos @​oliviertassinari
  • [core] Update the codesandbox issue templates (#​25501) @​oliviertassinari
  • [core] Support /r/issue-template back (#​24870) @​oliviertassinari
  • [website] Q1 2021 Update (#​25591) @​oliviertassinari
  • [website] Matheus Wichman joins Material-UI (#​25590) @​oliviertassinari
  • [website] Fix 404 page @​oliviertassinari
  • [website] Update Careers page (#​24948) @​oliviertassinari

All contributors of this release in alphabetical order: @​DanailH, @​dtassone, @​eps1lon, @​mbrookes, @​michal-perlakowski, @​oliviertassinari

supabase/supabase-js

v1.24.0

Compare Source

Bug Fixes
  • bump @supabase/postgrest-js (f9d3b69)
Features
  • allow HEAD requests for RPC calls (9468dcf)

v1.23.1

Compare Source

Bug Fixes

v1.23.0

Compare Source

Bug Fixes
  • bump gotrue-js@1.18.0 with user metadata on signup (0580cd2)
  • remove trailing comma in .releaserc.json (574edc0)
Features
  • add user_token when creating realtime channel subscription (52d417c)

v1.22.6

Compare Source

Bug Fixes
  • set DEFAULT_HEADERS by default for postgrest client (43986e6)

v1.22.5

Compare Source

Bug Fixes
  • Access localStorage lazily to avoid DOMExceptions in constrained envs when localStorage is provided using options (#​252) (376689f)

v1.22.4

Compare Source

Bug Fixes

v1.22.3

Compare Source

Bug Fixes
  • add X-Client-Info header to realtime-js (0929070)

v1.22.2

Compare Source

Bug Fixes

v1.22.1

Compare Source

Bug Fixes
  • adds semantic-release-plugin-update-version-in-files (98f04dc)
  • adds x-client-info header (9355012)
  • gen default version to 0.0.0 (ecce190)
  • was missing dev dependency genversion (20a29e6)

v1.22.0

Compare Source

Features
  • Use additional headers from SupabaseClient into GotrueClient. (#​218) (bbe9a55)

v1.21.3

Compare Source

Bug Fixes

v1.21.2

Compare Source

Bug Fixes

v1.21.1

Compare Source

Bug Fixes

v1.21.0

Compare Source

Features
  • adds phone auth via gotrue-js 1.17.0 (1b21fa6)

v1.20.0

Compare Source

Features
  • update storage-js to 1.4.0 (fed1220)

v1.19.0

Compare Source

Features

v1.18.1

Compare Source

Bug Fixes
  • version bump realtime-js to v1.0.11 (a0e8fcd)

v1.18.0

Compare Source

Features

v1.17.0

Compare Source

Features
  • update storage to 1.2.2 (647fa2d)

v1.16.1

Compare Source

Bug Fixes
  • postgrest-js: export types in index.ts (ebb9bb2)

v1.16.0

Compare Source

Bug Fixes
Features
  • postgrest-js: add ignoreDuplicates to upsert (49a2849)
  • postgrest-js: export error & response types (0ca5b5d)

v1.15.1

Compare Source

Bug Fixes

v1.15.0

Compare Source

Bug Fixes
  • postgrest-js: change match's value type to unknown (739f7a9)
Features
  • postgrest-js: support throw on error (f5b108f)

v1.14.1

Compare Source

Bug Fixes

v1.14.0

Compare Source

Features
  • maybeSingle() in postgrest-js (bf48263)

v1.13.2

Compare Source

Bug Fixes

v1.13.1

Compare Source

Bug Fixes

v1.13.0

Compare Source

Features

v1.12.0

Compare Source

Features
  • updates postgrest-js, gotrue-js, storage-js (4aa138d)

v1.11.17

Compare Source

Bug Fixes
  • bump gotrue-js v1.15.5 redirect patch (079bbc0)

v1.11.16

Compare Source

Bug Fixes
  • type error for callback of on() (0e31126)

v1.11.15

Compare Source

Bug Fixes

v1.11.14

Compare Source

Bug Fixes

v1.11.13

Compare Source

Bug Fixes

v1.11.12

Compare Source

Bug Fixes

v1.11.11

Compare Source

Bug Fixes
  • updates gotrue and postgrest (ffeb223)

v1.11.10

Compare Source

Bug Fixes
  • updates gotrue for setAuth() (991292d)

v1.11.9

Compare Source

Bug Fixes
  • update gotrue-js and storage-js packages (906a076)

v1.11.8

Compare Source

Bug Fixes

v1.11.7

Compare Source

Bug Fixes
  • type is undefined on Socket disconnect (e632f79)

v1.11.6

Compare Source

Bug Fixes
  • remove projectref returned from upload and update object (2a55d74)

v1.11.5

Compare Source

Bug Fixes
  • types for upload object (a887b3d)

v1.11.4

Compare Source

Bug Fixes
  • types for create signed URL; copy it as a prop outside (2beeea5)

v1.11.3

Compare Source

Bug Fixes

v1.11.2

Compare Source

Bug Fixes

v1.11.1

Compare Source

Bug Fixes

v1.11.0

Compare Source

Features
  • add abort controller signal to storage list method (f50bb0b)

v1.10.0

Compare Source

Features
  • update gotrue-js to v1.13.0 (1e6b73c)
tailwindlabs/tailwindcss-forms

v0.3.4

Compare Source

Fixed
  • Fix compatibility with optimizeUniversalDefaults experimental feature in Tailwind CSS v2.2 (#​81)

v0.3.3

Compare Source

Fixed
  • Fix typo in selector when using class strategy that breaks background colors on checkboxes and radio buttons (#​72)
Turfjs/turf

v6.5.0

Compare Source

🏅 New Features/Enhancements

🐛 Bug Fixes

📖 Documentation

🔔 Misc

v6.4.0

Compare Source

🏅 New Features/Enhancements

🐛 Bug Fixes

📖 Documentation

🔔 Misc

boringdesigners/boring-avatars

v1.5.8

Compare Source

v1.5.7

Compare Source

v1.5.6

Compare Source

react-hook-form/react-hook-form

v7.17.3

Compare Source

🦗 close #​6777 fall back to defaultValues with shouldUnregister: true with unmount fieldArray (#​6780)
🧯 change validation message in example code to match the rule better (#​6781)
🌳 rename document.contains to live function (#​6778)
🐞 fix 6764 reset with keepDefaultValues: true with isDirty and dirtyFields (#​6774)
🐞 fix #​6765 useFieldArray trigger validation by field name (#​6768)
🧶 add support for extended generics in path type (#​6762)
🐞 fix #​6754 focus issue with radio and checkbox (#​6755)

thanks to @​RolkerMan @​hpohlmeyer

v7.17.2

Compare Source

🐞 fix #​6748 skip clone object when object contains function nodes (#​6749)
⏮ revert interface & mapped type update (#​6747)
🐞 fix #​6736 custom onChange getting called on blur ([#​6746](


Configuration

📅 Schedule: "every 2 weeks on Monday before 7am" in timezone Europe/Berlin.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 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 has been generated by WhiteSource Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Sep 13, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/technologiestiftung/stadtpuls-frontend/3VT4T72aemxcn9cTkqnfabjxSZGQ
✅ Preview: https://stadtpuls-frontend-git-renovate-dep-35f80b-technologiestiftung1.vercel.app

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 3620bd0 to fecfed1 Compare September 18, 2021 20:37
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from fecfed1 to 061b363 Compare September 19, 2021 10:15
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 061b363 to 8ee38f4 Compare September 22, 2021 16:56
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 8ee38f4 to 944c02b Compare September 23, 2021 15:00
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 944c02b to babd271 Compare September 24, 2021 12:36
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from babd271 to e3f15df Compare September 24, 2021 23:46
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from e3f15df to 880bc0e Compare September 27, 2021 05:08
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 880bc0e to b1f5d9a Compare September 28, 2021 14:44
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from b1f5d9a to 64707fb Compare September 28, 2021 17:14
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 64707fb to 0c6f484 Compare September 28, 2021 20:06
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 0c6f484 to 2c4307b Compare September 30, 2021 03:37
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 2c4307b to ff31c6b Compare September 30, 2021 11:02
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from ff31c6b to cce2a5a Compare October 2, 2021 03:04
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from cce2a5a to 46d7273 Compare October 5, 2021 09:55
@dnsos
Copy link
Contributor

dnsos commented Oct 13, 2021

Important note: Theme UI is removed in this PR since it was causing type issues and we had wanted to remove it for a long time already.

(FYI @vogelino)

Because the previously removed Theme UI had actually added an off-white to the body
@dnsos dnsos merged commit 49c4180 into main Oct 13, 2021
@dnsos dnsos deleted the renovate/dependencies-non-major branch October 13, 2021 15:35
@tsboter
Copy link

tsboter commented Mar 29, 2022

🎉 This PR is included in version 1.0.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants