summaryrefslogtreecommitdiff
path: root/docs/users_guide/7.12.1-notes.xml
blob: 27ad849b16c7388679a091f4a0aa541a201bf561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?xml version="1.0" encoding="iso-8859-1"?>
<sect1 id="release-7-12-1">
  <title>Release notes for version 7.12.1</title>

  <para>
      The significant changes to the various parts of the compiler are listed
      in the following sections. There have also been numerous bug fixes and
      performance improvements over the 7.10 branch.
  </para>

  <sect2>
    <title>Highlights</title>

    <para>
        The highlights, since the 7.10 branch, are:
    </para>

    <itemizedlist>
        <listitem>
            <para>
                TODO FIXME
           </para>
       </listitem>
   </itemizedlist>
  </sect2>

  <sect2>
    <title>Full details</title>
    <sect3>
        <title>Language</title>
        <itemizedlist>
            <listitem>
                <para>
                    TODO FIXME.
               </para>
           </listitem>
            <listitem>
                <para>
                    The parser now supports Haddock comments on GADT data constructors. For example,
                    <programlisting>
                      data Expr a where
                        -- | Just a normal sum
                        Sum :: Int -> Int -> Expr Int
                    </programlisting>
               </para>
           </listitem>
            <listitem>
                <para>
                    Implicit parameters of the new base type
                    <literal>GHC.Stack.CallStack</literal> are treated
                    specially, and automatically solved for the current source
                    location. For example
                    <programlisting>
                      f = print (?stk :: CallStack)
                    </programlisting>
                    will print the singleton stack containing the occurrence of
                    <literal>?stk</literal>. If there is another
                    <literal>CallStack</literal> implicit in-scope, the new location
                    will be appended to the existing stack, e.g.
                    <programlisting>
                      f :: (?stk :: CallStack) => IO ()
                      f = print (?stk :: CallStack)
                    </programlisting>
                    will print the occurrence of <literal>?stk</literal> and the
                    call-site of <literal>f</literal>. The name of the implicit
                    parameter does not matter.
               </para>
                <para>
                    See the release notes for base for a description of the
                    <literal>CallStack</literal> type.
               </para>
            </listitem>
	    <listitem>
	      <para>
		To conform to the common case, the default role assigned to parameters
		of datatypes declared in <literal>hs-boot</literal> files is
		<literal>representational</literal>. However, if the constructor(s)
		for the datatype are given, it makes sense to do normal role inference.
		This is now implemented, effectively making the default role for
		non-abstract datatypes in <literal>hs-boot</literal> files to be
		<literal>phantom</literal>, like it is in regular Haskell code.
	      </para>
	    </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Compiler</title>
        <itemizedlist>
            <listitem>
                <para>
                    Added the option <option>-dth-dec-file</option>.

                    This dumps out a .th.hs file of all Template Haskell declarations in a corresponding .hs file. The idea is that application developers can check this into their repository so that they can grep for identifiers used elsewhere that were defined in Template Haskell.
                    This is similar to using <option>-ddump-to-file</option> with <option>-ddump-splices</option> but it always generates a file instead of being coupled to <option>-ddump-to-file</option> and only outputs code that does not exist in the .hs file and a comment for the splice location in the original file.
                </para>
           </listitem>
           <listitem>
               <para>
                   Added the option <option>-fprint-expanded-types</option>.

                   When enabled, GHC also prints type-synonym-expanded types in
                   type errors.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>GHCi</title>
        <itemizedlist>
            <listitem>
                <para>
                    <literal>Main</literal> with an explicit module header but
                    without <literal>main</literal> is now an error (#7765).
               </para>
               <para>
                    The <literal>:back</literal> and <literal>:forward</literal>
                    commands now take an optional count allowing the user to move forward or
                    backward in history several steps at a time.
               </para>
               <para>
                    Added commands <literal>:load!</literal> and <literal>:reload!</literal>,
                    effectively setting "-fdefer-type-errors" before loading a module and
                    unsetting it after loading if it has not been set before (#8353).
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Template Haskell</title>
        <itemizedlist>
            <listitem>
                <para>
                    The <literal>TemplateHaskell</literal> now no longer automatically
                    errors when used with a stage 1 compiler (i.e. GHC without
                    interpreter support); in particular, plain
                    Haskell quotes (not quasi-quotes) can now be compiled without erroring.
                    Splices and quasi-quotes continue to only be supported by a
                    stage 2 compiler.
               </para>
            </listitem>
            <listitem>
                <para>
                    Partial type signatures can now be used in splices, see <xref linkend="pts-where"/>.
                </para>
            </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Runtime system</title>
        <itemizedlist>
            <listitem>
                <para>
                    TODO FIXME.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Build system</title>
        <itemizedlist>
            <listitem>
                <para>
                    TODO FIXME.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Package system</title>
        <itemizedlist>
            <listitem>
                <para>
                    TODO FIXME.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>
  </sect2>

  <sect2>
    <title>Libraries</title>

    <sect3>
        <title>array</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.5.0.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>base</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 4.7.0.0)
               </para>
           </listitem>
            <listitem>
                <para>
                    A new module <literal>GHC.SrcLoc</literal> was added,
                    exporting a new type <literal>SrcLoc</literal>. A
                    <literal>SrcLoc</literal> contains package, module,
                    and file names, as well as start and end positions.
               </para>
           </listitem>
            <listitem>
                <para>
                    A new type <literal>CallStack</literal> was added for use
                    with the new implicit callstack parameters. A
                    <literal>CallStack</literal> is a
                    <literal>[(String, SrcLoc)]</literal>, sorted by most-recent
                    call.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>bin-package-db</title>
        <itemizedlist>
            <listitem>
                <para>
                    This is an internal package, and should not be used.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>binary</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.7.1.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>bytestring</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.10.4.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Cabal</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.18.1.3)
              </para>
          </listitem>
      </itemizedlist>
    </sect3>

    <sect3>
        <title>containers</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.5.4.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>deepseq</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.3.0.2)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>directory</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.2.0.2)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>filepath</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.3.0.2)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>ghc</title>
        <itemizedlist>
            <listitem>
                <para>
                    TODO FIXME.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>ghc-prim</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.3.1.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>haskell98</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 2.0.0.3)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>haskell2010</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.1.1.1)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>hoopl</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 3.10.0.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>hpc</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.6.0.1)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>integer-gmp</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 0.5.1.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>old-locale</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.0.0.6)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>old-time</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.1.0.2)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>process</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.2.0.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>template-haskell</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 2.9.0.0)
               </para>
           </listitem>
            <listitem>
                <para>
                    The <literal>Lift</literal> type class for lifting values
                    into Template Haskell splices now has a default signature
                    <literal>lift :: Data a => a -> Q Exp</literal>, which means
                    that you do not have to provide an explicit implementation
                    of <literal>lift</literal> for types which have a <literal>Data</literal>
                    instance.  To manually use this default implementation, you
                    can use the <literal>liftData</literal> function which is
                    now exported from <literal>Language.Haskell.TH.Syntax</literal>.
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>time</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 1.4.1)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>unix</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 2.7.0.0)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>

    <sect3>
        <title>Win32</title>
        <itemizedlist>
            <listitem>
                <para>
                    Version number XXXXX (was 2.3.0.1)
               </para>
           </listitem>
       </itemizedlist>
    </sect3>
  </sect2>

  <sect2>
    <title>Known bugs</title>
    <itemizedlist>
        <listitem>
            <para>
                TODO FIXME
           </para>
       </listitem>
   </itemizedlist>
  </sect2>
</sect1>