Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

chore(deps): update dependency @nodegui/nodegui to v0.63.0 #30

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 26, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nodegui/nodegui 0.2.1 -> 0.63.0 age adoption passing confidence

Release Notes

nodegui/nodegui (@​nodegui/nodegui)

v0.63.0

Compare Source

Added:

Changes:

  • Refactored and improved the drag and drop related event classes. #​1034

v0.62.0

Compare Source

Changes:

  • Give QTableWidget the correct superclass #​1018
  • QTabWidget addTab and insertTab icons made optional #​1023

v0.61.2

Compare Source

Changed:

  • Make it possible to subclass QScrollArea in plugins.

v0.61.1

Compare Source

Changed:

  • Make QScrollArea generic

v0.61.0

Compare Source

Added:

Changed:

  • Expose EventListenerOptions and EventWidget types (#​1011)

v0.60.0

Compare Source

Added:

  • Many QMenu and QMenuBar methods, properties, and signals.

v0.59.2

Compare Source

Fixes:

  • Fix QWidget.layout()

v0.59.1

Compare Source

Minor release.

Changes:

  • Move QSplitter code into a macro.h file for easier subclassing in plugins.

v0.59.0

Compare Source

Added Input Method related events and methods.

Changes:

  • Added QWidget.updateMicroFocus() method
  • Added QInputMethodEvent class
  • Added QInputMethodQueryEvent class
  • Added QWidget.inputMethodHints() & QWidget.setInputMethodHints()

v0.58.0

Compare Source

This is the first stable release of NodeGui based on Qt 6 instead of the older Qt 5. This release is also paired with an upgrade in qode to match NodeJs v18.12.1.

The biggest change in Qt 6 which may affect NodeGui based applications is the High DPI support. If you are using nodegui plugins, they may have to be upgraded to support Qt6 too.

Changes:

  • Upgraded to Qt 6
  • Requires package @nodegui/qode version 18.12.1 (or higher).
  • Added applicationDisplayNameChanged & lastWindowClosed signals to QApplication
  • QPainter gained many methods related to drawing with fractional pixel sizes and HiDPI rendering.
  • QTableWidget gained methods clearSelection(), selectAll(), scrollToBottom(), and scrollToTop().

v0.57.3

Compare Source

Fixes:

  • Events which were set to fire after the default processing didn't have the event object passed to the handler.

v0.57.2

Compare Source

What's Changed

New Contributors

Full Changelog: nodegui/nodegui@v0.57.1...v0.57.2

v0.57.1

Compare Source

What's Changed

Full Changelog: nodegui/nodegui@v0.57.0...v0.57.1

v0.57.0: 0.57.0

Compare Source

Added:

  • windowStateChanged signal to QWindow
  • horizontalScrollBar() & verticalScrollBar() to QAbstractScrollArea
  • Many methods to QSize and QSizeF

v0.56.0: 0.56.0

Compare Source

Added:

  • QIcon gained actualSize(), addFile(), addPixmap(), availableSizes(), isNull(), name(), paint(), and swap() methods

v0.55.0: 0.55.0

Compare Source

Added:

  • done() and accept() to QDialog and subclasses and cleaned up the hierarchy situation
  • sizeHintForIndex() and visualRect() to QAbstractItemView

Changes:

  • Updated the qode dependency to the latest version to pull in important IO performance related fixes and fixes for Windows.

v0.54.0: 0.54.0

Compare Source

  • Added basic QAbstractItemDelegate support to allow plugins to create their own custom item delegates.

v0.53.0: 0.53.0

Compare Source

Added:

  • Option to QObject.addEventListener() to receive QEvents after default processing has happened.
  • Added guide about advanced event handling: https://docs.nodegui.org/docs/guides/advanced-qevent-handling
  • QWidget.contentsRect()
  • QWidget.childAt()
  • QWidget.focusProxy()
  • QWidget.focusWidget()
  • QWidget.isAncestorOf()
  • QWidget.isEnabledTo(()
  • QWidget.isVisibleTo()
  • QWidget.nativeParentWidget()
  • QWidget.nextInFocusChain()
  • QWidget.parentWidget()
  • QWidget.previousInFocusChain()
  • QWidget.setFocusProxy()
  • QWidget.stackUnder()
  • QWidget.window()

v0.52.0: 0.52.0

Compare Source

This release contains a big update to how NodeGui manages the memory and lifecycle for QObject instances and their subclasses.

Note: These changes are NOT 100% backwards compatible with previous versions of NodeGui.

Highlights

  • JS side object hierarchy is now much closer to the Qt C++ API. Node* in between classes are gone. Every QObject is a subclass of QObject on the JS side just like in Qt C++.
  • Destruction of QObject instances is tracked and propagated to the JS wrappers resulting in fewer complete crashes / segfaults and replacing them with more useful null object exceptions on the JS side.
  • Added QObject methods related to object trees. QObject.parent() and QObject.children() return wrappers of the correct subclasses.
  • Wrappers in JS and on the C++ side are cached and only one is made for each backing C++ object. This results in less memory use, a speed increase, and now wrapper object identity tests are correct. i.e. myWidget.parent() === myWidget.parent().
  • Eliminated most stashing of object references in the JS wrappers. i.e. fewer memory leaks.
  • Added tools for debugging memory problems.

Detailed API Changes

On the JavaScript / TypeScript side were these changes:

  • Added QObject.children()
  • Added QObject.parent()
  • Added QObject.delete()
  • Added QObject.deleteLater()
  • Removed NodeObject, use QObject instead.
  • Removed NodeWidget, use QWidget instead.
  • Removed NodeFrame, use QFrame instead.
  • Removed NodeLayout, use QLayout instead.
  • Removed NodeDateTimeEdit, use QDateTimeEdit instead.
  • Removed NodeDialog, use QDialog instead.
  • Removed NodeTextEdit, use QTextEdit instead.
  • Removed NodeListView, use QListView instead.
  • Removed NodeTableView, use QTableView instead.
  • Removed NodeHeaderView, use QHeaderView instead.
  • QWidget.layout is no longer a property, it is a method like in C++ Qt, i.e. QWidget.layout(). Changing it is done with QWidget.setLayout().
  • The flexbox support in QScrollArea caused some weird bugs but they have been fixed. If you need a flexbox layout inside a QScrollArea then add a single content widget use flexbox on its children.

Upgrade Notes for Application Developers

The biggest change for applications is the removal of Node* classes. Replace mentions of these classes with their normal Qt counterparts. See "Detailed API Changes" above.

Upgrade Notes for Plugin developers

This version is mostly likely not backwards compatible on a binary level. You should update your plugin to require this version of NodeGui and then fix any errors.

There are some changes needed to update wrappers for QObject subclasses.

Registering wrappers

C++ wrapper classes should use the QOBJECT_REGISTER_WRAPPER macro in their init() method to register the mapping from a QObject subclass to a C++ wrapper.

For example, in qdial_wrap.cpp we have:

QOBJECT_REGISTER_WRAPPER(QDial, QDialWrap);

This says that instances of QDial can be wrapped with QDialWrap. This mapping is used by methods such as QObject.parent() and QObject.children() which need to take opaque C++ objects and wrap them before returning them.

The same needs to happen on the JS side too. In the matching wrapper JS class, the JS wrapper needs to be registered with wrapperCache, mapping it to the name of its C++ wrapper counterpart. For QDial this looks like:

const { wrapperCache } = require("@​nodegui/nodegui");

// ...
wrapperCache.registerWrapper('QDialWrap', QDial);
Using the C++ Wrapper Cache

Finally, if you have a wrapper which needs to return another QObject instance, you can use the wrapper cache directly and let it choose the correct wrapper or a cached one. The implementation of QObject.parent() demonstrates this:

  Napi::Value parent(const Napi::CallbackInfo& info) {
    Napi::Env env = info.Env();
    QObject* parent = this->instance->parent();
    if (parent) {
      return WrapperCache::instance.getWrapper(env, parent);
    } else {
      return env.Null();
    }
  }

v0.51.0: 0.51.0

Compare Source

Features:

  • Add QWidget::grab() #​941 (thanks Jake Kerr)

v0.50.0: 0.50.0

Compare Source

Features:

  • Add QTimerEvent and QObject.startTimer() and QObject.killTimer()
  • Add QScreen.grabWindow()

Changes:

  • Make QTabBar.setTabButton() accept null
  • Make it possible to set stylesheets and bypass postcss

v0.49.0: 0.49.0

Compare Source

Added:

  • Add visibility related methods/event to QWindow
  • Add QMoveEvent

v0.48.0: 0.48.0

Compare Source

  • Add many of the methods for QLineEdit

v0.47.0: 0.47.0

Compare Source

Minor fixes and improvements:

  • Add QWidget.mapTo() and QWidget.mapFrom()
  • Fill in more values for QStylePixelMetric
  • Fix the default alignment in QGridLayout.addWidget() and QGridLayout.addLayout()

v0.46.0: 0.46.0

Compare Source

Changes:

  • Upgraded Qt to v5.15.2.
  • Added some methods to QWindow needed by apps to implement "Custom client-side window decorations".
  • Added QWidget.winId()
  • QWindow can now emit QEvent based events like normal widgets.
  • Added alignment parameter to QGridLayout.addWidget()

Bug fixes:

  • Make QLineEdit.setText() accept an empty string

v0.45.4: 0.45.4

Compare Source

Fix:

  • Trigger the Linux code to set position independent binary generation.

v0.45.3: 0.45.3

Compare Source

Fix:

  • Add some missing binaries files to the Windows precompiled tarball. These files are only needed if you are building additional binary NodeGui plugins.

v0.45.0: 0.45.0

Compare Source

This only contains changes to how NodeGui is built and installed. Previously, the C++ parts of NodeGui would be compiled at npm install time. Now we are precompiling all of NodeGui including the C++ binaries and they are downloaded during install. You should see faster and more robust installs. The requirement to have a C++ compiler and CMake available just to do JS based development is gone too.

The C++ binary is placed in build/Release like before. If there are any problems, please open an issue in GitHub.

v0.44.2: 0.44.2 test release

Compare Source

ignore this. Just testing the CI/CD setup.

v0.44.0: 0.44.0

Compare Source

  • Add even more QWidget methods and properties

v0.43.0: 0.43.0

Compare Source

  • Add QResizeEvent class
  • Add QWidget.setFixedHeight(), QWidget.setFixedWidth(), and QWidget.sizeHint()
  • Add QWidget.setParent()

v0.42.0: 0.42.0

Compare Source

  • Add signal support to QClipboard
  • Add support for QWindow and QScreen and their signals.
  • Remove QDesktopWidget. (Use QWindow and QScreen instead)
  • Clean up our use of V8's HandleScope in the C++ and avoid playing with undefined behaviour.

v0.41.0: 0.41.0

Compare Source

  • Add support for QSplitter (thanks NinZine)
  • Treat args to QPainter.translate(), scale(), and rotate() as doubles, not ints. (#​887)
  • Add a bunch more methods to QWidget
  • Add QBrush as an argument to QPainter.setBrush() (thanks NinZine)
  • Fix: Don't delete QObjects which have a parent

v0.40.1

Compare Source

v0.39.1: 0.39.1

Compare Source

Fix QPen which was simply broken.

v0.39.0: 0.39.0

Compare Source

  • Added more QPainter methods
  • Added QSizeF and QFontMetricsF classes

v0.38.0: 0.38.0

Compare Source

  • Added QStyle.polish(), QStyle.unpolish(), and QWidget.style()
  • Added setSizePolicy(), set max/min width/height methods to QWidget
  • Added more QFontMetrics methods
  • Added count() to QStackedWidget
  • Added dumpObjectTree() & dumpObjectTree() to QObject
  • Added a bunch of QHeaderView methods
  • Fixed QWidgetTableItem wrapper. (Thanks NathanaelA)

v0.37.3: 0.37.3

Compare Source

Fixes:

  • C++ compile problem on Windows with the default MS C compiler shipped with Nodejs.
  • QTableView.verticalHeader() was returning the wrong header object.

v0.37.0: 0.37.0

Compare Source

This release features a lot of work round Qt's Model View classes. It is now possible to subclass QAbstractItemModel and QAbstractTableModel to create your own models to use with QTableView. This is a Work in Progress, but is already useful for many use cases.

  • QAbstractItemView received many methods
  • QItemSelectionModel was added.
  • QFont received bold methods
  • QWidget received more geometry related methods.
  • Added QStyleFactory. You can now set your application widget style on QApplication too.

v0.36.0: 0.36.0

Compare Source

Upgrades qode to v16.4.0 (upgrades nodejs to v16.4.0)
Bugfix: Promises/microtasks not running.

v0.35.0: 0.35.0

Compare Source

  • Add QApplication.setStyleSheet()
  • Add QColor.rgb() and QColor.rgba()
  • Add a (basic) QPalette

v0.34.0: 0.34.0

Compare Source

  • Extra methods for QPainter, string lists in QVariant, and default args for QClipboard (#​858)
  • Add QInputEvent methods (#​853)
  • Export SliderAction (#​852)
  • Add way for JS to stop event processing in QObject::event() (#​850 )

v0.33.3: 0.33.3

Compare Source

Testing auto release

v0.33.2: 0.33.2

Compare Source

Workflow checks

v0.33.1: 0.33.1

Compare Source

adds prebuilt mini qt support for M1 macs

v0.33.0: 0.33.0

Compare Source

#​848

v0.32.1: 0.32.1

Compare Source

https://github.com/nodegui/nodegui/pull/847

v0.32.0: 0.32.0

Compare Source

https://github.com/nodegui/nodegui/pull/845

v0.31.0: 0.31.0

Compare Source

https://github.com/nodegui/nodegui/pull/844

v0.30.3: 0.30.3

Compare Source

https://github.com/nodegui/nodegui/pull/837

v0.30.2: 0.30.2

Compare Source

Yoga Layout version bump
ScrollArea fix

v0.30.1: 0.30.1

Compare Source

Bug fix: Makes sure post install script is running

v0.30.0: 0.30.0

Compare Source

Flex layout buggy behaviour fix: https://github.com/nodegui/nodegui/pull/814
QImage setPixelColor fix
QFontemetrics added

v0.29.0: 0.29.0

Compare Source

Typescript v4 support
QImage support

v0.28.1: 0.28.1

Compare Source

Adds support for using mirrors when downloading qt

v0.28.0: 0.28.0

Compare Source

QTableWidget and QTableWidgetItem
dep updates

v0.27.0: 0.27.0

Compare Source

Adds QDesktopWidget

v0.26.0: 0.26.0

Compare Source

Adds QSvgWidget

v0.25.0: 0.25.0

Compare Source

  • Fixes QTableWidget.setHorizontalHeaderItem crash (#​633)
  • Fixes constructor types (#​634)
  • Add QIcon support to QTreeWidgetItem. (#​657)
  • QTableWidget SelectedRanges function fix (#​663)
  • Added setFocus to QWidget (#​661) (#​669)

v0.24.0: 0.24.0

Compare Source

Bug fixes for:

  • dpi scaling
  • sibling ordering
  • win 10 big obj build error

Adds QDrag

v0.23.1: 0.23.1

Compare Source

Adds QMimeData, additional methods to QUrl, and more Dropping support

v0.23.0: 0.23.0

Compare Source

Adds QMouseWheelEvent
Adds QTabletEvent
Adds QNativeGestureEvents
Adds Drag and Drop events and support

Thanks a lot @​swittk

v0.22.0: 0.22.0

Compare Source

QGridLayout
Yoga fixes for latest gcc

v0.21.0: 0.21.0

Compare Source

Plugin cmake fix
QWidget additional getters

v0.20.0: 0.20.0

Compare Source

fromString for QDate related classes
QGraphicsShadow support
QTreewidget methods
Additional Qpainter support

Bump to qode v2.1.0 - nodejs v14.2.0

v0.19.0: 0.19.0

Compare Source

QTextEdit and QTextBrowser added
Bug fixes related to multiple widgets
Bring back event loop awaker.

v0.18.2

Compare Source

v0.18.1: 0.18.1

Compare Source

Fixes contextmenu issues
Updates qtreewidget

v0.18.0: 0.18.0

Compare Source

Adds QStandardModel - Thanks @​mspencer92
Thanks @​feng8848 for all of the below
Add QDoubleSpinBox
Add QBrush
Add QListView and improve QListWidget
Add QErrorMessage
Add QFontDialog
Add QProgressDialog
Add QLCDNumber
dependency updates and security patches

v0.17.0: 0.17.0

Compare Source

QTabBar support
More QTreewidget functions
QColorDialog support
More tab functions
QDoubleSpinbox support
Memory and perf fixes

v0.16.1: 0.16.1

Compare Source

Adds performance fixes
Memoize once certain expensive widget functions

v0.16.0: 0.16.0

Compare Source

Adds QClipboard pixmap support
Security and performance improvements

v0.15.5: 0.15.5

Compare Source

Performance issue fixes for stylesheet re-render

v0.15.4

Compare Source

v0.15.3: 0.15.3

Compare Source

bumps artifact installer and adds precise checks for ensuring to install qt libs only when needed

v0.15.2: 0.15.2

Compare Source

Bugfix for windows: Adds proper qode.lib path

v0.15.1: 0.15.1

Compare Source

  • Switch to Using Qode 2.0 🚀 .
    This means now we should be able to develop plugins which use additional Qt libs that are now packed with default installation of nodegui quite easily.
    This also means you can use your own version of Qt as well (it can be any compatible version 5.1x or your own compiled version aswell). To do this just set QT_INSTALL_DIR environment variable and do an npm install.

  • Adds QSettings

  • QTabView support

  • QTab methods

  • QPicture

  • QFrame

  • Dependency version upgrades

  • Prebuild binaries have been switched off for this release since it requires a bit more work after Qode2.0 changes. But should be made available in the upcoming releases.

v0.13.4

Compare Source

QFontDatabase familites
Basic QScrollbar and bug fixes
QDateEdit and QTimeEdit bug fixes
MacOSX 10.9 and up support for prebuilt binaries

v0.13.3

Compare Source

Adds QInputDialog

v0.13.2

Compare Source

Bugfix for QMovie breaking on error.
Bugfix for delayed event delivery.

v0.13.1

Compare Source

Bug fix: Prebuilt binaries for windows now includes lib, node and exp files for plugin builds

v0.13.0

Compare Source

Major release 🎉

  • Adds prebuilt binary support. Now for most cases there wont be a native binary build step. Right after a quick npm install everything should work out of the box.
  • Adds fonts to QAction
  • Automatic docs - the docs you see are autogenerated and are always up to date.
  • Adds QFont
  • Adds QListWidget
  • Adds QMessageBox and QDialog - You can create modals now with ease.
  • Adds QDateTime and other date related classes
  • Adds QButtonGroup
  • Adds QSlider
  • Adds more methods to QTreeWidget and related classes.
  • Adds QStatusBar support
  • Adds native nodegui plugin support for Windows platform 🔥
  • Adds more methods to QMenuBar - now create context menus.
  • Bug fixes and dependency updates.

v0.12.1: 0.12.1

Compare Source

Bugfix

Adds QComboBox setters
Fixes QObject inheritance for multiple widgets

v0.12.0: 0.12.0

Compare Source

QBoxLayout - InsertWidget and stretch
Typed event handlers - Now get autocomplete and typescript type checking support for all event handlers.

Breaking change:
Event handlers are now typed so the syntax is slightly different.

v0.11.0: 0.11.0

Compare Source

  • Added itemData and icon support for QComboBox
  • Adds QTreeWidget
  • Adds QPainter 🚀
  • Adds QColor, QPoint
  • Adds QSystemTrayIcon notification message

Breaking change:

  • widget.geometry() now return QRect instance instead of plain js object.

v0.10.0: 0.10.0

Compare Source

Adds QFileDialog
More events and signals to QSystemTrayIcon
Add zIndex like methods to QWIdget
Adds custom font support using QFontDatabase
Adds QTableWidget support
Adds QToolButton
Bugfixes and more methods for QStackwidget and QLabel
Performance improvements for FlexLayout (via throttling)

v0.9.1: 0.9.1

Compare Source

Bug fix: flex layout insertbeforeChild
QVariant types

v0.9.0: 0.9.0

Compare Source

Adds QComboxBox - select widget
Adds QGroupBox
Adds style() getter for QApplication
FlexLayout bugfixes
BoxLayout fixes

v0.8.0: 0.8.0

Compare Source

Adds QBoxLayout
Fixes layout issues with FlexLayout
Adds QStackedWidget

v0.7.0: 0.7.0

Compare Source

Adds QMovie - for gifs and webp
Adds AbstractButton
Bugfix: default font issue fix

v0.6.9

Compare Source

v0.6.8: 0.6.8

Compare Source

Bugfix: inline stylesheets, removes spdlog

v0.6.7: 0.6.7

Compare Source

QMainWindow takeCentralWidget

v0.6.6: 0.6.6

Compare Source

Flexlayout calculation bugfixes

v0.6.5: 0.6.5

Compare Source

Patch release to revert to the default flex config

v0.6.3: 0.6.3

Compare Source

Adds QObject
Adds basic QVariant support.
QLinedit - echo mode
FlexLayout - Adds support for dynamic layouts. Now FlexLayout calculates its size by itself.
Test cases and bug fixes
QMouseEvent wrapper
QAbstract button.

~Breaking Change~

~The default flex style is changed to that of web instead of mobile.~
~So default flex-direction is now 'row' instead of 'column' and default stretching behaviour also matches web.~ This is a breaking change in terms of styling. -> reverted in 0.6.5

Other Major changes

So now on any widget you could do:

widget.setProperty('propertyName', propertyValue); 

example:

button.setProperty('text', 'Hello world');

This will work for any public property on a widget or component that inherits from QObject.
To see the list of properties see qt docs for now. Example doc: https://doc.qt.io/qt-5/qabstractbutton.html#properties

v0.5.1

Compare Source

v0.5.0

Compare Source

v0.4.0: 0.4.0

Compare Source

QAction - seperator
Bugfix for double memory free on deletion of parent widget
QLabel - openexternallink
QScrollArea - setWidgetResizable and takeWidget fix
QMainWindow - center

v0.3.1: 0.3.1

Compare Source

Adds QIcon - isMask setIsMask Thanks @​dimitarnestorov
Adds QAction - checkable and checked
Fixes broken build on Ubuntu 19.10

v0.3.0: 0.3.0 - NodeGui

Compare Source

Adds SystemTrayIcon support
Adds Menu support
Adds MenuBar support
Adds QAction for menu and context menus on tray icons
Adds QShortcut for Keyboard shortcuts
Bugfix: Crash on KeyEvent


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 16710fb to a89451e Compare October 30, 2019 22:41
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.3.0 Update dependency @nodegui/nodegui to v0.3.1 Oct 30, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from a89451e to a227eb9 Compare November 8, 2019 23:28
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.3.1 Update dependency @nodegui/nodegui to v0.4.0 Nov 8, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from a227eb9 to 6714bee Compare November 10, 2019 00:16
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.4.0 Update dependency @nodegui/nodegui to v0.5.0 Nov 10, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 6714bee to 602757b Compare November 10, 2019 00:23
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.5.0 Update dependency @nodegui/nodegui to v0.5.1 Nov 10, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 602757b to f0953a7 Compare November 19, 2019 00:47
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.5.1 Update dependency @nodegui/nodegui to v0.6.0 Nov 19, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from f0953a7 to 07d74cf Compare November 19, 2019 01:33
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.6.0 Update dependency @nodegui/nodegui to v0.6.1 Nov 19, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 07d74cf to 7363dc7 Compare November 19, 2019 09:34
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.6.1 Update dependency @nodegui/nodegui to v0.5.1 Nov 19, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 7363dc7 to 0d7d81d Compare November 21, 2019 23:20
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.5.1 Update dependency @nodegui/nodegui to v0.6.2 Nov 21, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 0d7d81d to 4bc23cc Compare November 21, 2019 23:26
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.6.2 Update dependency @nodegui/nodegui to v0.6.3 Nov 21, 2019
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.6.3 Update dependency @nodegui/nodegui to v0.6.5 Nov 22, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 4bc23cc to 09da91d Compare November 22, 2019 18:44
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 09da91d to 0b78e13 Compare December 15, 2019 01:55
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.6.5 Update dependency @nodegui/nodegui to v0.9.1 Dec 15, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 0b78e13 to fce29c6 Compare December 22, 2019 07:52
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.9.1 Update dependency @nodegui/nodegui to v0.11.0 Dec 22, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from fce29c6 to b896ea2 Compare December 31, 2019 10:58
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.11.0 Update dependency @nodegui/nodegui to v0.12.1 Dec 31, 2019
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from b896ea2 to 56c0004 Compare February 8, 2020 14:58
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.12.1 Update dependency @nodegui/nodegui to v0.13.4 Feb 8, 2020
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 56c0004 to 5fe06bf Compare March 14, 2020 12:58
@renovate renovate bot changed the title Update dependency @nodegui/nodegui to v0.13.4 Update dependency @nodegui/nodegui to v0.15.5 Mar 14, 2020
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.30.2 chore(deps): update dependency @nodegui/nodegui to v0.30.3 Jun 15, 2021
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from da6f11b to 5810c9e Compare October 18, 2021 15:22
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.30.3 chore(deps): update dependency @nodegui/nodegui to v0.40.1 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 5810c9e to be63b3c Compare March 7, 2022 11:07
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.40.1 chore(deps): update dependency @nodegui/nodegui to v0.47.0 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from be63b3c to 7e2289b Compare April 24, 2022 23:45
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.47.0 chore(deps): update dependency @nodegui/nodegui to v0.50.0 Apr 24, 2022
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 7e2289b to 8932389 Compare June 18, 2022 23:27
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.50.0 chore(deps): update dependency @nodegui/nodegui to v0.54.0 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 8932389 to b489252 Compare September 25, 2022 11:01
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.54.0 chore(deps): update dependency @nodegui/nodegui to v0.57.1 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from b489252 to e97aba1 Compare November 20, 2022 10:02
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.57.1 chore(deps): update dependency @nodegui/nodegui to v0.57.2 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from e97aba1 to 3ef9ce5 Compare March 16, 2023 07:42
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.57.2 chore(deps): update dependency @nodegui/nodegui to v0.59.0 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 3ef9ce5 to 8c53478 Compare April 17, 2023 10:07
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.59.0 chore(deps): update dependency @nodegui/nodegui to v0.59.1 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 8c53478 to f011c1c Compare May 28, 2023 09:36
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.59.1 chore(deps): update dependency @nodegui/nodegui to v0.60.0 May 28, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from f011c1c to 7377221 Compare June 10, 2023 12:36
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.60.0 chore(deps): update dependency @nodegui/nodegui to v0.61.0 Jun 10, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 7377221 to 78a5950 Compare August 4, 2023 16:38
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.61.0 chore(deps): update dependency @nodegui/nodegui to v0.61.1 Aug 4, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 78a5950 to b6f959d Compare August 5, 2023 16:09
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.61.1 chore(deps): update dependency @nodegui/nodegui to v0.61.2 Aug 5, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from b6f959d to 9c5428c Compare August 28, 2023 21:21
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.61.2 chore(deps): update dependency @nodegui/nodegui to v0.62.0 Aug 28, 2023
@renovate renovate bot force-pushed the renovate/nodegui-nodegui-0.x branch from 9c5428c to 83b1e20 Compare November 18, 2023 14:12
@renovate renovate bot changed the title chore(deps): update dependency @nodegui/nodegui to v0.62.0 chore(deps): update dependency @nodegui/nodegui to v0.63.0 Nov 18, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants