You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,22 @@ project adheres to [Semantic Versioning](http://semver.org/).
8
8
(Unreleased)
9
9
==================
10
10
### Changed
11
+
### Added
12
+
### Fixed
13
+
14
+
3.0.0
15
+
==================
16
+
17
+
This release notably changes to using N-API. 🎉
18
+
19
+
### Changed
20
+
* Migrated to N-API (by way of node-addon-api) and removed libuv and v8 dependencies
11
21
* Defer the initialization of the `op` variable to the `default` switch case to avoid a compiler warning. (#2229)
12
22
* Use a `default` switch case with a null statement if some enum values aren't suppsed to be handled, this avoids a compiler warning. (#2229)
13
23
* Migrate from librsvg's deprecated `rsvg_handle_get_dimensions()` and `rsvg_handle_render_cairo()` functions to the new `rsvg_handle_get_intrinsic_size_in_pixels()` and `rsvg_handle_render_document()` respectively. (#2229)
14
24
* Avoid calling virtual methods in constructors/destructors to avoid bypassing virtual dispatch. (#2229)
15
25
* Remove unused private field `backend` in the `Backend` class. (#2229)
16
26
* Add Node.js v20 to CI. (#2237)
17
-
* Migrated to N-API (by way of node-addon-api) and removed libuv and v8 dependencies
0 commit comments