Skip to content

Commit ef059f2

Browse files
committed
Add breaking changes to CHANGES.md
1 parent 04bf86d commit ef059f2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

CHANGES.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ deployed to production at mybinder.org quickly after they are merged
77
As such, this changelog is broken up by dates, not versions, and is just to
88
make it easier to track what has changed over time_
99

10+
# 0.2.0...HEAD
11+
12+
([full changelog](https://github.com/jupyterhub/binderhub/compare/0.2.0...HEAD))
13+
14+
## Breaking changes
15+
16+
The `binderhub.build.Build` class is replaced by the Traitlets based `binderhub.build.KubernetesBuildExecutor` class [#1581](https://github.com/jupyterhub/binderhub/pull/1581), [#1521](https://github.com/jupyterhub/binderhub/pull/1521).
17+
The following build configuration properties should be set using Traitlets in the BinderHub configuration:
18+
19+
- `c.BinderHub.appendix` ➡️ `c.BuildExecutor.appendix`
20+
- `c.BinderHub.sticky_builds` ➡️ `c.KubernetesBuildExecutor.sticky_builds`
21+
- `c.BinderHub.log_tail_lines` ➡️ `c.KubernetesBuildExecutor.log_tail_lines`
22+
- `c.BinderHub.push_secret` ➡️ `c.BuildExecutor.push_secret`
23+
- `c.BinderHub.build_memory_request` ➡️ `c.KubernetesBuildExecutor.memory_request`
24+
- `c.BinderHub.build_memory_limit` ➡️ `c.BuildExecutor.memory_limit`
25+
- `c.BinderHub.build_docker_host` ➡️ `c.KubernetesBuildExecutor.docker_host`
26+
- `c.BinderHub.build_namespace` ➡️ `c.KubernetesBuildExecutor.namespace`
27+
- `c.BinderHub.build_image` ➡️ `c.KubernetesBuildExecutor.build_image`
28+
- `c.BinderHub.build_node_selector` ➡️ `c.KubernetesBuildExecutor.node_selector`
29+
30+
If you have subclassed `binderhub.build.Build` you must update your subclass (including `__init__()` if defined) to inherit from `binderhub.build.KubernetesBuildExecutor`.
31+
The behaviour of the class is otherwise unchanged.
32+
33+
# 0.2.0
34+
1035
# master@{2019-07-01}...master@{2019-10-01}
1136

1237
([full changelog](https://github.com/jupyterhub/binderhub/compare/01b1c59b9e7dc81250c1ed579c492ec2fd6baaf6...a168d069772012c52f9ac7056ec22d779927ae69))

0 commit comments

Comments
 (0)