@@ -3,20 +3,35 @@ Migration Guide
33
44This page can help when migrating Taskgraph across major versions.
55
6+ 15.x -> 16.x
7+ ------------
8+
9+ * Stop using the ``--tag `` flag with ``taskgraph build-image ``. Images must now
10+ be tagged manually via Docker post build.
11+ * Running ``taskgraph load-task `` will no longer pause task execution and
12+ instead immediately execute the task's command after loading. Now you must
13+ use the ``-i/--interactive `` flag to pause execution.
14+ * Utility functions in ``taskgraph.util.taskcluster `` no longer accept the
15+ ``use_proxy `` argument. Instead the presence of ``TASKCLUSTER_PROXY_URL `` in
16+ the environment will be used to determine whether or not to use the
17+ Taskcluster proxy. Remove ``use_proxy `` from all function calls, and then
18+ either set ``TASKCLUSTER_PROXY_URL `` or unset it depending on whether using
19+ the proxy is desired or not.
20+
62114.x -> 15.x
722------------
823
9- * `get_primary_dependency ` now requires a `primary-dependency-label ` to be set
10- on the task it is passed instead of `primary-kind-dependency `. Update any tasks
24+ * `` get_primary_dependency `` now requires a `` primary-dependency-label ` ` to be set
25+ on the task it is passed instead of `` primary-kind-dependency ` `. Update any tasks
1126 you were calling this for to set this attribute. (If your only usage of this
12- is indirectly through `from_deps `, no change is needed: `from-deps ` generated
13- tasks will set this for you.)
27+ is indirectly through `` from_deps `` , no change is needed: `` from-deps ` ` generated
28+ tasks will set this for you).
1429
153013.x -> 14.x
1631------------
1732
18- * The `{task_workdir} ` string in environment variables no longer gets
19- interpolated by `run-task `. This is backing out a feature introduced in
33+ * The `` {task_workdir} ` ` string in environment variables no longer gets
34+ interpolated by `` run-task ` `. This is backing out a feature introduced in
2035 version 13.x, so this release introduces no new backwards incompatibilities
2136 with version 12.x or earlier.
2237
0 commit comments