Skip to content
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

feat: upgrade to Quince #25

Merged
merged 27 commits into from
Dec 11, 2023
Merged

feat: upgrade to Quince #25

merged 27 commits into from
Dec 11, 2023

Commits on Dec 12, 2022

  1. docs: change quickstart to launch

    This change is due to quickstart being renamed to launch in tutor.
    Carlos Muniz authored and regisb committed Dec 12, 2022
    Configuration menu
    Copy the full SHA
    07255c2 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2022

  1. Configuration menu
    Copy the full SHA
    aa3dc2b View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2023

  1. Configuration menu
    Copy the full SHA
    d0a4007 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2023

  1. Configuration menu
    Copy the full SHA
    8318502 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2023

  1. Configuration menu
    Copy the full SHA
    0927834 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. Configuration menu
    Copy the full SHA
    5595ba7 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    33c4ca9 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. Configuration menu
    Copy the full SHA
    c40a96e View commit details
    Browse the repository at this point in the history

Commits on May 26, 2023

  1. Configuration menu
    Copy the full SHA
    e282c95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    70730f1 View commit details
    Browse the repository at this point in the history
  3. feat: label nightly version

    This is to address overhangio/tutor-mfe#122
    As a consequence of this change, images will be tagged with a "-nightly"
    suffix. Next, we'll probably have to build them periodically in CI.
    regisb committed May 26, 2023
    Configuration menu
    Copy the full SHA
    06c5390 View commit details
    Browse the repository at this point in the history
  4. fix: nightly package version

    The package version number may not include the "-nightly" suffix.
    Otherwise, installation fails with:
    
       setuptools.extern.packaging.version.InvalidVersion: Invalid version: '15.0.7-nightly'
    regisb committed May 26, 2023
    Configuration menu
    Copy the full SHA
    f9cf62c View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Configuration menu
    Copy the full SHA
    b3bc260 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. Configuration menu
    Copy the full SHA
    9787d8d View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Configuration menu
    Copy the full SHA
    1ea6681 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Configuration menu
    Copy the full SHA
    ee0f356 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    790405a View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Configuration menu
    Copy the full SHA
    4d75cd0 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Configuration menu
    Copy the full SHA
    b25a7e2 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Configuration menu
    Copy the full SHA
    f81740f View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. fix: add missing pkg-config package (#26)

    Build fails in nightly with the following error:
    
    	#28 5.503   × Getting requirements to build wheel did not run
    	    successfully.
    	#28 5.503   │ exit code: 1
    	#28 5.503   ╰─> [24 lines of output]
    	#28 5.503       /bin/sh: 1: pkg-config: not found
    	#28 5.503       /bin/sh: 1: pkg-config: not found
    	#28 5.503       Trying pkg-config --exists mysqlclient
    	#28 5.503       Command 'pkg-config --exists mysqlclient' returned
    	    non-zero exit status 127.
    	#28 5.503       Trying pkg-config --exists mariadb
    	#28 5.503       Command 'pkg-config --exists mariadb' returned non-zero
    	    exit status 127.
    	#28 5.503       Traceback (most recent call last):
    	#28 5.503         File
    	    "/openedx/venv/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py",
    	line 353, in <module>
    	#28 5.503           main()
    	#28 5.503         File
    	    "/openedx/venv/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py",
    	line 335, in main
    	#28 5.503           json_out['return_val'] =
    	    hook(**hook_input['kwargs'])
    	#28 5.503         File
    	    "/openedx/venv/lib/python3.8/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py",
    	line 118, in get_requires_for_build_wheel
    	#28 5.503           return hook(config_settings)
    	#28 5.503         File
    	    "/tmp/pip-build-env-58chejnv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py",
    	line 355, in get_requires_for_build_wheel
    	#28 5.503           return self._get_build_requires(config_settings,
    	    requirements=['wheel'])
    	#28 5.503         File
    	    "/tmp/pip-build-env-58chejnv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py",
    	line 325, in _get_build_requires
    	#28 5.503           self.run_setup()
    	#28 5.503         File
    	    "/tmp/pip-build-env-58chejnv/overlay/lib/python3.8/site-packages/setuptools/build_meta.py",
    	line 341, in run_setup
    	#28 5.503           exec(code, locals())
    	#28 5.503         File "<string>", line 154, in <module>
    	#28 5.503         File "<string>", line 48, in get_config_posix
    	#28 5.503         File "<string>", line 27, in find_package_name
    	#28 5.503       Exception: Can not find valid pkg-config name.
    	#28 5.503       Specify MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS env
    	    vars manuallY
    regisb authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    18a6d5b View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. feat: simplify nightly version management

    By pulling the version suffix from tutor, we avoid git conflicts when
    merging the release branch in nightly.
    regisb committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    be48ede View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4256df3 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2023

  1. local.overhang.io -> local.edly.io

    This is related to overhangio/tutor#945
    regisb committed Dec 9, 2023
    Configuration menu
    Copy the full SHA
    67c55ff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    241283e View commit details
    Browse the repository at this point in the history
  3. feat: upgrade to Quince

    jfavellar90 authored and regisb committed Dec 9, 2023
    Configuration menu
    Copy the full SHA
    8703186 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. chore: addressing comments

    jfavellar90 authored and regisb committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    7f09751 View commit details
    Browse the repository at this point in the history