layout | title | redirect_from | ||
---|---|---|---|---|
sips |
List of All SIPs |
|
{% assign sips = site.sips | sort: title %} {% assign sipData = site.data.sip-data %}
You can find so-called “pre-SIP discussions” in the Scala Contributors forum, under the category Scala Improvement Process. The goal of pre-SIP discussions is to gather initial community feedback and support.
Proposals that are at the design or implementation stage, and that are actively discussed by the committee and the proposals’ authors. Click on a proposal to read its content, or the corresponding discussions on GitHub if its design has not been accepted yet.
-
{% for sip in sips %}
{% if sip.stage == "design" or sip.stage == "implementation" %}
-
{{ sip.title }}
Stage: {{ sipData[sip.stage].text }}Status: {{ sipData[sip.status].text }}{% if sip.recommendation %}Recommendation: {{ sipData[sip.recommendation].text }}{% endif %}
{% endif %}
{% endfor %}
Proposals that have been implemented in the compiler and that are available as a stable feature of the compiler (shipped), or that will be available in the next minor release of the compiler (accepted). Click on a proposal to read its content.
-
{% for sip in sips %}
{% if sip.stage == "completed" %}
-
{{ sip.title }}
{{ sipData[sip.status].text }}
{% endif %}
{% endfor %}
Proposals that have been rejected by the committee. Click on a proposal to read the corresponding discussions on GitHub.
-
{% for sip in sips %}
{% if sip.status == "rejected" %}
- {{ sip.title }} {% endif %} {% endfor %}
Proposals that have been withdrawn by their authors. Click on a proposal to read the corresponding discussions on GitHub.
-
{% for sip in sips %}
{% if sip.status == "withdrawn" %}
- {{ sip.title }} {% endif %} {% endfor %}