All Versions
10
Latest Version
Avg Release Cycle
59 days
Latest Release
1876 days ago

Changelog History

  • v0.9.1 Changes

    February 26, 2019

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix issue with migrations not running automatically, due to pool size being too small

    Chores

    • Replace uglify-js with terser-js
  • v0.9.0 Changes

    January 22, 2019

    ๐Ÿ› Bug Fixes

    • ๐Ÿณ Use node v10.x or Docker images

    Chores

    • โšก๏ธ Update Elixir to 1.8, and update dependencies
    • โฌ†๏ธ Upgrade to Phoenix 1.4
    • ๐Ÿ‘‰ Use yarn instead of npm for JS dependency management
  • v0.8.0 Changes

    September 13, 2018

    ๐Ÿ”‹ Features

    • ๐Ÿ— Manual build jobs can now be declared on the .alloy-ci.yml file under the when directive. ๐Ÿ‘ท Manual jobs are those that need a user action before they can be picked up by a runner. Once ๐Ÿ‘ท previous stages of a pipeline have succeeded, a manual job becomes available for enqueuing.

    ๐Ÿ› Bug Fixes

    • ๐Ÿ– Handle Tentacat bug that causes repositories list to be returned in 2 different ways e144aeaa
    • ๐Ÿ‘ Allow users to re-authorize AlloyCI, so that they can see repositories from organizations with restricted permissions. ๐Ÿ‘€ See #52 for details on upcoming improvements.

    Chores

    • โšก๏ธ Use ETS to store intermediate build trace updates to avoid unnecessary round trips to the DB
    • โšก๏ธ Update Elixir to 1.7, and update dependencies
    • ๐Ÿ‘ท Replace Que with own implementation of background jobs using GenServer (since Que dependencies stopped working on Elixir 1.7)
    • โž• Added typespec definitions to all public functions outside of the web folder
    • โšก๏ธ Updated distillery to 2.0.9 and removed mix_docker
    • ๐Ÿš€ Replaced .build and .release Dockerfiles with a single Dockerfile that builds in stages, and added make tasks to release and push the images
    • ๐Ÿš€ Replaced elixir:latest with elixir:slim for the release stage in order to reduce final image size
    • โž• Added CI task to automatically release Docker images when a tag is pushed
  • v0.7.0 Changes

    June 26, 2018

    ๐Ÿ—„ Deprecations

    • ๐Ÿ—„ MAJOR DEPRECATION JSON config files for build/pipeline configuration are no longer supported. Use YAML files instead. The main reason behind this decision is that YAML is much more flexible than JSON. It allows us to use aliases in oder to avoid duplication, to add comments to make the config file more understandable, and it is the de facto standard configuration file for almost all CI systems in the market.

    ๐Ÿ”‹ Features

    • โšก๏ธ Build status is now automatically updated on the pipeline view. It uses websockets to redraw the HTML data, and update the view when the status changes.
    • โšก๏ธ Pipeline status is also automatically updated in the same manner on the project view.
    • โž• Added a Makefile to facilitate the start up procedure in dev mode.
    • ๐Ÿ‘‰ Use YAML config files instead of JSON.

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fixed redirect loop that would happen when an authentication token expires.
    • โšก๏ธ Reverted back to Kerosene v0.7.0, as the updated v0.8.0 had pagination bugs.
  • v0.6.0 Changes

    May 07, 2018

    ๐Ÿ”‹ Features

    • โž• Added support for S3 compatible object storage to store build artifacts. See the [documentation](doc/README.md#configuration) for instructions on how to set it up. Most S3 compatible services, like AWS S3, Digital Ocean Spaces, Minio, etc. should work.
    • ๐Ÿ‘Œ Improved runner ENV variables for better Coveralls support

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fixed small bug on the ArtifactSweeper GenServer. The server state was not being returned, which caused intermittent errors on subsequent runs (one would work, the next one would error out, the next one would work, etc.)
    • Properly populate the $CI_COMMIT_REF_SLUG environment variable with the shorthand for the branch/tag name

    Chores

    • โšก๏ธ Updated dependencies
    • Cleaned up data structures code
      • Replaced use of use AlloyCi.Web :schema with proper Ecto imports
  • v0.5.0 Changes

    March 30, 2018

    ๐Ÿ”‹ Features

    • โž• Added support for GitHub Enterprise
      • AlloyCI can now be used with a GitHub Enterprise installation. See the [documentation](doc/github_enterprise.md) for more info on how to set it up.
    • ๐Ÿ’ป Ditched core-ui in favor of a cleaner, more functional design that is more appealing to the eye
    • ๐Ÿ”ง Expired artifacts are now pruned once a day (interval can be configured)
    • ๐Ÿ— Artifacts can be kept forever, by clicking a button in the build page
    • ๐Ÿ— Build artifacts can now be downloaded from the build page
      • For this, the build page was completely reworked
      • It is now its own page with valuable information about the build, along the build trace and artifacts that may have been created
    • ๐Ÿ— Individual builds can now be restarted independently (build will be copied, and old data will be kept)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ— When cancelling a pipeline, all builds were marked as cancelled, now only builds that are either created, running, or pending are updated.
    • โฌ†๏ธ After the upgrade to Guardian 1.0 it became impossible to add another authentication method to an existing user. This has been fixed.
  • v0.4.0 Changes

    March 08, 2018

    ๐Ÿ”‹ Features

    • ๐Ÿ‘‰ Show available global runners on the project's settings page
    • ๐ŸŽ‰ Initial support for build artifacts:
      • Jobs can create artifacts and upload them to the server (only local storage supported for now)
      • Jobs can download artifacts from previous builds, if they depend on them
    • ๐Ÿ‘Œ Support for dependent builds:
      • Builds with artifacts from previous stages will be automatically added as dependencies for jobs of the subsequent stage
      • Builds can explicitly declare their own dependencies via the .alloy-ci.yml file
    • โž• Added the option to use Sentry for error catching in production
    • โšก๏ธ Updated Guardian to 1.0

    ๐Ÿ› Bug Fixes

    • Redirect to main projects if user is logged in and visits the register page
    • โšก๏ธ Skip updating the build trace, if the runner calls the endpoint with an empty string
    • โšก๏ธ Updated JS dependencies
  • v0.3.0 Changes

    February 16, 2018

    ๐Ÿ”‹ Features

    • Pipelines are now created when a pull request from a fork is submitted. This feature requires the newly released AlloyCI Runner (GitLab Runner fork), so it is incompatible with all previous and future GitLab Runner versions. (#29)
    • โž• Added support for only and except keywords for build jobs. This gives you better control over which jobs run when. (#14)
    • Regular users can now manage project specific runners for projects to which they have access. (#33)
    • ๐Ÿ‘ Projects now support the use of secret variables. They can be used to pass sensitive information to the runner without committing it to the repository. (#23)

    ๐Ÿ› Bug Fixes

    • Redirect to the main projects' view when all auth options have already been created. (#30)
    • ๐Ÿ‘ Better processing of pipelines when the worker is called (5a9ca8f)
    • ๐Ÿ›  Fix notification bug, that would send one on every failed build. (63dc787)
  • v0.2.0 Changes

    October 16, 2017

    ๐Ÿ’ฅ Breaking changes

    • ๐Ÿ“š All mentions of integration in the documentation, code, and configuration files have been replaced with app. This is to conform with the changes imposed by GitHub and their API. (#28)
  • v0.1.0 Changes

    September 13, 2017

    ๐Ÿ”‹ Features

    • ๐Ÿš€ First public release