Publish the dev branch? #756
Closed
JuroOravec
started this conversation in
General
Replies: 1 comment 3 replies
-
Some questions:
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@EmilStenstrom I'm starting to think it would be good to publish what's on the
dev
branch as a dev / nightly build. What do you think?The main reason is because there's still couple more (minor to mid) breaking changes, in order for django-components to support also the django-vue project. I'd want django-components v1 to be released only once I can confirm that the django-vue project can be built on top of it, so there's no unexpected changes required after v1.
But because the amount of breaking changes is growing, I'm starting to feel like it might be good to bundle all of them into a single big release. At the same time, at the current rate, and with holidays coming up and whatnot, I think it can easily take 1-2 months to clear out my workspace.
Until that big release comes, I'm pushing all changes to
dev
, and I don't have that feedback loop. I cannot use the improvements I've made in my work project, and I can't test if everything's working well.It's also harder to communicate the changes on forums / subreddits, when I can't point people to a package (even if nightly / dev).
So it'd be nice if we could publish django-components with a version like
0.1.110-dev241116
(<main version>--dev<date>
) and use / test them before the actual release.Planned changes that I have made locally, for which I yet have to make MRs:
default
anddata
kwargs for default fillsComponent.get_context_data()
. Currently slots are resolved before we obtain the data fromget_context_data()
.Component.template
andComponent.template_name
get_template()
andget_template_name()
, so that the template associated with each component would be static / fixed.get_template()
andget_template_name()
, introduceon_render()
, a hook where users could define to dynamically change the template.Beta Was this translation helpful? Give feedback.
All reactions