Update dependencies to enable Greenkeeper 🌴 #906
Merged
Conversation
docs/package.json
Outdated
| "url-loader": "^1.0.1" | ||
| }, | ||
| "author": "", | ||
| "license": "MIT", | ||
| "dependencies": { | ||
| "color": "^2.0.1", | ||
| "color": "^3.1.0", |
example/package.json
Outdated
| @@ -23,7 +23,7 @@ | |||
| "react-lifecycles-compat": "^3.0.4", | |||
| "react-native": "https://github.com/expo/react-native/archive/sdk-31.0.1.tar.gz", | |||
| "react-native-web": "^0.10.0-alpha.3", | |||
| "react-navigation": "^2.18.2", | |||
| "react-navigation": "^3.3.2", | |||
ferrannp
Mar 14, 2019
Collaborator
With this we need to fix the example to work (we don't have tests to detect it).
|
Hey there we noticed that this PR isn’t merged yet. Just to let you know: if you don't merge this PR, Greenkeeper will not be enabled on this repo, and you won't receive updates for your dependencies. If you don't want to enable Greenkeeper here, just close or ignore this PR, we won't nag you again. Have a great day! |
|
Hey @Greenkeeper[bot], thank you for your pull request |
|
@satya164 I have resolved the conflicts, example app works on native and mobile. Do you think it's save to merge now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Let’s get started with automated dependency management for react-native-paper💪
yarn.lockfile in this repository. Greenkeeper supports lockfile updates for public packages. If you use private packages in your repository, please use greenkeeper-lockfile to make sure these can get updated as well.This pull request updates all your dependencies to their latest version. Having them all up to date really is the best starting point for keeping up with new releases. Greenkeeper will look out for further dependency updates and make sure to handle them in isolation and in real-time, but only after you merge this pull request.
Important: Greenkeeper will only start watching this repository’s dependency updates after you merge this initial pull request.
package.jsonfiles. They have all been added to a newgreenkeeper.jsonconfig file. They’ve been collected in a group calleddefault, meaning that all of them will receive updates together. You can rename, add and remove groups and freely assign eachpackage.jsonto whichever group you like. It’s common, for example, to have onefrontendgroup and onebackendgroup, each with a couple ofpackage.jsonfiles. In any case, all files in a group will have their updates collected into single PRs and issues.To solve the issue, first find out which of the dependency’s updates is causing the problem. Then fix your code to accomodate the changes in the updated dependency. next-update is a really handy tool to help you with this.
Then push your changes to this branch and merge it.
Greenkeeper adds a badge to your README which indicates the status of this repository.
This is what your badge looks like right now👉 
Greenkeeper has added a rule to your
.travis.ymlthat whitelists Greenkeeper branches, which are created when your dependencies are updated. Travis CI will run your tests on these branches automatically to see if they still pass.No additional setup is required😊
You may have good reasons for not wanting to update to a certain dependency right now. In this case, you can change the dependency’s version string in the
package.jsonfile back to whatever you prefer.To make sure Greenkeeper doesn’t nag you again on the next update, add a
greenkeeper.ignorefield to yourpackage.json, containing a list of dependencies you don’t want to update.After you merge this pull request, Greenkeeper will create a new branch whenever a dependency is updated, with the new version applied. The branch creation should trigger your testing services and check whether your code still works with the new dependency version. Depending on the the results of these tests Greenkeeper will try to open meaningful and helpful pull requests and issues, so your dependencies remain working and up-to-date.
The above example shows an in-range update.
1.7.0is included in the old^1.6.0range, because of the caret^character .When the test services report success Greenkeeper will silently delete the branch again, because no action needs to be taken – everything is fine.
However, should the tests fail, Greenkeeper will create an issue to inform you about the problem immediately.
This way, you’ll never be surprised by a dependency breaking your code. As long as everything still works, Greenkeeper will stay out of your way, and as soon as something goes wrong, you’ll be the first to know.
In this example, the new version
4.0.0is not included in the old^3.0.0range.For version updates like these – let’s call them “out of range” updates – you’ll receive a pull request.
This means that you no longer need to check for new versions manually – Greenkeeper will keep you up to date automatically.
These pull requests not only serve as reminders to update: If you have solid tests and good coverage, and the pull requests passes those tests, you can very likely just merge it and release a new version of your software straight away
To get a better idea of which ranges apply to which releases, check out the extremely useful semver calculator provided by npm.
FAQ and help
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.
Good luck with your project and see you soon✨
Your Greenkeeper bot🌴