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

fix(deps): update all non-major dependencies (minor) #5359

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 1, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@opentelemetry/instrumentation-generic-pool (source) ^0.37.0 -> ^0.43.0 age adoption passing confidence
@opentelemetry/instrumentation-http (source) ^0.52.0 -> ^0.57.0 age adoption passing confidence
@opentelemetry/instrumentation-net (source) ^0.37.0 -> ^0.43.0 age adoption passing confidence
@reach/dialog (source) 0.15.3 -> 0.18.0 age adoption passing confidence
lit (source) 2.6.1 -> 2.8.0 age adoption passing confidence
publicodes (source) 1.0.0-beta.60 -> 1.6.1 age adoption passing confidence

Release Notes

open-telemetry/opentelemetry-js-contrib (@​opentelemetry/instrumentation-generic-pool)

v0.43.0

Compare Source

v0.42.0

Compare Source

v0.41.0

Compare Source

v0.40.0

Compare Source

v0.39.0

Compare Source

v0.38.1

Compare Source

v0.38.0

Compare Source

open-telemetry/opentelemetry-js (@​opentelemetry/instrumentation-http)

v0.57.0

Compare Source

v0.56.0

Compare Source

v0.55.0

Compare Source

v0.54.2

Compare Source

v0.54.1

Compare Source

v0.54.0

Compare Source

v0.53.0

Compare Source

reach/reach-ui (@​reach/dialog)

v0.18.0

Compare Source

BREAKING Changes
  • All default exports have been removed. Replace all default imports with the appropriate documented named export.
  • The output directory structure has changed slightly. Module files are now named reach-<pkg>.mjs instead of reach-<pkg>.esm.js.
Minor Changes
  • We have simplified our build setup to remove a boatload of dependencies. Build output for all packages may look slightly different, though functionally packages that don't have explicit changes marked in the release notes have not changed.

    This may affect you if you use patch-package to modify output code. If you need support for legacy browsers, the new bundle may not transpile the same ECMA features as before. In that case you may want to transpile Reach packages directly.

  • We no longer check that our internal styles are included by looking for a defined CSS custom property. You can still include our base styles as before, but this removes the need to define --reach-<pkg> in your own stylesheets to silence dev warnings.

Patch Changes

v0.17.0

Compare Source

💔 Breaking Changes

  • disclosure
    • In uncontrolled disclosures, previously we would render the disclosure as open on the first render, regardless of the defaultOpen prop's value. This was done as a progressive enhancement to ensure content was visible to users without JavaScript, but in most cases it just meant that the user might see a flash before the state would change, causing unwanted layout shift.
    • We simplified this by simply respecting the defaultOpen prop's value on the initial render. If you want the old behavior, control the state of your disclosures and ensure that the initial open state is always set to true, then set the desired state for the following render in useEffect.
  • tabs
    • Removed the isSelected from from the Tab component. This prop was useful before we had hooks, but we can now get the selected tab from context without using render props. (2dd0aec)

🐛 Bugfixes

  • auto-id
    • Use the user-provided ID beyond the first render for deterministic behavior (b2f3bc0)
  • tabs
    • Stop managing focus on mouse clicks to fix :focus-visible
  • listbox
    • Update submit button querySelector specificity to fix incorrect button clicks (#​903)
  • menu-button, combobox, listbox
    • Skip rendering of portaled popovers before hydration. This prevents unwanted layout shift when the server-rendered popover mounts to a temporary DOM node (a8f38a4).
🤜🤛 8 Committers

v0.16.2

Compare Source

✨ Enhancements

🤜🤛 5 Committers

v0.16.0

Compare Source

BREAKING: This release fixes a rendering bug in the descendants, but the bug in some cases may have coincidentally allowed descendants to be re-indexed in dynamically sorted lists. While this is probably a nice feature, it didn't work consistently and created problems with nested collections.

We do not directly support dynamic sorting of lists, so if you relied on this "feature" you'll need to provide indices to the descendant item directly via props. If you're rendering dynamic lists you are probably iterating an array anyway, so you shouldn't have any issues.

This applies to all collection-based compound components:

  • Tabs
  • Accordion
  • MenuButton
  • Listbox
  • Combobox

🐛 Bugfixes

  • menu-button
    • Reference root's ownerDocument instead of global, better support in iframes

✨ Enhancements

  • menu-button
    • Better handling of mouse-move that caused problems with long lists on small screens
  • dialog
    • Update dependencies to fix small bugs in focus-lock
  • rect
    • Only log warning if observe is true
🤜🤛 3 Committers
lit/lit (lit)

v2.8.0

Compare Source

Minor Changes
  • #​3993 e2c50569 - Fix return type of isTemplateResult helper to include the CompiledTemplateResult and fix the cache directive to work correctly with CompiledTemplateResults. Also add an explicit isCompiledTemplateResult helper.
Patch Changes
  • #​4031 8057c78d - Rename ReactiveElement._initialize to __initialize, make it private, and remove the @​internal annotation. This will help prevent collisions with subclasses that implement their own _initialize method, while using development builds.

  • Updated dependencies [e2c50569]:

v2.7.6

Compare Source

Patch Changes
  • #​3968 5bb40831 - Allow undefined to be passed to the ref() directive

  • #​3969 7d8d4a15 - Make RefOrCallback generic like Ref

  • #​3987 bb2560f1 - Change the h field of CompiledTemplates to a TemplateStringsArray preventing the spoofing of CompiledTemplates by JSON injection attacks. This should not be a breaking change for most users unless you're using CompiledTemplates. This is a necessary security fix, similar to #​2307.

v2.7.5

Compare Source

Patch Changes
  • #​3917 f6387e35 - Allow decorators to accept ReactiveElement class from a different source.

v2.7.4

Compare Source

Patch Changes

v2.7.3

Compare Source

Patch Changes
  • #​3825 343187b1 - static-html no longer adds an item to TemplateResult's value array for the last consumed static value. This fixes an error with server-side rendering of static html.

  • #​3766 4431cbb8 - Fix styleMap initial render of mixed-case custom props

v2.7.2

Compare Source

Patch Changes

v2.7.1

Compare Source

Patch Changes
  • #​3768 7c1191da - Fix styleMap's handling of important flags

  • #​3720 575fb578 - lit-html/experimental-hydrate.js and lit-element/experimental-hydrate-support.js have been moved to @lit-labs/ssr-client.

    The modules in the original location have been marked deprecated and will be removed in a future version.

v2.7.0

Compare Source

Minor Changes
  • #​3677 b95c86e5 - [SSR only] Reflect ARIA attributes onto server rendered Lit elements with attached internals during SSR and remove them upon hydration.

  • #​3667 e00f6f52 - [SSR only] Improved how nodes with attribute/property/event/element bindings are rendered in SSR, to avoid adding comments inside of "raw text elements" like <textarea>. Fixes #​3663.

    Note: @lit-labs/ssr and lit-html must be updated together.

Patch Changes
publicodes/publicodes (publicodes)

v1.6.1

Compare Source

Patch Changes

v1.6.0

Compare Source

Minor Changes
Patch Changes
  • 27a7f75 Thanks @​johangirod! - Use external dependencies for moo and nearley.
    (instead of devDependencies, which means that the packages were bundled with publicodes even with esm)

v1.5.4

Compare Source

Patch Changes
  • #​584 da688c7 Thanks @​johangirod! - Fix bug with contexte

    v1.3.2 introduced a bug when using contexte :

    • If a contexte was evaluated before and after setSituation with keepPreviousSituation on, the returned value would be the one of the first evaluation (before setSituation)
    • If a contexte was used within a inversion numérique, the returned value would be undefined

    This fixes it.

  • #​570 8688aba Thanks @​johangirod! - Improve type inference

v1.5.1

Compare Source

Patch Changes
  • 78bc846 Thanks @​johangirod! - Fix arrondi mecanism error

    For certain case, the value returned by the arrondi mecanism was not correct. For instance :

    arrondi:
      valeur: 4.55
      arrondi: 1 décimales

    The value returned was 4.5 instead of 4.6. This is now fixed.

v1.5.0

Compare Source

v1.4.0

Compare Source

v1.3.3

Compare Source

v1.3.2

Compare Source

v1.3.1

Compare Source

v1.3.0

Compare Source

v1.2.0

Compare Source

v1.1.1

Compare Source

v1.1.0

Compare Source

v1.0.5

Compare Source

v1.0.4

Compare Source

v1.0.3

Compare Source

v1.0.2

Compare Source

v1.0.1

Compare Source

v1.0.0-rfc.2

Compare Source

v1.0.0-rfc.1

Compare Source

v1.0.0-rc.7

Compare Source

v1.0.0-rc.6

Compare Source

v1.0.0-rc.5

Compare Source

v1.0.0-rc.4

Compare Source

v1.0.0-rc.3

Compare Source

v1.0.0-beta.77

Compare Source

v1.0.0-beta.76

Compare Source

v1.0.0-beta.75

Compare Source

v1.0.0-beta.74

Compare Source

v1.0.0-beta.73

Compare Source

v1.0.0-beta.72

Compare Source

v1.0.0-beta.71

Compare Source

v1.0.0-beta.70

Compare Source

v1.0.0-beta.69

Compare Source

v1.0.0-beta.68

Compare Source

v1.0.0-beta.67

Compare Source

v1.0.0-beta.66

Compare Source

v1.0.0-beta.65

Compare Source

v1.0.0-beta.64

Compare Source

v1.0.0-beta.63

Compare Source

v1.0.0-beta.62

Compare Source

v1.0.0-beta.61

Compare Source


Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 added the dependencies Pull requests that update a dependency file label Sep 1, 2023
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 26e950c to f5457da Compare November 21, 2023 15:27
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from f5457da to e631e98 Compare January 18, 2024 23:12
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from e631e98 to 17eac21 Compare February 26, 2024 15:29
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 17eac21 to 3b665bb Compare February 28, 2024 19:36
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 3b665bb to 62b19ba Compare March 1, 2024 14:32
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 62b19ba to 181ab4c Compare March 5, 2024 01:01
Copy link

socket-security bot commented Mar 5, 2024

@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 181ab4c to 6a367d8 Compare March 6, 2024 20:33
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 6a367d8 to e2055b4 Compare March 6, 2024 23:15
Copy link

socket-security bot commented Mar 8, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from e2055b4 to ed63cdd Compare March 20, 2024 03:20
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from ed63cdd to b87a503 Compare March 21, 2024 18:04
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from b87a503 to 1af21ad Compare April 4, 2024 10:00
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 1af21ad to b47f2fd Compare April 11, 2024 22:07
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from b47f2fd to 2e7639e Compare April 12, 2024 21:33
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from f608bec to fb49694 Compare October 22, 2024 08:21
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from fb49694 to af14e0e Compare October 23, 2024 15:17
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from af14e0e to e23e68a Compare October 25, 2024 15:29
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from e23e68a to fe99480 Compare October 30, 2024 12:24
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from fe99480 to faa0b67 Compare November 13, 2024 15:53
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from faa0b67 to 792d334 Compare November 18, 2024 13:29
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 792d334 to 083c471 Compare November 18, 2024 20:10
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 083c471 to 012e3e6 Compare November 28, 2024 10:56
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 012e3e6 to bad996d Compare December 4, 2024 17:24
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from bad996d to dc3d0b9 Compare December 5, 2024 08:11
@renovate renovate bot changed the title fix(deps): update all non-major dependencies (minor) fix(deps): update dependency lit to v2.8.0 Dec 8, 2024
@renovate renovate bot changed the title fix(deps): update dependency lit to v2.8.0 fix(deps): update all non-major dependencies (minor) Dec 8, 2024
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from dc3d0b9 to 038337c Compare December 16, 2024 10:11
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 038337c to 18cbe75 Compare December 18, 2024 11:17
@renovate renovate bot force-pushed the renovate/all-dependencies-minor-patch branch from 18cbe75 to b1c7736 Compare December 18, 2024 14:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants