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 @elastic/appex-sharedux dependencies (main) #200957

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

Conversation

elastic-renovate-prod[bot]
Copy link
Contributor

@elastic-renovate-prod elastic-renovate-prod bot commented Nov 20, 2024

This PR contains the following updates:

Package Type Update Change
@types/base64-js (source) devDependencies minor ^1.2.5 -> ^1.3.2
@​types/classnames devDependencies minor ^2.2.9 -> ^2.3.4
@types/deep-freeze-strict (source) devDependencies patch ^1.1.0 -> ^1.1.2
@types/enzyme (source) devDependencies patch ^3.10.12 -> ^3.10.18
@​types/history devDependencies major ^4.7.9 -> ^5.0.0
@​types/lz-string devDependencies minor ^1.3.34 -> ^1.5.0
@types/styled-components (source) devDependencies patch ^5.1.0 -> ^5.1.34
@wojtekmaj/enzyme-adapter-react-17 (source) devDependencies minor ^0.6.7 -> ^0.8.0
base64-js dependencies patch ^1.3.1 -> ^1.5.1
blurhash (source) dependencies patch ^2.0.1 -> ^2.0.5
classnames dependencies minor 2.2.6 -> 2.5.1
fflate (source) dependencies minor ^0.6.9 -> ^0.8.2
history dependencies major ^4.9.0 -> ^5.3.0
lz-string (source) dependencies patch ^1.4.4 -> ^1.5.0
monaco-editor dependencies minor ^0.44.0 -> ^0.52.2
rison-node dependencies major 1.0.2 -> 2.1.1
styled-components (source) dependencies major ^5.3.11 -> ^6.1.13

Release Notes

wojtekmaj/enzyme-adapter-react-17 (@​wojtekmaj/enzyme-adapter-react-17)

v0.8.0

Compare Source

What's changed?

  • Removed workarounds targeted for older versions of React.
  • Removed dependency on @babel/runtime.

Bug fixes

  • Fixed Suspense only rendering the first child (#​34).

v0.7.0

Compare Source

What's changed?

  • Minor refactoring related to removal of checks that are always true.

Bug fixes

woltapp/blurhash (blurhash)

v2.0.4

Compare Source

v2.0.3

Compare Source

v2.0.2

Compare Source

JedWatson/classnames (classnames)

v2.5.1

Compare Source

  • Remove workspaces field from package (#​350)

v2.5.0

Compare Source

  • Restore ability to pass a TypeScript interface (#​341)
  • Add exports field to package (#​342)

v2.4.0

Compare Source

v2.3.3

Compare Source

v2.3.2

Compare Source

v2.3.1

Compare Source

  • Fix bind/dedupe TypeScript types exports
  • Fix mapping Value types, thanks Remco Haszing
  • Removed non-existent named exports from types, thanks Remco Haszing

v2.3.0

Compare Source

  • Added TypeScript types
  • Added consistent support for custom .toString() methods on arguments, thanks Stanislav Titenko
101arrowz/fflate (fflate)

v0.8.2

Compare Source

  • Fixed broken UMD build
  • Fixed edge-case causing skipped data during streaming compression
  • Fixed bug in GZIP streaming on member boundary
  • Improved streaming performance on inconsistent chunk sizes
  • Improved unzip performance on undercompressed archives
  • Added flushing support into streaming API
  • Added backpressure support into async streaming API
    • Use new ondrain handler and queuedSize

v0.8.1

Compare Source

  • Fixed reallocating on pre-supplied buffer in inflateSync and unzlibSync
  • Minor documentation fixes

v0.8.0

Compare Source

  • BREAKING: synchronous decompression functions now take an options object rather than an output buffer as a second parameter
    • inflateSync(compressed, outBuf) is now inflateSync(compressed, { out: outBuf })
  • Support dictionaries in compression and decompression
  • Support multi-member files in GZIP streaming decompression
  • Dramatically improved streaming performance
  • Fixed missing error on certain malformed GZIP files

v0.7.4

Compare Source

v0.7.3

Compare Source

  • Fix folder creation for certain operating system
    • Create 0-length "files" for each directory specified with "object" syntax"
    • Support empty folders
    • Add options for folders
  • Fix minification in SWC
    • Remove instanceof, no-whitespace assumptions in async functions

v0.7.2

Compare Source

  • Fixed TypeScript typing for errors when using strictNullChecks
  • Fixed failure to compress files above 64kB with { level: 0 }
  • Fixed AMD module definition in UMD build

v0.7.1

Compare Source

  • Removed requirement for setTimeout
  • Added support for unzip file filters (thanks to @​manucorporat: #​67)
  • Fixed streaming gunzip and unzlib bug causing corruption

v0.7.0

Compare Source

  • Improved errors
    • Now errors are error objects instead of strings
    • Check the error code to apply custom logic based on error type
  • Made async operations always call callbacks asynchronously
  • Fixed bug that caused errors to not appear in asynchronous operations in browsers

v0.6.10

Compare Source

  • Fixed async operations on Node.js with native ESM
remix-run/history (history)

v5.3.0

Compare Source

This release provides support for native ESM consumption of all exports.

v5.2.0

Compare Source

🐛 Bug fixes

  • Fixed a few type declarations and deprecated the following types:
    • State (now set to unknown which will require consumer type narrowing)
    • PartialPath (use Partial<Path> instead)
    • PartialLocation (use Partial<Location> instead)
  • Fixed a regression related to the createPath return value (#​813)

✨ Features

  • We now use statically analyzable CJS exports. This enables named imports in Node ESM scripts (See the commit).

Full Changelog: remix-run/history@v5.1.0...v5.2.0

v5.1.0

Compare Source

Because the prior 5.0.2 release removed the State type parameter from Location, this was technically a breaking change. To correct for this, I'm bumping this as a minor release. It won't affect runtime code, but it may affect your development experience and tests if you were using that parameter.

The State type export is also restored, so you shouldn't have issues with installing React Router v6.

Oh, by the way, did you hear we released React Router v6?

Full Changelog: remix-run/history@v5.0.3...v5.1.0

v5.0.3

Compare Source

Fixed parsePath adding incorrectly adding search

v5.0.2

Compare Source

Just a couple fixes:

  • Fixed search params persisting on redirects
  • Changed the location.state type to any and removed the generic on Location

Full Changelog: remix-run/history@v5.0.1...v5.0.2

v5.0.1

Compare Source

This patch release contains a tiny TypeScript update to use the built-in Partial utility for PartialPath and PartialLocation. We always love it when we can ship just a little less code!

🙏 Credits

Thanks to @​liuhanqu, @​hanquliu, @​chaance and @​mjackson for your contributions!

v5.0.0

Compare Source

Today we are very pleased to announce the stable release of history version 5!

Overview

This version includes many enhancements and fixes a few important issues with the library.

New Features
  • Hash history now has support for location.state
  • Better history.block API, with support for retrying transitions
  • Full TypeScript declarations and IntelliSense docs
  • Adds development and production builds for <script type=module> users
  • Both browser and hash history have support for iframes (custom window objects)
  • About 50% smaller than v4 (and no dependencies)
Bugfixes
  • Fixed some long-standing encoding issues with location.pathname
  • Removed unfixable warnings about pushing the same path in hash history
  • Renamed browser global to HistoryLibrary so it doesn't conflict with window.History
Breaking Changes
  • Removed support for browsers that do not support the HTML5 history API (no pushState)
  • Removed relative pathname support in hash history and memory history
  • Removed getUserConfirmation, keyLength, and hashType APIs

Usage

Please refer to our installation guide for instructions about how to install the library.

There is also a getting started guide as well as a complete API reference in the docs folder.

We are very excited about this release, especially because it will serve as the foundation for the upcoming release of React Router version 6.

Thank you for your support. Enjoy! 😀

v4.10.1

Compare Source

  • Fixes some issues with using hash history on a page with a <base> tag (#​577, #​578)

v4.10.0

Compare Source

  • Allows basename URL prefixes with special regex characters (#​566, #​544)
microsoft/monaco-editor (monaco-editor)

v0.52.2

Compare Source

Changes:

This list of changes was auto generated.

v0.52.0

Compare Source

  • Comment added inside of IModelContentChangedEvent

v0.51.0

Compare Source

  • New fields IEditorOptions.placeholder and IEditorOptions.compactMode
  • New fields IGotoLocationOptions.multipleTests and IGotoLocationOptions.alternativeTestsCommand
  • New field IInlineEditOptions.backgroundColoring
  • New experimental field IEditorOptions.experimental.useTrueInlineView
  • New options CommentThreadRevealOptions for comments

Contributions to monaco-editor:

v0.50.0

Compare Source

  • New field IEditorMinimapOptions.sectionHeaderLetterSpacing
  • New field IOverlayWidgetPosition.stackOridinal
  • New field EmitOutput.diagnostics
  • New event IOverlayWidget.onDidLayout
  • New events ICodeEditor.onBeginUpdate and ICodeEditor.onEndUpdate
  • HoverVerbosityRequest.action -> HoverVerbosityRequest.verbosityDelta
  • MultiDocumentHighlightProvider.selector changed from LanguageFilter to LanguageSelector
  • New optional parameters in getEmitOutput: emitOnlyDtsFiles and forceDtsEmit

Contributions to monaco-editor:

v0.49.0

Compare Source

  • New proposed editorHoverVerbosityLevel API
  • New proposed newSymbolNamesProvider API

Contributions to monaco-editor:

v0.48.0

Compare Source

Additions
  • Various bug fixes
  • Minimap Section Headers (see config option showRegionSectionHeaders)
  • Diff Editor Gutter Menu (see config option renderGutterMenu)
  • InlineCompletionsProvider.handlePartialAccept has PartialAcceptInfo

Contributions to monaco-editor:

v0.47.0

Compare Source

Additions
  • Bug fixes
  • registerNewSymbolNameProvider
  • Experimental registerInlineEditProvider

v0.46.0

Compare Source

  • Bug fixes

v0.45.0

Compare Source

Breaking Changes
  • wordBasedSuggestions: boolean -> 'off' | 'currentDocument' | 'matchingDocuments' | 'allDocuments'
  • occurrencesHighlight: boolean -> 'off' | 'singleFile' | 'multiFile'
Additions
  • Many bug fixes
  • IEditorScrollbarOptions.ignoreHorizontalScrollbarInContentHeight
  • IDiffEditor.goToDiff
  • IDiffEditor.revealFirstDiff
w33ble/rison-node (rison-node)

v2.1.1

Compare Source

  • fix: handle keys that start with numbers f0e10e3

v2.1.0

Compare Source

  • feat: add decode_uri method #2
  • feat: add rison.unquote, use in decode_uri 41ba487
  • v2.1.0 71c9910

v2.0.0

Compare Source

v1.0.2 (17 April 2018)
v1.0.1 (17 April 2018)
styled-components/styled-components (styled-components)

v6.1.13

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.12...v6.1.13

v6.1.12

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.11...v6.1.12

v6.1.11

Compare Source

What's Changed

Full Changelog: styled-components/styled-components@v6.1.10...v6.1.11

v6.1.10

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.9...v6.1.10

v6.1.9

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.8...v6.1.9

v6.1.8

Compare Source

Revert adding peerDependencies from v6.1.7; apparently some package managers have differing behaviors around peerDependenciesMeta[package].optional which is causing issues. Will revisit at a later date if possible.

Full Changelog: styled-components/styled-components@v6.1.7...v6.1.8

v6.1.7

Compare Source

What's Changed

  • chore: add all missing peer dependency statements by @​quantizor in https://github.com/styled-components/styled-components/pull/4243

    NOTE: this change may cause some installed dependency duplication until this NPM bug is addressed but yarn and pnpm have correct behavior. Bun also has a similar bug.

    Overall these changes ensure that styled-components is specifying a known working version of all utilized libraries, while instructing the client package manager that higher semver-compliant versions are permissible and should work, assuming the relevant libraries are compliant in practice.

Full Changelog: styled-components/styled-components@v6.1.6...v6.1.7

v6.1.6

Compare Source

What's Changed

Full Changelog: styled-components/styled-components@v6.1.5...v6.1.6

v6.1.5

Compare Source

What's Changed

Full Changelog: styled-components/styled-components@v6.1.4...v6.1.5

v6.1.4

Compare Source

What's Changed

Full Changelog: styled-components/styled-components@v6.1.3...v6.1.4

v6.1.3

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.2...v6.1.3

v6.1.2

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.1...v6.1.2

v6.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.0...v6.1.1

v6.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.9...v6.1.0

v6.0.9

Compare Source

fix bundling to not hardcode window (should fix some testing use cases that were incorrectly assuming a server environment when JSDOM and similar are in use)

Full Changelog: styled-components/styled-components@v6.0.8...v6.0.9

v6.0.8

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.7...v6.0.8

v6.0.7

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.6...v6.0.7

v6.0.6

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.5...v6.0.6

v6.0.5

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.4...v6.0.5

v6.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.3...v6.0.4

v6.0.3

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.2...v6.0.3

v6.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.0.1...v6.0.2

v6.0.1

Compare Source

Fixed an issue where a dev-time warning was being triggered too eagerly.

Full Changelog: styled-components/styled-components@v6.0.0...v6.0.1

v6.0.0

Compare Source

yarn add styled-components

Changed in this version

  • fix(types): prevent prop bleed on styling properties (fixes #​4053, c0f8015)
  • feat(types): ship csstype via "CSS" namespace (e6c4f0a)
  • chore: bump stylis to 4.3 (fixes #​4007, fa58875)
  • reduced some sources of unnecessary branching logic

Breaking changes in v6

Migration guide → https://styled-components.com/docs/faqs#what-do-i-need-to-do-to-migrate-to-v6

  • now using stylis v4 (if using stylis-plugin-rtl you'll need to upgrade to the newer version)
  • styled-components now provides its own types; if you installed @types/styled-components in the past, you'll want to remove it
  • dropped $as and $forwardedAs props (use as or forwardedAs)
  • dropped automatic prop filtering; use transient props ($ prefix) for stuff you don't want to be passed to child component / HTML
  • StyleSheetManager
    • replaced disableVendorPrefixes with enableVendorPrefixes prop
    • dropped automatic vendor prefixing; if you need to support older browsers, you can re-enable it easily with the above prop
      <StyleSheetManager enableVendorPrefixes>
        {/* your React tree and ThemeProvider goes here */}
      </StyleSheetManager>
  • dropped deprecated withComponent API (87f511a); use "as" prop instead
  • node >= 14 needed

Full Changelog: styled-components/styled-components@v5.3.7...v6.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Renovate Bot.

@elastic-renovate-prod elastic-renovate-prod bot added backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:SharedUX Team label for AppEx-SharedUX (formerly Global Experience) labels Nov 20, 2024
@elastic-renovate-prod elastic-renovate-prod bot requested a review from a team November 20, 2024 15:08
@elasticmachine
Copy link
Contributor

Pinging @elastic/appex-sharedux (Team:SharedUX)

@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-@elasticappex-sharedux-dependencies branch from 10da17b to ff838fa Compare November 20, 2024 19:10
@tsullivan
Copy link
Member

/ci

@elasticmachine
Copy link
Contributor

elasticmachine commented Nov 21, 2024

@Dosant
Copy link
Contributor

Dosant commented Nov 22, 2024

I think we should use this list as an issue list, but carefully upgrade the deps one-by-by

@tsullivan
Copy link
Member

tsullivan commented Nov 27, 2024

I think we should use this list as an issue list, but carefully upgrade the deps one-by-by

@Dosant, I agree. And a similar need for #200955 and #200959

@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-@elasticappex-sharedux-dependencies branch from ff838fa to 2f58be7 Compare December 4, 2024 22:22
@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-@elasticappex-sharedux-dependencies branch from 2f58be7 to b92cc0c Compare December 9, 2024 15:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes renovate:blocked Team:SharedUX Team label for AppEx-SharedUX (formerly Global Experience)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants