You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the package.json of the release packages accepts every Angular 6.0.0 beta as a working dependency.
This is not really correct since we depend on the preserveWhitespaces change from beta.6 and also depend on the new Injectable / provider API changes which are spread across the beta versions.
Also makes it easier to change the required angular version (right now it's easy to forget about the property in the build config)
I see that you just added the pr: merge ready label, but the following checks are still failing: conflicts with base branch "master"
If you want your PR to be merged, it has to pass all the CI checks.
If you can't get the PR to a green state due to flakes or broken master, please try rebasing to master and/or restarting the CI job. If that fails and you believe that the issue is not due to your change, please contact the caretaker and ask for help.
devversion
added
P1
Impacts a large percentage of users; if a workaround exists it is partial or overly painful
and removed
P2
The issue is important to a large percentage of users, with a workaround
labels
Jul 24, 2018
* Right now the `package.json` of the release packages accepts every Angular 6.0.0 beta as a working dependency. This is not really correct since we depend on the `preserveWhitespaces` change from `beta.6` and also depend on the new `Injectable` / `provider` syntax from `beta.4`. We either need to require a version `>= beta.6` or just go to the `6.0.0` stable release.
* Makes it easier to change the required angular version (right now it's easy to forget about the property in the build config)
* Updates the Bazel Angular version that will be replaced within the `npm_package` rule to the required Angular version that has been changed with angular#12089.
* Removes an unused NPM script
* Adds a small check to the Bazel workspace status script that ensures that both Angular versions are in sync.
* Updates the Bazel Angular version that will be replaced within the `npm_package` rule to the required Angular version that has been changed with #12089.
* Removes an unused NPM script
* Adds a small check to the Bazel workspace status script that ensures that both Angular versions are in sync.
roboshoes pushed a commit
to roboshoes/material2
that referenced
this pull request
Oct 23, 2018
* Updates the Bazel Angular version that will be replaced within the `npm_package` rule to the required Angular version that has been changed with angular#12089.
* Removes an unused NPM script
* Adds a small check to the Bazel workspace status script that ensures that both Angular versions are in sync.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
action: mergeThe PR is ready for merge by the caretakercla: yesPR author has agreed to Google's Contributor License AgreementP1Impacts a large percentage of users; if a workaround exists it is partial or overly painfultarget: minorThis PR is targeted for the next minor release
4 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Right now the
package.jsonof the release packages accepts every Angular 6.0.0 beta as a working dependency.This is not really correct since we depend on the
preserveWhitespaceschange frombeta.6and also depend on the newInjectable/providerAPI changes which are spread across the beta versions.Also makes it easier to change the required angular version (right now it's easy to forget about the property in the build config)
References #10301 and #10216