Skip to content

fix(deps): update all #482

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

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

fix(deps): update all #482

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 20, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
bulma-clean-theme 0.13.3 -> 0.14.0 age adoption passing confidence minor
fyne.io/fyne/v2 v2.5.5 -> v2.6.0 age adoption passing confidence require minor
github.com/antchfx/htmlquery v1.3.3 -> v1.3.4 age adoption passing confidence require patch
github.com/moov-io/base v0.53.0 -> v0.54.3 age adoption passing confidence require minor
github.com/urfave/cli/v2 v2.4.0 -> v2.27.6 age adoption passing confidence require minor
github.com/xrash/smetrics 039620a -> 686a1a2 age adoption passing confidence require digest
go (source) 1.23.4 -> 1.24.2 age adoption passing confidence toolchain minor
go 1.23.x -> 1.24.x age adoption passing confidence uses-with minor
golang 1.23-bookworm -> 1.24-bookworm age adoption passing confidence stage minor
golang.org/x/sync v0.11.0 -> v0.13.0 age adoption passing confidence require minor
golang.org/x/text v0.22.0 -> v0.24.0 age adoption passing confidence require minor
registry.access.redhat.com/ubi9/ubi-minimal 9.5-1733767867 -> 9.5-1742914212 age adoption passing confidence final patch
wdm "~> 0.1.1" -> "~> 0.2.0" age adoption passing confidence minor

Release Notes

chrisrhymes/bulma-clean-theme (bulma-clean-theme)

v0.14.0

Compare Source

  • Add cookie banner
  • Update Google Analytics to v4 and use consent mode
fyne-io/fyne (fyne.io/fyne/v2)

v2.6.0: With v2.6.0 Fyne is faster than ever and passing Go's race checks too :)

Compare Source

This massive update to Fyne introduces a new threading model that allows it to be a lot faster whilst being free of data races as well!
Developers who use background processing will need to make use of the new fyne.Do and anyone with custom widgets that make use of locking to provide thread safety can now remove it as all Fyne callbacks occur on the same goroutine.

Your app may need a few updates (logs will show you where behaviour changes should be added) but can see up to 3x speed increase depending on the number of graphical elements and how frequently they are updated.

Added
  • Added [fyne.Do] and [fyne.DoAndWait] to call from goroutines. This makes it possible to eliminate race conditions.
  • Add "Migrations" section to FyneApp.toml to mark migrations like fyneDo = true
  • Add Calendar and DateEntry widgets
  • Add a third state ([Check.Partial]) to the check widget (#​3576)
  • Add ability to select label text using new [Label.Selectable]
  • Support for storage on web driver (#​4634)
  • test: Add RenderToMarkup and RenderObjectToMarkup (#​5124)
  • Add ability to choose a text size for label widget (#​5561)
  • Show soft keyboard on Web build with mobile device (#​4394)
  • APIs for testing dialogs (#​2771)
  • Add ScrollToOffset functions to collection widgets
  • Add Prepend method to Accordion (#​5418)
  • Support Apple intel apps on M1/2 (using Rosetta) (#​3971)
  • Ability to turn off re-scaling when a window moves between monitors for Linux (#​5164)
  • Add functions to get text location for position (and vice-versa) with a TextGrid
  • Add support for scrolling many lines in TextGrid
  • Add Append function to TextGrid
  • Add Prepend function to Accordion
  • Support custom titles in file dialogs using SetTitleText
  • Add utility methods to handle colouring of SVG images
  • Add preference bind APIs for list (slice) types
  • Added Greek, Ukrainian & Chinese (Simplified) translations
Changed
  • All callbacks from Fyne drivers and widgets now call on the same goroutine
  • Shortcuts on menu items are now called before widget or canvas shortcuts (#​2627)
  • ActionItems in an Entry should now match the standard button size
  • Tidy the fyne CLI and moved to tools repo (#​4920)
  • When scroll bar is expanded, clicking above or below the bar scrolls up or down (#​4922)
  • Add generics to data binding package
  • File picker now ignores case (#​5113)
  • Consistent callback order for dialogs - data before OnClosed
  • Improve drop-shadow to show light from top position
  • load markdown images from origin when not a URL
  • Debug now disabled by default for WASM builds
  • Updated theme of inner window borders with circle style and more customisations
  • Change Accordion.OpenAll when used with single-open accordion to open the first item instead of none
Fixed
  • Fixed all known race conditions
  • Decouple clipboard from fyne.Window enhancement (#​4418)
  • Odd looking SelectEntry with long PlaceHolder (#​4430)
  • Crash when resizing mobile simulator window (#​5397)
  • Deadlock when creating widget too fast (#​3203)
  • Application crashes on .Resize() (#​5206)
  • Linux (ubuntu) menu shortcuts not working blocker (#​5355)
  • Slider snaps back to min-value on Android (#​5430)
  • SoftwareCanvas resize only works properly if it's the last step bug (#​5548)
  • Showing a disabled menu items with a non-SVG icon generates Fyne error bug (#​5557)
  • Trying to hide subsequently created popups in a goroutine results in Fyne runtime panic (#​5564)
  • Table passes negative index to onSelected function (#​4917)
  • storage.Move() fails to move directories (#​5493)
  • Tree and Table widgets refresh full content on any scroll or resize (#​5456)
  • Memory leak from widget renderers never being destroyed blocker (#​4903)
  • On MacOS SysTray menu does not show when clicked on an active space in second monitor (#​5223)
  • On MacOs systray tooltip does not show when full window app is active (#​5282)
  • Panic when opening and closing windows quickly bug (#​3280)
  • Goroutines showing same window at similar times can forget size races (#​4535)
  • Panic when confirming or dismissing file open dialog races (#​3279)
  • richImage may freeze the application in some cases. (#​3510)
  • Memory usage increases significantly per character in Entry (#​2969)
  • Submenus not working on mobile (#​5398)
  • ListWidget with data index out of bounds when modified bound data (#​5227)
  • After scrolling, first selection in a list jumps that item to the bottom of the container (#​5605)
  • Accordion could have incorrect layout with multiple items open
  • Prevent tapping within a popup from dismissing it, even if non-modal (#​5360)
  • Resolved performance issues in text and custom theme handling

This is obviously a big update - please get in touch if you have any questions or challenges adopting this new version.
See important upgrade notes at https://docs.fyne.io/api/v2.6/upgrading.

antchfx/htmlquery (github.com/antchfx/htmlquery)

v1.3.4

Compare Source

Update packages:

  • update golang.org/x/net from v0.7.0 to v0.33.0
  • update github.com/antchfx/xpath from v1.3.2 to v1.3.3
moov-io/base (github.com/moov-io/base)

v0.54.3

Compare Source

IMPROVEMENTS

  • feat: catch psql deadlock err

BUILD

  • build: update cloud.google.com/go/spanner to v1.79.0
  • build: update github.com/go-sql-driver/mysql to v1.9.2
  • build: update github.com/googleapis/go-sql-spanner to v1.13.0
  • build: update google.golang.org/grpc to v1.71.1

v0.54.2

Compare Source

BUILD

  • build(deps): bump golang.org/x/net from 0.35.0 to 0.36.0
  • build: bump cloud.google.com/go/alloydbconn from v1.14.1 to v1.15.0
  • build: bump cloud.google.com/go/spanner from v1.75.0 to v1.77.0
  • build: bump github.com/go-sql-driver/mysql from v1.8.1 to v1.9.0
  • build: bump github.com/googleapis/go-sql-spanner from v1.11.1 to v1.11.2
  • build: bump github.com/madflojo/testcerts from v1.3.0 to v1.4.0
  • build: bump github.com/prometheus/client_golang from v1.20.5 to v1.21.1
  • build: bump github.com/rickar/cal/v2 from v2.1.21 to v2.1.22
  • build: bump github.com/spf13/viper from v1.19.0 to v1.20.0

v0.54.1

Compare Source

v0.54.0 was accidently pushed as a breaking change by forcing upgrades to Go 1.24 - v0.54.1 has been released which does not require Go 1.24

BUILD

  • build(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0
  • build(deps): bump github.com/googleapis/go-sql-spanner to v1.11.1

v0.54.0

Compare Source

urfave/cli (github.com/urfave/cli/v2)

v2.27.6

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.5...v2.27.6

v2.27.5

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.4...v2.27.5

v2.27.4

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.3...v2.27.4

v2.27.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.2...v2.27.3

v2.27.2

Compare Source

What's Changed
New Contributors

Full Changelog: urfave/cli@v2.27.1...v2.27.2

v2.27.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.0...v2.27.1

v2.27.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.26.0...v2.27.0

v2.26.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.25.7...v2.26.0

v2.25.7

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.25.6...v2.25.7

v2.25.6

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.25.5...v2.25.6

v2.25.5

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.25.4...v2.25.5

v2.25.4

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.25.3...v2.25.4

v2.25.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.25.2...v2.25.3

v2.25.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.25.1...v2.25.2

v2.25.1

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.25.0...v2.25.1

v2.25.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.24.4...v2.25.0

v2.24.4

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.24.3...v2.24.4

v2.24.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.24.2...v2.24.3

v2.24.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.24.1...v2.24.2

v2.24.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.24.0...v2.24.1

v2.24.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.10...v2.24.0

v2.23.10

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.9...v2.23.10

v2.23.9

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.23.8...v2.23.9

v2.23.8

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.7...v2.23.8

v2.23.7

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.6...v2.23.7

v2.23.6

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.5...v2.23.6

v2.23.5

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.23.4...v2.23.5

v2.23.4

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.3...v2.23.4

v2.23.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.23.2...v2.23.3

Note. This is considered a minor release even though it has a new "feature" i.e support for int64slice for alstrc flags. The int64slice is verbatim copy of existing code and doesnt include any new behaviour compared to other altsrc flags.

v2.23.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.1...v2.23.2

v2.23.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.23.0...v2.23.1

v2.23.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.22.0...v2.23.0

v2.22.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.21.0...v2.22.0

v2.21.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.5...v2.21.0

v2.20.5

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.20.4...v2.20.5

v2.20.4

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.20.3...v2.20.4

v2.20.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.2...v2.20.3

v2.20.2

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.1...v2.20.2

v2.20.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.20.0...v2.20.1

v2.20.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.19.3...v2.20.0

v2.19.3

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.19.2...v2.19.3

v2.19.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.19.1...v2.19.2

v2.19.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.19.0...v2.19.1

v2.19.0

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.18.2...v2.19.0

v2.18.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.18.1...v2.18.2

v2.18.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.18.0...v2.18.1

v2.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.17.2...v2.18.0

v2.17.2

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.17.1...v2.17.2

v2.17.1

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.17.0...v2.17.1

v2.17.0

Compare Source

What's Changed

New Contributors

  • @​xwjdsh made their first contribution in [https://gith

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 requested a review from adamdecaf as a code owner March 20, 2023 00:57
@renovate
Copy link
Contributor Author

renovate bot commented Mar 20, 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: webui/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: watchman-search-ui@0.1.0
npm ERR! Found: react@18.2.0
npm ERR! node_modules/react
npm ERR!   react@"18.2.0" from the root project
npm ERR!   peer react@">=16.8.0" from @emotion/react@11.11.4
npm ERR!   node_modules/@emotion/react
npm ERR!     peerOptional @emotion/react@"^11.4.1" from @mui/material@5.0.0
npm ERR!     node_modules/@mui/material
npm ERR!       dev @mui/material@"5.0.0" from the root project
npm ERR!     peer @emotion/react@"^11.0.0-rc.0" from @emotion/styled@11.11.5
npm ERR!     node_modules/@emotion/styled
npm ERR!       peerOptional @emotion/styled@"^11.3.0" from @mui/material@5.0.0
npm ERR!       node_modules/@mui/material
npm ERR!         dev @mui/material@"5.0.0" from the root project
npm ERR!   1 more (@emotion/styled)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^17.0.2" from @mui/material@5.0.0
npm ERR! node_modules/@mui/material
npm ERR!   dev @mui/material@"5.0.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-05-04T18_10_51_948Z-debug-0.log

@codecov-commenter
Copy link

codecov-commenter commented Mar 20, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 9.67%. Comparing base (08d6f4f) to head (fe9b76d).
Report is 32 commits behind head on master.

Current head fe9b76d differs from pull request most recent head cc2311a

Please upload reports for the commit cc2311a to get more accurate results.

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@          Coverage Diff           @@
##           master    #482   +/-   ##
======================================
  Coverage    9.67%   9.67%           
======================================
  Files          39      39           
  Lines        2873    2873           
======================================
  Hits          278     278           
  Misses       2572    2572           
  Partials       23      23           

@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 3640b9a to 04594b9 Compare April 8, 2023 16:37
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ca24103 to 59c0f32 Compare April 13, 2023 12:45
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 42b9e39 to 32f2872 Compare April 27, 2023 16:20
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 5306a29 to e1435ce Compare May 9, 2023 04:57
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 32695d7 to 737aedf Compare May 19, 2023 00:24
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 49f6d3b to 0498da3 Compare May 26, 2023 18:12
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 250cb21 to 535f212 Compare June 4, 2023 12:41
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from c37bd49 to a79bd74 Compare April 6, 2025 14:20
@renovate renovate bot changed the title fix(deps): update all Update all Apr 6, 2025
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from f319f7b to 16fe95c Compare April 10, 2025 18:00
@renovate renovate bot changed the title Update all fix(deps): update all Apr 10, 2025
@renovate renovate bot force-pushed the renovate/all branch 16 times, most recently from 12079b6 to 821eb97 Compare April 16, 2025 14:28
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.

1 participant