-
Notifications
You must be signed in to change notification settings - Fork 816
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
Update packages automatically #1812
Comments
Retrieving the latest version number is the easy part, with unpkg or without. With current CI system this could work if we had script that checked compatible packages for version updates, updates I've been reluctant to implement this because the version changes can easily break the packages. If nothing else, packages often add new API calls that should be added to externs. For generated externs we could have task to generate the new externs, but there are some packages (React) where manually written externs are better choice. Maybe the script could create new branch & PR for each update, and also add the changelog entry for the version to github comment, making it easy to see if the API changed significantly, and if the update requires manual work. |
Thanks i might work on this when i have the time. |
I was inspired to implement two scripts, one finding the updated unpkg packages, and second creating commit and branch with the update automatically: b2780c5 It will need way to automatically accept changed checksums (using |
Using changelog in github message will create references to upstream projects, and mention authors, which will cause unreasonable noise for those people, so something needs to be done about that. I guess warpping the changelog in code block would disable references. |
I think this scheme is great for unpkg packages or similar CDN's. But i think one more thing that can be done is design a system which updates packages based on a rules engine for various kinds of lib sources like CDN's, Github etc. For this we might need to maintain some kind of edn log of packages that can be safely updated "atomatically", the CI trigger will only update these packages on its own. Once we test this scheme works for a particular package and its source without breaking things we will add that package into that log. Overtime we can keep adding more and more packages to this log which can be safely updated "automatically" from their respective sources without breaking anything downstream. This way we can also cover edge cases of some packages. What do you think? |
I am actually not sure how this works can you explain? |
Yes, I was thinking some form in whitelisting packages where this is known to work. For now I'll test this with React and few other packages. And I don't think this will be completely automatic, these scripts will create the PR's but I'll still go through those before merging them.
The changelog entry in the react update I tested, linked e.g. to facebook/react#14914 and you can see at the end of the page that there are several references to Cljsjs commits and the PR. And because the changelog also refers the author, they probably got github notice. |
Thanks for doing this, this will make cljsjs packages extremely awesome and lucrative for a lot of folks who get disappointed when then look at the list and see an old version on the lib not updated for months.
Now i understand what you mean, yes this is actually going to be an annoying problem for the authors upstream. How can we remediate it? |
By wrapping changelog text in codeblocks, I think:
I already implemented this c55c1ff |
Aah that makes sense. This is so awesome! Learnt some interesting stuff which i didnt know earlier about github messages. |
This is some exciting stuff, i am gonna tweet about it. |
I think unpkg packages can be updated automatically through a script.
For instance if you go to https://unpkg.com/hls.js . It will automatically redirect to https://unpkg.com/hls.js@0.12.2/dist/hls.js
which gives us the latest library-version in . the URL, i think this can be used to automatically update
unpkg based packages using a script on CircleCI.
The text was updated successfully, but these errors were encountered: