Skip to content

Commit fce9cd6

Browse files
authored
Merge pull request #67 from jaszhix/gjs-1.52
Apply upstream patches for improved GC
2 parents 050b695 + 90992e1 commit fce9cd6

File tree

117 files changed

+6390
-6893
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+6390
-6893
lines changed

COPYING

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Copyright (c) 2008 litl, LLC
22

3+
This project is dual-licensed as MIT and LGPLv2+.
4+
35
Permission is hereby granted, free of charge, to any person obtaining a copy
46
of this software and associated documentation files (the "Software"), to deal
57
in the Software without restriction, including without limitation the rights

Makefile-test.am

+14-40
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,6 @@ mock-js-resources.h: $(srcdir)/test/mock-js-resources.gresource.xml $(modules_re
3030
mock-js-resources.c: $(srcdir)/test/mock-js-resources.gresource.xml $(modules_resource_files)
3131
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir) --sourcedir=$(builddir) --generate --c-name mock_js_resources $<
3232

33-
mock_js_invalidation_resources_dir = $(top_srcdir)/test/gjs-test-coverage/cache_invalidation
34-
mock_js_invalidation_before_resources_files = \
35-
$(mock_js_invalidation_resources_dir)/before/resource.js \
36-
$(mock_js_invalidation_resources_dir)/before/mock-js-resource-cache-before.gresource.xml \
37-
$(NULL)
38-
mock_js_invalidation_after_resources_files = \
39-
$(mock_js_invalidation_resources_dir)/after/resource.js \
40-
$(mock_js_invalidation_resources_dir)/after/mock-js-resource-cache-after.gresource.xml \
41-
$(NULL)
42-
mock_js_invalidation_resources_files = \
43-
$(mock_js_invalidation_before_resources_files) \
44-
$(mock_js_invalidation_after_resources_files) \
45-
$(NULL)
46-
47-
mock-cache-invalidation-before.gresource: $(mock_js_invalidation_before_resources_files)
48-
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(mock_js_invalidation_resources_dir)/before $(mock_js_invalidation_resources_dir)/before/mock-js-resource-cache-before.gresource.xml
49-
mock-cache-invalidation-after.gresource: $(mock_js_invalidation_after_resources_files)
50-
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(mock_js_invalidation_resources_dir)/after $(mock_js_invalidation_resources_dir)/after/mock-js-resource-cache-after.gresource.xml
51-
5233
jsunit_resources_files := $(shell glib-compile-resources --sourcedir=$(srcdir)/installed-tests/js --generate-dependencies $(srcdir)/installed-tests/js/jsunit.gresources.xml)
5334
jsunit-resources.h: $(srcdir)/installed-tests/js/jsunit.gresources.xml $(jsunit_resources_files)
5435
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir)/installed-tests/js --sourcedir=$(builddir) --generate --c-name jsunit_resources $<
@@ -59,15 +40,11 @@ BUILT_SOURCES += mock-js-resources.c jsunit-resources.h jsunit-resources.c
5940

6041
EXTRA_DIST += \
6142
$(mock_js_resources_files) \
62-
$(mock_js_invalidation_resources_files) \
6343
$(srcdir)/test/mock-js-resources.gresource.xml \
64-
$(srcdir)/test/gjs-test-coverage/loadedJSFromResource.js \
6544
$(jsunit_resources_files) \
6645
$(NULL)
6746

6847
CLEANFILES += \
69-
mock-cache-invalidation-before.gresource \
70-
mock-cache-invalidation-after.gresource \
7148
mock-js-resources.c \
7249
jsunit-resources.c \
7350
jsunit-resources.h \
@@ -105,11 +82,6 @@ gjs_tests_gtester_SOURCES = \
10582
mock-js-resources.c \
10683
$(NULL)
10784

108-
gjs_tests_gtester_DEPENDENCIES = \
109-
mock-cache-invalidation-before.gresource \
110-
mock-cache-invalidation-after.gresource \
111-
$(NULL)
112-
11385
minijasmine_SOURCES = \
11486
installed-tests/minijasmine.cpp \
11587
jsunit-resources.c \
@@ -219,7 +191,6 @@ CLEANFILES += $(TEST_INTROSPECTION_GIRS) $(TEST_INTROSPECTION_TYPELIBS)
219191
common_jstests_files = \
220192
installed-tests/js/testself.js \
221193
installed-tests/js/testByteArray.js \
222-
installed-tests/js/testCoverage.js \
223194
installed-tests/js/testExceptions.js \
224195
installed-tests/js/testEverythingBasic.js \
225196
installed-tests/js/testEverythingEncapsulated.js \
@@ -253,24 +224,26 @@ jasmine_tests += installed-tests/js/testGDBus.js
253224
endif
254225

255226
if ENABLE_GTK
256-
jasmine_tests += \
257-
installed-tests/js/testGtk.js \
258-
installed-tests/js/testLegacyGtk.js \
227+
jasmine_tests += \
228+
installed-tests/js/testGtk.js \
229+
installed-tests/js/testGObjectDestructionAccess.js \
230+
installed-tests/js/testLegacyGtk.js \
259231
$(NULL)
260232
endif
261233

262234
if ENABLE_CAIRO
263235
jasmine_tests += installed-tests/js/testCairo.js
264236
endif
265237

266-
EXTRA_DIST += \
267-
$(common_jstests_files) \
268-
installed-tests/js/testCairo.js \
269-
installed-tests/js/testGtk.js \
270-
installed-tests/js/testGDBus.js \
271-
installed-tests/js/testLegacyGtk.js \
272-
installed-tests/extra/gjs.supp \
273-
installed-tests/extra/lsan.supp \
238+
EXTRA_DIST += \
239+
$(common_jstests_files) \
240+
installed-tests/js/testCairo.js \
241+
installed-tests/js/testGtk.js \
242+
installed-tests/js/testGDBus.js \
243+
installed-tests/js/testGObjectDestructionAccess.js \
244+
installed-tests/js/testLegacyGtk.js \
245+
installed-tests/extra/gjs.supp \
246+
installed-tests/extra/lsan.supp \
274247
$(NULL)
275248

276249
### TEST EXECUTION #####################################################
@@ -307,6 +280,7 @@ AM_TESTS_ENVIRONMENT = \
307280
export G_FILENAME_ENCODING=latin1; \
308281
export LSAN_OPTIONS="suppressions=$(abs_top_srcdir)/installed-tests/extra/lsan.supp"; \
309282
export NO_AT_BRIDGE=1; \
283+
export LC_ALL=C.UTF-8; \
310284
$(COVERAGE_TESTS_ENVIRONMENT) \
311285
$(XVFB_START) \
312286
$(DBUS_SESSION_COMMAND) \

Makefile.am

+8-1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ endif
7979
# reasons
8080
libcjs_la_SOURCES = $(gjs_srcs)
8181

82+
if ENABLE_PROFILER
83+
libcjs_la_SOURCES += $(gjs_sysprof_srcs)
84+
libcjs_la_LIBADD += $(LIB_TIMER_TIME)
85+
endif
86+
8287
# Also, these files used to be a separate library
8388
libgjs_private_source_files = $(gjs_private_srcs)
8489

@@ -214,6 +219,8 @@ CPPCHECK=cppcheck
214219
### cppcheck static code analysis
215220
#
216221
cppcheck:
217-
$(CPPCHECK) --enable=warning,performance,portability,information,missingInclude --force -q $(top_srcdir) -I $(top_builddir)
222+
$(CPPCHECK) --inline-suppr \
223+
--enable=warning,performance,portability,information,missingInclude \
224+
--force -q $(top_srcdir) -I $(top_builddir)
218225

219226
-include $(top_srcdir)/git.mk

NEWS

+228
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,231 @@
1+
Version 1.52.1
2+
--------------
3+
4+
- This version has more changes than would normally be expected from a stable
5+
version. The intention of 1.52.1 is to deliver a version that runs cleaner
6+
under performance tools, in time for the upcoming GNOME Shell performance
7+
hackfest. We also wanted to deliver a stable CI pipeline before branching
8+
GNOME 3.28 off of master.
9+
10+
- Claudio André's work on the CI pipeline deserves a spotlight. We now have
11+
test jobs that run linters, sanitizers, Valgrind, and more; the tests are
12+
run on up-to-date Docker images; and the reliability errors that were plaguing
13+
the test runs are solved.
14+
15+
- In addition to System.dumpHeap(), you can now dump a heap from a running
16+
Javascript program by starting it with the environment variable
17+
GJS_DEBUG_HEAP_OUTPUT=some_name, and sending it SIGUSR1.
18+
19+
- heapgraph.py is a tool in the repository (not installed in distributions) for
20+
analyzing and graphing heap dumps, to aid with tracking down memory leaks.
21+
22+
- The linter CI jobs will compare your branch against GNOME/gjs@master, and fail
23+
if your branch added any new linter errors. There may be false positives, and
24+
the rules configuration is not perfect. If that's the case on your merge
25+
request, you can skip the appropriate linter job by adding the text
26+
"[skip (linter)]" in your commit message: e.g., "[skip cpplint]".
27+
28+
- We welcomed first merge requests from several new contributors for this
29+
release.
30+
31+
- Closed bugs and merge requests:
32+
33+
* Crash when resolving promises if exception is pending [#18, !95, Philip
34+
Chimento]
35+
* gjs_byte_array_get_proto(JSContext*): assertion failed: (((void) "gjs_"
36+
"byte_array" "_define_proto() must be called before " "gjs_" "byte_array"
37+
"_get_proto()", !v_proto.isUndefined())) [#39, !92, Philip Chimento]
38+
* Tools for examining heap graph [#116, !61, !118, Andy Holmes, Tommi
39+
Komulainen, Philip Chimento]
40+
* Run analysis tools to prepare for release [#120, !88, Philip Chimento]
41+
* Add support for passing flags to Gio.DBusProxy in makeProxyWrapper [#122,
42+
!81, Florian Müllner]
43+
* Cannot instantiate Cairo.Context [#126, !91, Philip Chimento]
44+
* GISCAN GjsPrivate-1.0.gir fails [#128, !90, Philip Chimento]
45+
* Invalid read of g_object_finalized flag [#129, !117, Philip Chimento]
46+
* Fix race condition in coverage file test [#130, !99, Philip Chimento]
47+
* Linter jobs should only fail if new lint errors were added [#133, !94,
48+
Philip Chimento]
49+
* Disable all tests that depends on X if there is no XServer [#135, !109,
50+
Claudio André]
51+
* Pick a different C++ linter [#137, !102, Philip Chimento]
52+
* Create a CI test that builds using autotools only [!74, Claudio André]
53+
* CI: enable ASAN [!89, Claudio André]
54+
* CI: disable static analysis jobs using the commit message [!93, Claudio
55+
André]
56+
* profiler: Don't assume layout of struct sigaction [!96, James Cowgill]
57+
* Valgrind [!98, Claudio André]
58+
* Robustness of CI [!103, Claudio André]
59+
* CI: make a separate job for installed tests [!106, Claudio André]
60+
* Corrected Markdown format and added links to JHBuild in setup guide for GJS
61+
[!111, Avi Zajac]
62+
* Update tweener.js -- 48 eslint errors fixed [!112, Karen Medina]
63+
* Various maintenance [!100, !104, !105, !107, !110, !113, !116, Claudio
64+
André, Philip Chimento]
65+
66+
Version 1.52.0
67+
--------------
68+
69+
- No changes from 1.51.92 except for the continuous integration configuration.
70+
71+
- Closed bugs and merge requests:
72+
73+
* Various CI improvements [!84, !85, !86, !87, Claudio André]
74+
75+
Version 1.51.92
76+
---------------
77+
78+
- Closed bugs and merge requests:
79+
80+
* abort if we are called back in a non-main thread [#75, !72, Philip Chimento]
81+
* 3.27.91 build failure on debian/Ubuntu [#122, !73, Tim Lunn]
82+
* Analyze project code quality with Code Climate inside CI [#10, !77, Claudio
83+
André]
84+
* Various CI improvements [!75, !76, !79, !80, !82, !83, Claudio André]
85+
86+
Version 1.51.91
87+
---------------
88+
89+
- Promises now resolve with a higher priority, so asynchronous code should be
90+
faster. [Jason Hicks]
91+
92+
- Closed bugs and merge requests:
93+
94+
* New build 'warnings' [#117, !62, !63, Claudio André, Philip Chimento]
95+
* Various CI maintenance [!64, !65, !66, Claudio André, Philip Chimento]
96+
* profiler: Don't include alloca.h when disabled [!69, Ting-Wei Lan]
97+
* GNOME crash with fatal error "Finalizing proxy for an object that's
98+
scheduled to be unrooted: Gio.Subprocess" in gjs [#26, !70, Philip Chimento]
99+
100+
Version 1.51.90
101+
---------------
102+
103+
- Note that all the old Bugzilla bug reports have been migrated over to GitLab.
104+
105+
- GJS now, once again, includes a profiler, which outputs files that can be
106+
read with sysprof. To use it, simply run your program with the environment
107+
variable GJS_ENABLE_PROFILER=1 set. If your program is a JS script that is
108+
executed with the interpreter, you can also pass --profile to the
109+
interpreter. See "gjs --help" for more info.
110+
111+
- New API: For programs that want more control over when to start and stop
112+
profiling, there is new API for GjsContext. When you create your GjsContext
113+
there are two construct-only properties available, "profiler-enabled" and
114+
"profiler-sigusr2". If you set profiler-sigusr2 to TRUE, then the profiler
115+
can be started and stopped while the program is running by sending SIGUSR2 to
116+
the process. You can also use gjs_context_get_profiler(),
117+
gjs_profiler_set_filename(), gjs_profiler_start(), and gjs_profiler_stop()
118+
for more explicit control.
119+
120+
- New API: GObject.signal_connect(), GObject.signal_disconnect(), and
121+
GObject.signal_emit_by_name() are now available in case a GObject-derived
122+
class has conflicting connect(), disconnect() or emit() methods.
123+
124+
- Closed bugs and merge requests:
125+
126+
* Handle 0-valued GType gracefully [#11, !10, Philip Chimento]
127+
* Profiler [#31, !37, Christian Hergert, Philip Chimento]
128+
* Various maintenance [!40, !59, Philip Chimento, Giovanni Campagna]
129+
* Rename GObject.Object.connect/disconnect? [#65, !47, Giovanni Campagna]
130+
* Better debugging output for uncatchable exceptions [!39, Simon McVittie]
131+
* Update Docker images and various CI maintenance [!54, !56, !57, !58,
132+
Claudio André]
133+
* Install GJS suppression file for Valgrind [#2, !55, Philip Chimento]
134+
135+
Version 1.50.4
136+
--------------
137+
138+
- Closed bugs and merge requests:
139+
140+
* Gnome Shell crash with places-status extension when you plug an USB device
141+
[#33, !38, Philip Chimento]
142+
143+
Version 1.50.3
144+
--------------
145+
146+
- GJS will now log a warning when a GObject is accessed in Javascript code
147+
after the underlying object has been freed in C. (This used to work most of
148+
the time, but crash unpredictably.) We now prevent this situation which, is
149+
usually caused by a memory management bug in the underlying C library.
150+
151+
- Closed bugs and merge requests:
152+
153+
* Add checks for GObjects that have been finalized [#21, #23, !25, !28, !33,
154+
Marco Trevisan]
155+
* Test "Cairo context has methods when created from a C function" fails [#27,
156+
!35, Valentín Barros]
157+
* Various fixes from the master branch for rare crashes [Philip Chimento]
158+
159+
Version 1.51.4
160+
--------------
161+
162+
- We welcomed code and documentation from several new contributors in this
163+
release!
164+
165+
- GJS will now log a warning when a GObject is accessed in Javascript code
166+
after the underlying object has been freed in C. (This used to work most of
167+
the time, but crash unpredictably.) We now prevent this situation which, is
168+
usually caused by a memory management bug in the underlying C library.
169+
170+
- APIs exposed through GObject Introspection that use the GdkAtom type are now
171+
usable from Javascript. Previously these did not work. On the Javascript side,
172+
a GdkAtom translates to a string, so there is no Gdk.Atom type that you can
173+
access. The special atom GDK_NONE translates to null in Javascript, and there
174+
is also no Gdk.NONE constant.
175+
176+
- The GitLab CI tasks have continued to gradually become more and more
177+
sophisticated.
178+
179+
- Closed bugs and merge requests:
180+
181+
* Add checks for GObjects that have been finalized [#21, #23, !22, !27, Marco
182+
Trevisan]
183+
* Fail static analyzer if new warnings are found [!24, Claudio André]
184+
* Run code coverage on GitLab [!20, Claudio André]
185+
* Amend gtk.js and add gtk-application.js with suggestion [!32, Andy Holmes]
186+
* Improve GdkAtom support that is blocking clipboard APIs [#14, !29, makepost]
187+
* Test "Cairo context has methods when created from a C function" fails [#27,
188+
!35, Valentín Barros]
189+
* Various CI improvements [#6, !26, !34, Claudio André]
190+
* Various maintenance [!23, !36, Philip Chimento]
191+
192+
Version 1.51.3
193+
--------------
194+
195+
- This release was made from an earlier state of master, before a breaking
196+
change was merged, while we decide whether to revert that change or not.
197+
198+
- Closed bugs and merge requests:
199+
200+
* CI improvements on GitLab [!14, !15, !19, Claudio André]
201+
* Fix CI build on Ubuntu [#16, !18, !21, Claudio André, Philip Chimento]
202+
203+
Version 1.51.2
204+
--------------
205+
206+
- Version 1.51.1 was skipped.
207+
208+
- The home of GJS is now at GNOME's GitLab instance:
209+
https://gitlab.gnome.org/GNOME/gjs
210+
From now on we'll be taking GitLab merge requests instead of Bugzilla
211+
patches. If you want to report a bug, please report it at GitLab.
212+
213+
- Closed bugs and merge requests:
214+
215+
* Allow throwing GErrors from JS virtual functions [#682701, Giovanni
216+
Campagna]
217+
* [RFC] bootstrap system [#777724, Jasper St. Pierre, Philip Chimento]
218+
* Fix code coverage (and refactor it to take advantage of mozjs52 features)
219+
[#788166, !1, !3, Philip Chimento]
220+
* Various maintenance [!2, Philip Chimento]
221+
* Get GitLab CI working and various improvements [#6, !7, !9, !11, !13,
222+
Claudio André]
223+
* Add build status badge to README [!8, Claudio André]
224+
* Use Docker images for CI [!12, Claudio André]
225+
226+
- Some changes in progress to improve garbage collection when signals are
227+
disconnected. See bug #679688 for more information [Giovanni Campagna]
228+
1229
Version 1.50.2
2230
--------------
3231

0 commit comments

Comments
 (0)