AtomLinter / linter-glsl

Atom package that lints GLSL shaders on the fly.
https://atom.io/packages/linter-glsl
MIT License
15 stars 6 forks source link

Update dependencies to enable Greenkeeper šŸŒ“ #45

Closed greenkeeper[bot] closed 7 years ago

greenkeeper[bot] commented 7 years ago

Letā€™s get started with automated dependency management for linter-glsl :muscle:

This pull request updates all your dependencies to their latest version. Having them all up to date really is the best starting point. I will look out for further dependency updates and make sure to handle them in isolation and in real-time, as soon as you merge this pull request.

āœ… If this pull request passes and everything is still working

These are really good news. Merge this pull request and I will keep you posted about dependency updates you shouldnā€™t miss.

āŒ If this pull request fails and things arenā€™t working

Note: I wonā€™t start sending you further updates, unless you have merged this very pull request.

So, how do we proceed? I suggest you find out what dependency update is causing the problem. Adapt your code so things are working nicely together again. next-update is a really handy tool to help you with this.

Push the changes to this branch and merge it.

In case you can not, or do not want to update a certain dependency right now, you can of course just change the package.json file back to your liking.

Donā€™t forget to push your changes to this branch, and merge this pull request, so I can start sending you further updates.


How to update this pull request ```bash # change into your repositoryā€™s directory git fetch git checkout greenkeeper/update-all npm install-test # adapt your code, so itā€™s working again git commit -m 'chore: adapt code to updated dependencies' git push origin greenkeeper/update-all ```
How to ignore certain dependencies Add a `greenkeeper.ignore` field to your `package.json`, containing a list of dependencies you donā€™t want to update right now. ```js // package.json { ā€¦ "greenkeeper": { "ignore": [ "package-names", "you-want-me-to-ignore" ] } } ```
How the updates will look like As soon as you merge this pull request **Iā€™ll create a branch for every dependency update**, with the new version applied. The branch creation should trigger your testing services to check the new version. Using the results of these tests Iā€™ll try to open meaningful and helpful pull requests and issues, so your dependencies remain working and up-to-date. ```diff - "underscore": "^1.6.0" + "underscore": "^1.7.0" ``` In the above example you can see an in-range update. `1.7.0` is included in the old `^1.6.0` range, because of the [caret `^` character ](https://docs.npmjs.com/misc/semver#ranges). When the test services report success Iā€™ll delete the branch again, because no action needs to be taken ā€“ everything is fine. When there is a failure however, Iā€™ll create an issue so you know about the problem immediately. This way every single version update of your dependencies will either continue to work with your project, or youā€™ll get to know of potential problems immediately. ```diff - "lodash": "^3.0.0" + "lodash": "^4.0.0" ``` In this example the new version `4.0.0` is not included in the old `^3.0.0` range. For version updates like these ā€“ letā€™s call them ā€œout of rangeā€ updates ā€“ youā€™ll receive a pull request. Now **you no longer need to check for exciting new versions by hand** ā€“ Iā€™ll just let you know automatically. And the pull request will not only serve as a reminder to update. In case it passes your decent test suite thatā€™s a strong reason to merge right away :shipit:
Not sure how things are going to work exactly? There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Good luck with your project and see you soon :sparkles:

Your Greenkeeper Bot :palm_tree:

andystanton commented 7 years ago

Closing this, @Arcanemagus as I've bumped to this version since addressing the CI issues. Can you re-enable GK?

Arcanemagus commented 7 years ago

Whoops, with the new integration method this PR must be merged, checking if it's enabled...

Arcanemagus commented 7 years ago

Yea, it's currently disabled now: Greenkeeper Status

Arcanemagus commented 7 years ago

Bumped which so there was something to commit here so this can get merged. The new organization wide method still needs some work in odd edge cases like this...

Arcanemagus commented 7 years ago

There we go, now it shows as enabled šŸ˜€.