- 02 Nov, 2018 2 commits
-
-
Robert Knight authored
Deploy QA release of client as part of master branch builds
-
Robert Knight authored
The short-lived max-age value set previously was overridden by the higher value of 1800 (30 mins) set in CloudFlare's "Browser Cache TTL" setting under Page Rules for cdn.hypothes.is. Resolve this by simply disabling caching of the entry point for qa deployments. This means that https://cdn.hypothes.is/hypothesis@qa will always return the boot script for the latest client QA release.
-
- 01 Nov, 2018 2 commits
-
-
Robert Knight authored
Add a new build stage to Jenkins CI builds of the master branch which deploys a "QA" build to S3. This QA build: - Has a pre-release version number of the form `X.Y.Z-{commit hash}` - Has a stable URL at https://cdn.hypothes.is/hypothesis@qa (as opposed to https://cdn.hypothes.is/hypothesis for the prod build) - Loads the sidebar app from qa-h (https://qa.hypothes.is/app.html) - Does not update the changelog or create a Git tag or GitHub release This build is currently not deployed to npm at all, but we might need to do that in future if we were to create a QA deployment of the browser extension with it. --- - Add a QA deploy step to the Jenkins build. - Skip GitHub release creation and changelog updates for pre-release versions used for QA deployments. - Remove the preversion.sh script, which is no longer needed since the builds always run in Jenkins and not on a developer's system. - Support specifying the npm tag to check in `wait-for-npm-release.sh`, though this is not used in the final version of this commit.
-
Robert Knight authored
Replace the generic Docker-based s3-npm-publish tool with a JS script in the client repo which is tailored more specifically to the needs of client deployments: - Avoid creating the `hypothesis@X.Y` and `hypothesis@X` aliases which we never used. - Support uploading a copy of the entry point under a version-indepenent alias, regardless of whether this is a pre-release or not. This will enable creating a stable URL which points to the current QA version of the client. - Deploy the package directly from the current working directory. This saves the need to wait for publication to npm to complete, or the need to actually publish the package to npm at all in the case of the QA release.
-
- 31 Oct, 2018 4 commits
-
-
jenkins-hypothesis authored
-
Robert Knight authored
Add service.groups setting to filter groups
-
Robert Knight authored
This option is being added initially to support the LMS application where it is important that students annotate in the correct group for the course that the active assignment belongs to.
-
Hannah Stepanek authored
-
- 25 Oct, 2018 3 commits
-
-
jenkins-hypothesis authored
-
Robert Knight authored
Wait for npm release to complete before deploying to CDN
-
Robert Knight authored
Use build milestones to automatically abort old builds
-
- 23 Oct, 2018 7 commits
-
-
Robert Knight authored
npm packages are not immediately available after "npm publish" returns. Wait until the package has been released before attempting to deploy it to the CDN. This should fix the failure seen in https://jenkins.hypothes.is/job/client/job/master/745/console.
-
Robert Knight authored
Use milestones to automatically abort older builds when a newer build reaches the same step of the pipeline. This mirrors the use of milestones in h's Jenkins pipeline.
-
jenkins-hypothesis authored
-
Robert Knight authored
Add missing polyfill for IE 11 compatibility when annotating PDFs
-
Robert Knight authored
This package was already depended upon indirectly but following the previous commit is now a direct dependency of the client.
-
Robert Knight authored
The `seek` function from the `dom-seek` package expects its `NodeIterator` argument to have a `referenceNode` property, which is missing in IE 11. Use the dom-node-iterator package recommended by the dom-seek README [1] to polyfill optional-ness of arguments to `document.createNodeIterator` and the missing properties on the returned `NodeIterator` object. dom-node-iterator provides several ways to use the polyfill. This commit uses the method that prefers the browser's native implementation if possible and does not pollute the global scope, which could affect JS code outside of the Hypothesis client. There is one other place where we use `createNodeIterator` but in that context the missing properties are not used so the polyfill is not needed. Fixes #762 [1] https://github.com/tilgovi/dom-seek/blob/master/README.md
-
Robert Knight authored
Fix "Log in" links in sidebar content area not opening login prompt.
-
- 22 Oct, 2018 5 commits
-
-
Hannah Stepanek authored
The loggedout-message controller should bind onLogin. The sidebar-content controller should also bind onLogin and call vm.login(). Prevously this behavior was broken.
-
jenkins-hypothesis authored
-
Robert Knight authored
Fix IE 11 JS error which annotating PDFs.
-
Robert Knight authored
Skip builds of automated commits on Jenkins
-
Sheetal Umesh Kumar authored
The `whatToShow`, `filter` and `expandEntityReferences` arguments for `Document.createNodeIterator()` are mandatory in IE although optional according to the spec. Pass default values to fix JS console errors. See: https://github.com/hypothesis/client/issues/762
-
- 19 Oct, 2018 5 commits
-
-
Robert Knight authored
As part of the deployment process Jenkins creates a new commit on master in order to bump the npm package version. There is no point in creating an automated build of these commits, which can be identified by the commiter name.
-
jenkins-hypothesis authored
-
Robert Knight authored
Move remaining client release steps to Jenkins
-
Robert Knight authored
-
Robert Knight authored
When performing a Jenkins CI build of the "master" branch, prompt the user to deploy and then after they approve, execute the same release process that a developer currently executes on their machine, namely: 1. Update the changelog 2. Run "yarn version" to update the package version, create a tag and GitHub release. After these steps the release process continues on Jenkins as before, with an npm package published and the build deployed to an S3-backed CDN using the s3-npm-publish tool. Enabling publishing the release entirely from Jenkins required some additional changes: - Use a Debian Stretch-based Node container, to get a newer Git version which supports "taggerdate", used by the changelog scripts. - Disable Git tag signing, since this is not set up on Jenkins. - Do not run "make test" from the preversion script, since this has already been run by Jenkins earlier in the process. Additionally to facilitate testing of this branch I added support for specifying a prerelease version suffix. This made it possible to test the whole deployment process without updating the live version of the client. In future this will likely come in useful for doing staging/QA releases.
-
- 18 Oct, 2018 1 commit
-
-
Robert Knight authored
Modify `update-changelog.js` to generate the list of changes itself
-
- 17 Oct, 2018 5 commits
-
-
Robert Knight authored
-
Robert Knight authored
-
Robert Knight authored
Wrap "stage" contents in a block in Jenkinsfile
-
Robert Knight authored
This fixes a warning from Jenkins that using `stage` without specifying a block is deprecated.
-
Robert Knight authored
In preparation for executing the client release process entirely on Jenkins, make update-changelog.js automatically update CHANGELOG.md with a list of changes since the most recent tag, instead of requiring a developer to do this manually. This will lose the advantages of having a changelog written by humans, but we primarily use other channels nowadays to notify staff and users about Hypothesis product changes. - Add scripts/generate-change-list.js which generates a nicely formatted list of changes since the last release. - Use functions from generate-change-list.js to auto-populate section for new release in CHANGELOG.md when running `yarn version`.
-
- 09 Oct, 2018 6 commits
-
-
Robert Knight authored
Update API route definitions used by tests
-
Robert Knight authored
- Update the API index definitions used by the tests for the `api` service to be in sync with the actual index returned by https://hypothes.is/api/. - Move the definitions into a separate file to make them easier to update in future and add instructions on how to update them. - Fix two errors in the tests; use of "PUT" instead of "PATCH" for updating an annotation and an incorrect parameter name in the API call to remove a group member.
-
Robert Knight authored
Support serving the client over SSL in development
-
Robert Knight authored
-
Robert Knight authored
-
Robert Knight authored
Use custom name for global `require` function
-