-
Notifications
You must be signed in to change notification settings - Fork 47.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add note to 'unreleased' CHANGELOG about deprecating Bower #11262
Add note to 'unreleased' CHANGELOG about deprecating Bower #11262
Conversation
**what is the change?:** We will no longer release new versions of React to Bower, and we should announce that as part of our CHANGELOG. **why make this change?:** We decided on this as a team. **test plan:** Visual inspection and spell check. :) **issue:** Just follow-up for facebook#11223
CHANGELOG.md
Outdated
@@ -8,6 +8,7 @@ | |||
### All Packages | |||
|
|||
* Fix an accidental extra global variable in the UMD builds. ([@gaearon](https://github.com/gaearon) in [#10935](https://github.com/facebook/react/pull/10935)) | |||
* Deprecate use of Bower for accessing React packages. We will no longer be using Bower. ([@bvaughn](https://github.com/bvaughn) in [#11223](https://github.com/facebook/react/pull/11223)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sounds like something we've done in React code itself.
It also sounds like existing Bower users will be negatively affected.
I would instead add a separate section like
Discontinuing Bower Releases
Starting with 16.1.0, we will no longer be publishing new releases on Bower. You can continue using Bower for old releases, or point your Bower configs to the React UMD builds hosted on unpkg that mirror npm releases and will continue to be updated.
I don't think attribution is needed here since it's a team decision and more of a policy change than a behavior change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea! Will fix.
CHANGELOG.md
Outdated
@@ -37,6 +37,11 @@ | |||
* Fix multiple `setState()` calls in `componentWillMount()` in shallow renderer. ([@Hypnosphi](https://github.com/Hypnosphi) in [#11167](https://github.com/facebook/react/pull/11167)) | |||
* Add back support for running in production mode. ([@gaearon](https://github.com/gaearon) in [#11112](https://github.com/facebook/react/pull/11112)) | |||
|
|||
|
|||
### Discontinuing Bower Releases |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's put it on top to make it hard to miss?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay! Thanks for doing this, Flarnie!
what is the change?:
We will no longer release new versions of React to Bower, and we should
announce that as part of our CHANGELOG.
why make this change?:
We decided on this as a team.
test plan:
Visual inspection and spell check. :)
issue:
Just follow-up for #11223