author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
603,665 | 02.02.2022 15:17:36 | -10,800 | 9a54bab6ffd720a2ee442cb7adbff6f1cd0e8aff | [Chore] Fix faucet link
Problem: There are several occurencies of
which is deprecated since hangzhounet and doesn't work now.
Solution: Replace them with | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -42,7 +42,7 @@ snapshot_import_modes = {\nkey_import_modes = {\n\"ledger\": \"From a ledger\",\n\"secret-key\": \"Either the unencrypted or password-encrypte... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix faucet link
Problem: There are several occurencies of https://faucet.tzalpha.net/
which is deprecated since hangzhounet and doesn't work now.
Solution: Replace them with https://teztnets.xyz/. |
603,665 | 01.02.2022 15:15:03 | -10,800 | 665b4fb0b571cc4873f7d0f590d6579c7c5689a4 | Document 'tezos-packaging' usage on WSL
Problem: During testing it was found that `tezos-packaging`
can be used on WSL, but its usage has some limitations.
Solution: Information about WSL support was added to support
policy doc. Limitations are also mentioned in the corresponding
sections. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -39,6 +39,7 @@ the binaries, and the services used.\n- [**Raspberry Pi OS**](./docs/distros/ubuntu.md#raspberry)\n- [**Fedora**](./docs/distros/fedora.md)\n- [**macOS**](./docs/distros/macos.md)\n+- [**Windows u... | Python | MIT License | serokell/tezos-packaging | [#375] Document 'tezos-packaging' usage on WSL
Problem: During testing it was found that `tezos-packaging`
can be used on WSL, but its usage has some limitations.
Solution: Information about WSL support was added to support
policy doc. Limitations are also mentioned in the corresponding
sections. |
603,652 | 28.01.2022 17:06:08 | -10,800 | 4526657b81d639e0e9b23d49b101090e15372a5f | Support multiple ledgers connection in setup wizard
Problem: Setup shows incorrect data when multiple ledgers are connected
and have the Baking app open.
Solution: Properly support a case when multiple ledgers are connected.
Explicitly show the ledger URL in the list of derivations. Additionally,
allow choosing a ledger when specifying additional derivations. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -225,12 +225,16 @@ def wait_for_ledger_baking_app():\nf\"sudo -u tezos {suppress_warning_text} tezos-client list connected ledgers\"\n).stdout\nproc_call(\"s... | Python | MIT License | serokell/tezos-packaging | [#379] Support multiple ledgers connection in setup wizard
Problem: Setup shows incorrect data when multiple ledgers are connected
and have the Baking app open.
Solution: Properly support a case when multiple ledgers are connected.
Explicitly show the ledger URL in the list of derivations. Additionally,
allow choosing a ledger when specifying additional derivations. |
603,658 | 03.12.2021 20:49:34 | -3,600 | 43c5c8385d469b648521ff9c19c63e49e81a2181 | Add voting wizard to docker installation process
Problem: there is now a script for interactive voting but no way to
easily use it from native packages.
Solution: added the voting wizard to be included in the docker packages
similar to the setup wizard. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -563,6 +563,7 @@ class TezosBakingServicesPackage(AbstractPackage):\ndef fetch_sources(self, out_dir):\nos.makedirs(out_dir)\nshutil.copy(f\"{os.path.dirname(__file__)}/tezos_setup_wi... | Python | MIT License | serokell/tezos-packaging | [#237] Add voting wizard to docker installation process
Problem: there is now a script for interactive voting but no way to
easily use it from native packages.
Solution: added the voting wizard to be included in the docker packages
similar to the setup wizard. |
603,658 | 31.01.2022 18:40:25 | -3,600 | 56c78941a591ecea502ee3f2c521b194a99e8534 | Add custom network support
Problem: we might want to use the voting wizard with custom chains,
and we certainly want to use them at least for testing. Currently though,
the voting wizard only supports mainnet.
Solution: add steps querying the network to use, giving two options:
mainnet and a custom network. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -381,9 +381,10 @@ network_query = Step(\nid=\"network\",\nprompt=\"Which Tezos network would you like to use?\\nCurrently supported:\",\nhelp=\"The selected ... | Python | MIT License | serokell/tezos-packaging | [#237] Add custom network support
Problem: we might want to use the voting wizard with custom chains,
and we certainly want to use them at least for testing. Currently though,
the voting wizard only supports mainnet.
Solution: add steps querying the network to use, giving two options:
mainnet and a custom network. |
603,652 | 25.02.2022 17:26:21 | -10,800 | e375d2143556fdabd5724f3a620e9b05f31d7a64 | [Chore] Explicitly checkout in 'sync-hashes' job
Problem: 'sync-hashes' job is failing due to lack of '.git' folder.
Solution: Explicitly checkout repository before downloading bottles. | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/build-bottles.yml",
"new_path": ".github/workflows/build-bottles.yml",
"diff": "@@ -67,6 +67,9 @@ jobs:\nruns-on: macos-10.15\nneeds: build-bottles\nsteps:\n+ - name: Checkout\n+ uses: actions/checkout@v2\n+\n# It's possible we have had to re... | Python | MIT License | serokell/tezos-packaging | [Chore] Explicitly checkout in 'sync-hashes' job
Problem: 'sync-hashes' job is failing due to lack of '.git' folder.
Solution: Explicitly checkout repository before downloading bottles. |
603,652 | 25.02.2022 15:11:43 | -10,800 | e8c6e50efd4a6f90cceca223f2d757ba6f6a1f88 | [Chore] Remove Ubuntu 21.04 support
Problem: Ubuntu 21.04 is now obsolete and launchpad rejects builds that
target this Ubuntu version.
Solution: Remove 21.04 from the list of supported Ubuntu versions. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -239,7 +239,7 @@ Source: {self.name.lower()}\nSection: utils\nPriority: optional\nMaintainer: {self.meta.maintainer}\n-Build-Depends: debhelper (>=9), {\"dh-systemd (>= 1.5), \" if ub... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove Ubuntu 21.04 support
Problem: Ubuntu 21.04 is now obsolete and launchpad rejects builds that
target this Ubuntu version.
Solution: Remove 21.04 from the list of supported Ubuntu versions. |
603,652 | 25.02.2022 15:20:20 | -10,800 | ded5951082b327cfbf5d733cf27f5c264f079e07 | Update Fedora versions support list
Problem: Fedora 35 was unsupported on x86_64 due to incompatibility
between Octez and new glibc version. With v12.0 Octez is now compatible
with new gcc and glibc.
Solution: Update Fedora support description and mention that we support
x86_64 and aarch64 for both supported Fedora versions. | [
{
"change_type": "MODIFY",
"old_path": "docs/support-policy.md",
"new_path": "docs/support-policy.md",
"diff": "@@ -27,8 +27,8 @@ There are packages for `arm64` and `amd64` architectures.\nWe aim to provide packages for all [currently supported Fedora releases](https://docs.fedoraproject.org/en-US/r... | Python | MIT License | serokell/tezos-packaging | [#390] Update Fedora versions support list
Problem: Fedora 35 was unsupported on x86_64 due to incompatibility
between Octez and new glibc version. With v12.0 Octez is now compatible
with new gcc and glibc.
Solution: Update Fedora support description and mention that we support
x86_64 and aarch64 for both supported Fedora versions. |
603,652 | 01.03.2022 17:27:00 | -10,800 | a15460af3b7360ad0a277e0290fea20c4e3c251a | [Chore] Fetch BUILDKITE_BRANCH before updating mirror
Problem: 'git push --mirror' pushes changes from the local ref which is
nearly empty due to the way buildkite fetches repository before doing
CI step.
Solution: Explicitly fetch, checkout, and pull current branch before
pushing to the mirror repository. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/pipeline-raw.yml",
"new_path": ".buildkite/pipeline-raw.yml",
"diff": "@@ -182,7 +182,11 @@ steps:\nbuild.message =~ /^Merge pull request .* from serokell\\/auto\\/update-brew-formulae-v[.0-9]+-[0-9]+/ )\ndepends_on:\n- \"auto-release\"\n- command: ... | Python | MIT License | serokell/tezos-packaging | [Chore] Fetch BUILDKITE_BRANCH before updating mirror
Problem: 'git push --mirror' pushes changes from the local ref which is
nearly empty due to the way buildkite fetches repository before doing
CI step.
Solution: Explicitly fetch, checkout, and pull current branch before
pushing to the mirror repository. |
603,658 | 25.02.2022 15:47:08 | -3,600 | 4b56a292bd8be53ee6c05760f8c892c271421fcd | Document the voting wizard
Problem: we now have released Tezos Voting Wizard, but there's no documentation
on how to use it.
Solution: added a doc on voting as well as documented how to set up a
custom baking instance and use it for voting. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -31,6 +31,18 @@ tezos-setup-wizard\nRead [the dedicated article](./docs/baking.md) to find out more about the setup,\nthe binaries, and the services used.\n+### Voting on Ubuntu\n+\n+An interactive voting wizard... | Python | MIT License | serokell/tezos-packaging | [#389] Document the voting wizard
Problem: we now have released Tezos Voting Wizard, but there's no documentation
on how to use it.
Solution: added a doc on voting as well as documented how to set up a
custom baking instance and use it for voting. |
603,658 | 07.03.2022 19:30:00 | -3,600 | 52743d5f4fdd04defe348807d82299bac0e26502 | [Chore] Fix: tezos-baking fails to build on Fedora
Problem: COPR reports tezos-baking-v12.0-1 failing to build on any
version/architecture because 'tezos-baking-custom@.default' isn't found.
Solution: fixed the bug in how the default name is chosen. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/fedora.py",
"new_path": "docker/package/fedora.py",
"diff": "@@ -29,7 +29,7 @@ def build_fedora_package(\nsystemd_unit.service_file.service.environment_file.lower()\n)\nif systemd_unit.suffix is None:\n- unit_name = f\"{pkg.name}\"\n+ unit_name ... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix: tezos-baking fails to build on Fedora
Problem: COPR reports tezos-baking-v12.0-1 failing to build on any
version/architecture because 'tezos-baking-custom@.default' isn't found.
Solution: fixed the bug in how the default name is chosen. |
603,658 | 07.03.2022 19:42:47 | -3,600 | 528725536bfff3c1378a3461733137f739f5dcea | [Chore] Fix typo in docker README
Problem: the 'docker/' directory README has instructions on signing
built '.src.rpm' packages, but rpm's '--addsign' flag needed for it
is spelled with a dash, leading to an error.
Solution: fixed the typo. | [
{
"change_type": "MODIFY",
"old_path": "docker/README.md",
"new_path": "docker/README.md",
"diff": "@@ -203,7 +203,7 @@ cd .. && ./docker/docker-tezos-packages.sh --os fedora --type source --package t\nSign source packages:\n```\n-rpm --add-sign out/*.src.rpm\n+rpm --addsign out/*.src.rpm\n```\nNote... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix typo in docker README
Problem: the 'docker/' directory README has instructions on signing
built '.src.rpm' packages, but rpm's '--addsign' flag needed for it
is spelled with a dash, leading to an error.
Solution: fixed the typo. |
603,650 | 17.03.2022 03:01:16 | -3,600 | 7d7745d4edceb4e46353d9a163ce9a9251a03e73 | [Chore] Update copyright holders and licensing info
Problem: licenses and copyright holders are outdated.
New changes should no longer be attributed to TQ Tezos
but rather to Oxhead Alpha (still using MIT).
Solution: add a new LICENSE file for TQ/OA and update the main
LICENSE file. Also update copyright holders where needed. | [
{
"change_type": "MODIFY",
"old_path": ".reuse/dep5",
"new_path": ".reuse/dep5",
"diff": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles: .github/* nix/nix/* protocols.json meta.json tests/buildkite/golden/* tests/host.key tests/host.cert tests/ca.cert\n-Copyright:... | Python | MIT License | serokell/tezos-packaging | [Chore] Update copyright holders and licensing info
Problem: licenses and copyright holders are outdated.
New changes should no longer be attributed to TQ Tezos
but rather to Oxhead Alpha (still using MIT).
Solution: add a new LICENSE file for TQ/OA and update the main
LICENSE file. Also update copyright holders where needed. |
603,658 | 18.03.2022 22:15:41 | -3,600 | 9c43d5776378a602dbb4e5b100df2eac58121a38 | [Chore] Add Ithaca to the list of mainnet protocols
Problem: Ithaca will soon be activated on mainnet. We need to support
an automatic switchover.
Solution: added 012-Psithaca to the list of mainnet protocols. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/packages.py",
"new_path": "docker/package/packages.py",
"diff": "@@ -14,7 +14,7 @@ from .systemd import Service, ServiceFile, SystemdUnit, Unit, Install\nnetworks = [\"mainnet\", \"hangzhounet\", \"ithacanet\"]\nnetworks_protos = {\n- \"mainnet\... | Python | MIT License | serokell/tezos-packaging | [Chore] Add Ithaca to the list of mainnet protocols
Problem: Ithaca will soon be activated on mainnet. We need to support
an automatic switchover.
Solution: added 012-Psithaca to the list of mainnet protocols. |
603,650 | 21.03.2022 17:16:13 | -3,600 | 7d8ed87a029e30f44c4d88567c5d04d4ee26d265 | [Chore] Add some more docs on packaging release numbers
Problem: the docs on the versioning policy used is unclear on
packaging <release>s. In particular it doesn't clarify that only
some packages in some distributions might be affected.
Solution: update the versioning doc and fix some typo. | [
{
"change_type": "MODIFY",
"old_path": "docs/versioning.md",
"new_path": "docs/versioning.md",
"diff": "<!--\n- - SPDX-FileCopyrightText: 2021 Oxhead Alpha\n+ - SPDX-FileCopyrightText: 2022 Oxhead Alpha\n- SPDX-License-Identifier: LicenseRef-MIT-OA\n-->\n`tezos-packaging` follows all Octez releases,... | Python | MIT License | serokell/tezos-packaging | [Chore] Add some more docs on packaging release numbers
Problem: the docs on the versioning policy used is unclear on
packaging <release>s. In particular it doesn't clarify that only
some packages in some distributions might be affected.
Solution: update the versioning doc and fix some typo. |
603,652 | 22.03.2022 09:39:39 | -10,800 | 2283e72d8883cd8b4cf00af8f4d32567644d476e | Remove Big Sur building from GitHub actions pipeline
Problem: Now we're building x86_64 bottles using our own infrastructure
which is based on buildkite.
Solution: Remove Big Sur building from GA pipeline configuration to
remove duplication. | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/build-bottles.yml",
"new_path": ".github/workflows/build-bottles.yml",
"diff": "@@ -14,7 +14,7 @@ jobs:\nstrategy:\nfail-fast: false\nmatrix:\n- os: [ { id: macos-10.15, name: \"catalina\" }, { id: macos-11, name: \"big_sur\" } ]\n+ os: [ { i... | Python | MIT License | serokell/tezos-packaging | Remove Big Sur building from GitHub actions pipeline
Problem: Now we're building x86_64 bottles using our own infrastructure
which is based on buildkite.
Solution: Remove Big Sur building from GA pipeline configuration to
remove duplication. |
603,652 | 25.03.2022 10:00:30 | -10,800 | bd7ac6a233d3b39bd70f9f40880a9a53c8c33581 | [Chore] Hotfix 'check-bottle-built.sh'
Problem: This script returns 1 exit code in case grep fails due to
'set -e'.
Solution: Allow 'gh release view ... | grep ...' to fail by setting
'set +e' before it. | [
{
"change_type": "MODIFY",
"old_path": "scripts/check-bottle-built.sh",
"new_path": "scripts/check-bottle-built.sh",
"diff": "@@ -19,6 +19,8 @@ fi\ntag=$(sed -n \"s/^\\s\\+version \\\"\\(.*\\)\\\"/\\1/p\" \"./Formula/$1.rb\")\n+# Command below is allowed to fail\n+set +e\ngh release view \"$tag\" | ... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix 'check-bottle-built.sh'
Problem: This script returns 1 exit code in case grep fails due to
'set -e'.
Solution: Allow 'gh release view ... | grep ...' to fail by setting
'set +e' before it. |
603,652 | 25.03.2022 19:33:56 | -10,800 | a15de31dd8746aaecb930b57de739050ec318371 | [Chore] Hotfix bottles hashes calculation
Problem: Buildkite interpolates step variables automatically. As a
result, default bash variable interpolation doesn't work.
Solution: Escape variables in the bottles hashes calculation and
uploading steps. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/generate-tags-pipeline.sh",
"new_path": ".buildkite/generate-tags-pipeline.sh",
"diff": "@@ -97,7 +97,7 @@ ymlappend \"\n- buildkite-agent artifact download \\\"*bottle.tar.gz\\\" \\\"Big Sur/\\\"\n- export FORMULA_TAG=\\\"\\$(sed -n 's/^\\s\\+versi... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix bottles hashes calculation
Problem: Buildkite interpolates step variables automatically. As a
result, default bash variable interpolation doesn't work.
Solution: Escape variables in the bottles hashes calculation and
uploading steps. |
603,652 | 25.03.2022 19:42:40 | -10,800 | a8ee1eae316f128c937620ee17191b7f53938455 | [Chore] Add 'GITHUB_TOKEN' to 'Add bottle hashes to formulae' step
Problem: 'Add bottle hashes to formulae' step misses 'GITHUB_TOKEN' env
variable, and as a result, it cannot open GitHub PR.
Solution: Add 'GITHUB_TOKEN' env variable to this step. | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/build-bottles.yml",
"new_path": ".github/workflows/build-bottles.yml",
"diff": "@@ -91,4 +91,6 @@ jobs:\nrun: gh release download \"${{ env.tag }}\" -p \"*.catalina.bottle.tar.gz\" -D \"./Catalina\"\n- name: Add bottle hashes to formulae\n+ e... | Python | MIT License | serokell/tezos-packaging | [Chore] Add 'GITHUB_TOKEN' to 'Add bottle hashes to formulae' step
Problem: 'Add bottle hashes to formulae' step misses 'GITHUB_TOKEN' env
variable, and as a result, it cannot open GitHub PR.
Solution: Add 'GITHUB_TOKEN' env variable to this step. |
603,652 | 25.03.2022 19:51:14 | -10,800 | 7925950afee08b32c9522aa00804a81e7809df5a | [Chore] Add v12.0-3 hashes to brew formulae for Big Sur | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-accuser-011-PtHangz2.rb",
"new_path": "Formula/tezos-accuser-011-PtHangz2.rb",
"diff": "@@ -26,6 +26,8 @@ class TezosAccuser011Pthangz2 < Formula\nbottle do\nroot_url \"https://github.com/serokell/tezos-packaging/releases/download/#{TezosAccuser0... | Python | MIT License | serokell/tezos-packaging | [Chore] Add v12.0-3 hashes to brew formulae for Big Sur |
603,652 | 30.03.2022 15:41:03 | -10,800 | 093f02b1575dc2fa97b31f2cb47573cb500ac653 | [Chore] Update 'build-via-docker' step
Problem: Server on which 'build-via-docker' step is run was updated and
now uses new interface for nix commands.
Solution: Update 'build-via-docker' step command by replacing 'nix run'
with 'nix shell'. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/pipeline-raw.yml",
"new_path": ".buildkite/pipeline-raw.yml",
"diff": "@@ -50,7 +50,7 @@ steps:\n- eval \"$SET_VERSION\"\n- cd docker\n- ./docker-static-build.sh\n- - nix run -f.. pkgs.upx -c upx tezos-*\n+ - nix shell -f.. pkgs.upx -c upx tezos-*\n... | Python | MIT License | serokell/tezos-packaging | [Chore] Update 'build-via-docker' step
Problem: Server on which 'build-via-docker' step is run was updated and
now uses new interface for nix commands.
Solution: Update 'build-via-docker' step command by replacing 'nix run'
with 'nix shell'. |
603,652 | 30.03.2022 21:21:28 | -10,800 | 366cd30a4ae6bebc38a4744019d9a4a4512b448c | [Chore] Fix 'MIRROR_REPO' variable interpolation
Problem: 'MIRROR_REPO' is a runtime step variable. As a result
'$MIRROR_REPO' interpolation returns empty string, see
Solution: Escape '$' character. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/pipeline-raw.yml",
"new_path": ".buildkite/pipeline-raw.yml",
"diff": "@@ -185,7 +185,7 @@ steps:\nMIRROR_REPO: \"git@github.com:serokell/tezos-packaging-stable.git\"\ncommands: &update_mirror\n- git pull origin \"$BUILDKITE_BRANCH:$BUILDKITE_BRANCH... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix 'MIRROR_REPO' variable interpolation
Problem: 'MIRROR_REPO' is a runtime step variable. As a result
'$MIRROR_REPO' interpolation returns empty string, see
https://buildkite.com/docs/pipelines/environment-variables#runtime-variable-interpolation.
Solution: Escape '$' character. |
603,652 | 28.03.2022 15:51:00 | -10,800 | 4b46c6209c56287977cf703a9007064007389717 | [Chore] Fix systemd service generation instructions
Problem: We provide a way to generate systemd services for running Octez
binaries in the background separately from Ubuntu/Fedora packages. But
currently, these instructions are a bit outdated.
Solution: Update them to reflect the actual 'gen_systemd_service_file.py' behaviour. | [
{
"change_type": "MODIFY",
"old_path": "docs/systemd.md",
"new_path": "docs/systemd.md",
"diff": "@@ -39,19 +39,18 @@ from scratch.\nFor this you'll need a `.service` file to define each systemd service.\nThe easiest way to get one is to run [`gen_systemd_service_file.py`](../gen_systemd_service_fil... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix systemd service generation instructions
Problem: We provide a way to generate systemd services for running Octez
binaries in the background separately from Ubuntu/Fedora packages. But
currently, these instructions are a bit outdated.
Solution: Update them to reflect the actual 'gen_systemd_service_file.py' behaviour. |
603,652 | 28.03.2022 16:06:30 | -10,800 | 35282970701106dab5f51499add34c9dfe164bdc | Mention protocol switch-over in the baking doc
Problem: Protocol switch-over requires users to run two sets of daemons.
Our baking doc should mention how `tezos-baking` services handle it.
Solution: Add a section to the baking doc which mentions that
`tezos-baking` package handles this requirement. | [
{
"change_type": "MODIFY",
"old_path": "docs/baking.md",
"new_path": "docs/baking.md",
"diff": "@@ -79,6 +79,15 @@ Packages for `tezos-node`, `tezos-baker-<proto>` and `tezos-endorser-<proto>` pr\nsystemd units for running the corresponding binaries in the background, these units\nare orchestrated b... | Python | MIT License | serokell/tezos-packaging | [#421] Mention protocol switch-over in the baking doc
Problem: Protocol switch-over requires users to run two sets of daemons.
Our baking doc should mention how `tezos-baking` services handle it.
Solution: Add a section to the baking doc which mentions that
`tezos-baking` package handles this requirement. |
603,652 | 31.03.2022 12:40:22 | -10,800 | 112d1192e5f91a0f12a6be822305c7c1606aaeca | [Chore] Fix 'Attach bottles to the release' dependencies
Problem: Currently this step depends on non-architecture specific
step 'uninstall-tsp' which is no longer present.
Solution: Make it depend on arch-specific uninstall-tsp steps. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/generate-tags-pipeline.sh",
"new_path": ".buildkite/generate-tags-pipeline.sh",
"diff": "@@ -87,10 +87,11 @@ done\nymlappend \"\n- label: Add Big Sur bottle hashes to formulae\n- depends_on:\n- - \\\"uninstall-tsp-arm64\\\"\n- - \\\"uninstall-tsp-x8... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix 'Attach bottles to the release' dependencies
Problem: Currently this step depends on non-architecture specific
step 'uninstall-tsp' which is no longer present.
Solution: Make it depend on arch-specific uninstall-tsp steps. |
603,658 | 23.03.2022 13:43:30 | -3,600 | d1a958dbce589d15af7ae9f7af14e922bf0c6800 | Adjust docs for choosing network from CLI
Problem: the voting documentation doesn't mention you should use
the CL argument for choosing a custom network.
Solution: added the clarification and an example. | [
{
"change_type": "MODIFY",
"old_path": "docs/voting.md",
"new_path": "docs/voting.md",
"diff": "@@ -35,5 +35,11 @@ documented [here](./baking.md#using-a-custom-chain).\nAfter the custom baking instance is fully set up, you can vote or propose amendments on it by running:\n```bash\n-tezos-voting-wiza... | Python | MIT License | serokell/tezos-packaging | [#402] Adjust docs for choosing network from CLI
Problem: the voting documentation doesn't mention you should use
the CL argument for choosing a custom network.
Solution: added the clarification and an example. |
603,658 | 04.04.2022 20:56:29 | -7,200 | 0bebc559f266b91bb35c6766f0260498d2994f40 | Reset release number in automated releases
Problem: our Octez distribution releases are mostly automated, but
we still have to automatically reset the release number if we have
made manual releases in the meantime.
Solution: added making another commit that resets the release number
to 1 to the automated initial PR process. | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-tezos.sh",
"new_path": "scripts/update-tezos.sh",
"diff": "@@ -37,13 +37,19 @@ if [[ \"$latest_upstream_tag\" != \"$our_tezos_tag\" ]]; then\nif ! git rev-parse --verify \"$branch_name\"; then\ngit switch -c \"$branch_name\"\necho \"Updating Tez... | Python | MIT License | serokell/tezos-packaging | [#431] Reset release number in automated releases
Problem: our Octez distribution releases are mostly automated, but
we still have to automatically reset the release number if we have
made manual releases in the meantime.
Solution: added making another commit that resets the release number
to 1 to the automated initial PR process. |
603,652 | 07.04.2022 17:40:45 | -10,800 | 5bb2638c47d15c205a0adc55f380f82adf52616f | Hotfix 'update-tezos.sh'
Problem: An attempt to commit empty changes for release number update
causes 'update-tezos.sh' script to fail. This may happen when we didn't
make any additional releases since the last Octez release.
Solution: Allow this step to fail and print a message that release
number wasn't updated. | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-tezos.sh",
"new_path": "scripts/update-tezos.sh",
"diff": "@@ -48,7 +48,9 @@ if [[ \"$latest_upstream_tag\" != \"$our_tezos_tag\" ]]; then\ngit commit -a -m \"[Chore] Update brew formulae for $latest_upstream_tag\" --gpg-sign=\"tezos-packaging@s... | Python | MIT License | serokell/tezos-packaging | [#431] Hotfix 'update-tezos.sh'
Problem: An attempt to commit empty changes for release number update
causes 'update-tezos.sh' script to fail. This may happen when we didn't
make any additional releases since the last Octez release.
Solution: Allow this step to fail and print a message that release
number wasn't updated. |
603,650 | 07.04.2022 18:33:16 | -7,200 | 5deb8ab41b17ac2a3025feb6e3c34ec80922b629 | [Chore] Remove hangzhou from mainnet baking service
Problem: ithaca has been activated on mainnet, so there is no
longer need to run its daemons in the mainnet baking service.
Solution: Remove hangzhou from the mainnet baking service. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/packages.py",
"new_path": "docker/package/packages.py",
"diff": "@@ -14,7 +14,7 @@ from .systemd import Service, ServiceFile, SystemdUnit, Unit, Install\nnetworks = [\"mainnet\", \"hangzhounet\", \"ithacanet\"]\nnetworks_protos = {\n- \"mainnet\... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove hangzhou from mainnet baking service
Problem: ithaca has been activated on mainnet, so there is no
longer need to run its daemons in the mainnet baking service.
Solution: Remove hangzhou from the mainnet baking service. |
603,658 | 14.04.2022 16:25:10 | -7,200 | 5068655862b590e3989abf95bf46d49cc5295623 | Support remote signers in setup wizard
Problem: one of the options for key management is using remote
signers. However, Tezos Setup Wizard currently doesn't support it.
Solution: added remote as one of the options for key import. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -42,6 +42,7 @@ snapshot_import_modes = {\nkey_import_modes = {\n\"ledger\": \"From a ledger\",\n\"secret-key\": \"Either the unencrypted or password-encrypte... | Python | MIT License | serokell/tezos-packaging | [#397] Support remote signers in setup wizard
Problem: one of the options for key management is using remote
signers. However, Tezos Setup Wizard currently doesn't support it.
Solution: added remote as one of the options for key import. |
603,659 | 25.04.2022 19:16:54 | -10,800 | 560500fe6022158028ab3369fe6c24f542342883 | Support testnets in the voting wizards
Problem: Currently the voting wizard supports mainnet and custom networks, but not testnets.
Solution: Add support for the testnets. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -19,12 +19,6 @@ from wizard_structure import *\n# Global options\n-networks = {\n- \"mainnet\": \"Main Tezos network\",\n- \"hangzhounet\": \"Test network us... | Python | MIT License | serokell/tezos-packaging | [#442] Support testnets in the voting wizards
Problem: Currently the voting wizard supports mainnet and custom networks, but not testnets.
Solution: Add support for the testnets. |
603,658 | 27.04.2022 19:49:03 | -7,200 | e2acc2389ce07c7454e5425761ecfc439397cd43 | [Chore] Update the tests/voting doc
Problem: the voting wizard has undergone some changes since the
document describing how to test voting with a local-chain instance
was written, so there are a couple obsolete details.
Solution: updated the doc. | [
{
"change_type": "MODIFY",
"old_path": "docs/tests/voting.md",
"new_path": "docs/tests/voting.md",
"diff": "@@ -17,7 +17,7 @@ amendment periods.\n1) Generate a pair of keys associated with `baker` alias:\n-```\n+```bash\nsudo -u tezos tezos-client gen keys baker\n```\n@@ -29,10 +29,12 @@ This script... | Python | MIT License | serokell/tezos-packaging | [Chore] Update the tests/voting doc
Problem: the voting wizard has undergone some changes since the
document describing how to test voting with a local-chain instance
was written, so there are a couple obsolete details.
Solution: updated the doc. |
603,652 | 26.04.2022 15:48:36 | -10,800 | e0cae875ba7e73ded6acf10bdf03f39c6f1dc5c8 | [Chore] Fix opam-repository branch detection
Problem: Currently 'git name-rev' is used to determine the upstream
opam-repository branch. However, in some cases it may return rev
that is not a valid branch name.
Solution: Use 'git for-each-ref' instead to deduce opam-repository
branch name. | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-tezos.sh",
"new_path": "scripts/update-tezos.sh",
"diff": "@@ -24,7 +24,7 @@ cd ..\nrm -rf upstream-repo\ngit clone --bare https://gitlab.com/tezos/opam-repository.git upstream-opam-repository\n-opam_repository_branch=\"$(git --git-dir=upstream-... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix opam-repository branch detection
Problem: Currently 'git name-rev' is used to determine the upstream
opam-repository branch. However, in some cases it may return rev
that is not a valid branch name.
Solution: Use 'git for-each-ref' instead to deduce opam-repository
branch name. |
603,652 | 27.04.2022 15:26:07 | -10,800 | 1b78f3a25977985e017a6668eeb22f3a6f69b36f | [Chore] Bump opam-nix
To propagate stublibs fix. | [
{
"change_type": "MODIFY",
"old_path": "nix/nix/sources.json",
"new_path": "nix/nix/sources.json",
"diff": "\"homepage\": null,\n\"owner\": \"tweag\",\n\"repo\": \"opam-nix\",\n- \"rev\": \"f20ed19391752fe8cf505945dce776ce0ffa48a2\",\n- \"sha256\": \"0j27nwqc88grz3zfwg3f62xj5cn57dmm3qrrzr9i3j2rkw0np... | Python | MIT License | serokell/tezos-packaging | [Chore] Bump opam-nix
To propagate stublibs fix. |
603,652 | 28.04.2022 15:54:33 | -10,800 | ec20c6a6006df2d2e00e01a486ccb8d97c151ab8 | [Chore] Remove optional opam dependencies handling
Problem: Our native packaging doesn't depend on Octez opam packages
since However, there is a leftover 'optional_opam_deps' field
in 'TezosBinaryPackage' class.
Solution: Remove this leftover. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -188,7 +188,6 @@ class TezosBinaryPackage(AbstractPackage):\ndune_filepath: str,\nsystemd_units: List[SystemdUnit] = [],\ntarget_proto: str = None,\n- optional_opam_deps: List[str] = ... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove optional opam dependencies handling
Problem: Our native packaging doesn't depend on Octez opam packages
since #290. However, there is a leftover 'optional_opam_deps' field
in 'TezosBinaryPackage' class.
Solution: Remove this leftover. |
603,652 | 02.05.2022 09:16:47 | -10,800 | 946acb560fe50fbff7ddacb27a1b3fb2ba8098a3 | [Chore] Fixup tezos-baker-013-PtJakart.rb
Problem: Startup script for 'tezos-baker-013-PtJakart.rb' is written to
non-existing path. This causes build to fail.
Solution: Fix startup script path. | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-baker-013-PtJakart.rb",
"new_path": "Formula/tezos-baker-013-PtJakart.rb",
"diff": "@@ -87,7 +87,7 @@ class TezosBaker013Ptjakart < Formula\nlaunch_baker \"$BAKER_ACCOUNT\"\nfi\nEOS\n- File.write(\"tezos-baker-013-PtJakart\", startup_contents)\n+... | Python | MIT License | serokell/tezos-packaging | [Chore] Fixup tezos-baker-013-PtJakart.rb
Problem: Startup script for 'tezos-baker-013-PtJakart.rb' is written to
non-existing path. This causes build to fail.
Solution: Fix startup script path. |
603,652 | 02.05.2022 12:12:09 | -10,800 | 166391ebb7616fa6d2e74238e2fe83db80492a57 | Add 'netbase' to 'tezos-node' package deps
Problem: 'tezos-node' fails with 'Failure "resolution failed: unknown scheme"'
inside fresh Ubuntu docker container when it attempts to resolve some URL.
Solution: Add 'netbase' dependency to Ubuntu 'tezos-node' package. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -202,6 +202,13 @@ class TezosBinaryPackage(AbstractPackage):\nself.meta = meta\nself.dune_filepath = dune_filepath\n+ def __get_os_specific_native_deps(self, os_name):\n+ return [\n+ ... | Python | MIT License | serokell/tezos-packaging | [#451] Add 'netbase' to 'tezos-node' package deps
Problem: 'tezos-node' fails with 'Failure "resolution failed: unknown scheme"'
inside fresh Ubuntu docker container when it attempts to resolve some URL.
Solution: Add 'netbase' dependency to Ubuntu 'tezos-node' package. |
603,652 | 02.05.2022 13:45:32 | -10,800 | a162be291735c56a92d3792e5b107e080e6bf451 | [Chore] Remove trailing `"` from update-tezos.sh | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-tezos.sh",
"new_path": "scripts/update-tezos.sh",
"diff": "@@ -24,7 +24,7 @@ cd ..\nrm -rf upstream-repo\ngit clone --bare https://gitlab.com/tezos/opam-repository.git upstream-opam-repository\n-opam_repository_branch=\"$(git --git-dir=upstream-... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove trailing `"` from update-tezos.sh |
603,659 | 27.04.2022 19:49:35 | -10,800 | 7f0adeb28a272b66fd7532b9157655129c1641f5 | Support Ubuntu 22.04
Problem: Ubuntu 22.04 was released recently. We should provide packages for it.
Solution: Provide support for it. | [
{
"change_type": "MODIFY",
"old_path": "docker/README.md",
"new_path": "docker/README.md",
"diff": "@@ -104,7 +104,7 @@ the submitter info and signed.\nIn order to update `*.changes` files with the proper signer info run the following:\n```\n-sed -i 's/^Changed-By: .*$/Changed-By: $signer_info/' ../... | Python | MIT License | serokell/tezos-packaging | [#444] Support Ubuntu 22.04
Problem: Ubuntu 22.04 was released recently. We should provide packages for it.
Solution: Provide support for it. |
603,659 | 28.04.2022 19:14:54 | -10,800 | 8a76f7dbcf545b3464a1007a1f8d710fc46160db | Services fail to start
Problem: If node needs more time to start responding,
than baker/endorser services can wait for it, systemd
restart all the tezos services indefinetily.
Solution: Made tezos-node service be started only after it can respond. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/scripts/tezos-baker-start",
"new_path": "docker/package/scripts/tezos-baker-start",
"diff": "@@ -56,6 +56,12 @@ launch_baker() {\nfi\n}\n+# TODO we should use --keep-alive instead of this loop once\n+# https://gitlab.com/tezos/tezos/-/issues/287... | Python | MIT License | serokell/tezos-packaging | [#403] Services fail to start
Problem: If node needs more time to start responding,
than baker/endorser services can wait for it, systemd
restart all the tezos services indefinetily.
Solution: Made tezos-node service be started only after it can respond. |
603,652 | 02.05.2022 17:03:03 | -10,800 | a1c2ae811d447b1ab76f3f6e853a913e152e8421 | [Chore] Add liquidity bake voting option to baker module
Problem: Since Jakarta protocol, liquidity baking voting is mandatory
for bakers. Currently, baker module doesn't provide an option
to setup voting option.
Solution: Add 'liquidityBakingToggleVote' option that accepts voting
in Jakarta format and transforms it to Ithaca format if needed. | [
{
"change_type": "MODIFY",
"old_path": "nix/modules/tezos-baker.nix",
"new_path": "nix/modules/tezos-baker.nix",
"diff": "@@ -37,6 +37,15 @@ let\n'';\n};\n+ liquidityBakingToggleVote = mkOption {\n+ type = types.enum [ \"on\" \"of\" \"pass\" ];\n+ default = \"pass\";\n+ description = ''\n+ Vote to c... | Python | MIT License | serokell/tezos-packaging | [Chore] Add liquidity bake voting option to baker module
Problem: Since Jakarta protocol, liquidity baking voting is mandatory
for bakers. Currently, baker module doesn't provide an option
to setup voting option.
Solution: Add 'liquidityBakingToggleVote' option that accepts voting
in Jakarta format and transforms it to Ithaca format if needed. |
603,652 | 04.05.2022 12:40:06 | -10,800 | d71345a0f38778d061bbefd3a9612666d0475eed | [Chore] Add password-filename daemons' modules option
Problem: Currently modules don't support password-encrypted keys.
Solution: Add a password-filename option that allows providing password
for the password-endcrypted keys. | [
{
"change_type": "MODIFY",
"old_path": "nix/modules/common.nix",
"new_path": "nix/modules/common.nix",
"diff": "@@ -37,6 +37,13 @@ rec {\n'';\n};\n+ passwordFilename = mkOption {\n+ type = types.nullOr types.path;\n+ default = null;\n+ description = ''\n+ Path to the file with passwords that can be ... | Python | MIT License | serokell/tezos-packaging | [Chore] Add password-filename daemons' modules option
Problem: Currently modules don't support password-encrypted keys.
Solution: Add a password-filename option that allows providing password
for the password-endcrypted keys. |
603,658 | 05.05.2022 19:37:27 | -7,200 | 26392534e6f25fda1568e6492fe9c313557b3ebe | [Chore] Fix 'update-tezos.sh'
Problem: when finding out 'opam_repository_branch', refnames used to
be shown as 'refs/remotes/origin/*' and not it's 'refs/heads/*'.
This lead to an incorrect nix/nix/source.json update.
Solution: changed 'git for-each-ref' to use a more general path,
assumed branch names are not going to have slashes in them and
started splitting the rightmost part. | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-tezos.sh",
"new_path": "scripts/update-tezos.sh",
"diff": "@@ -24,7 +24,7 @@ cd ..\nrm -rf upstream-repo\ngit clone --bare https://gitlab.com/tezos/opam-repository.git upstream-opam-repository\n-opam_repository_branch=\"$(git --git-dir=upstream-... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix 'update-tezos.sh'
Problem: when finding out 'opam_repository_branch', refnames used to
be shown as 'refs/remotes/origin/*' and not it's 'refs/heads/*'.
This lead to an incorrect nix/nix/source.json update.
Solution: changed 'git for-each-ref' to use a more general path,
assumed branch names are not going to have slashes in them and
started splitting the rightmost part. |
603,658 | 06.05.2022 18:34:43 | -7,200 | 4474cde71cd283201b2d0acc867316abb82e0d7d | [Chore] Add v13.0-1 hashes to brew formulae for Big Sur | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-accuser-012-Psithaca.rb",
"new_path": "Formula/tezos-accuser-012-Psithaca.rb",
"diff": "@@ -26,6 +26,8 @@ class TezosAccuser012Psithaca < Formula\nbottle do\nroot_url \"https://github.com/serokell/tezos-packaging/releases/download/#{TezosAccuser0... | Python | MIT License | serokell/tezos-packaging | [Chore] Add v13.0-1 hashes to brew formulae for Big Sur |
603,652 | 10.05.2022 13:05:02 | -10,800 | c07613b4143761e4fe45c79782b3a7fd19b3d9c1 | Remove 'zcash-params' workaround from macos doc
Problem: 'tezos-node' is now capable of searching 'zcash-params' within
HOMEBREW_PREFIX. However, docs still mention that additional workaround
is needed on macs with Apple CPUs.
Solution: Remove this workaround from macos-related doc. | [
{
"change_type": "MODIFY",
"old_path": "docs/distros/macos.md",
"new_path": "docs/distros/macos.md",
"diff": "@@ -25,27 +25,6 @@ brew install tezos-client\nFor faster formulae installation we provide prebuilt bottles for some macOS versions in the releases.\n-## Sapling params on Macs with Apple CPU... | Python | MIT License | serokell/tezos-packaging | [#385] Remove 'zcash-params' workaround from macos doc
Problem: 'tezos-node' is now capable of searching 'zcash-params' within
HOMEBREW_PREFIX. However, docs still mention that additional workaround
is needed on macs with Apple CPUs.
Solution: Remove this workaround from macos-related doc. |
603,659 | 06.05.2022 18:44:29 | -10,800 | 3ee84c51f9f1823b5f8ad88c7b78f576b40be21f | Provide a list of public nodes
Problem: It's possible that user will use public node for voting.
We should provide a list of existing public nodes to choose.
Solution: Provide list of reachable public nodes
for corresponding network. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_voting_wizard.py",
"new_path": "docker/package/tezos_voting_wizard.py",
"diff": "@@ -22,6 +22,14 @@ ballot_outcomes = {\n\"pass\": \"Submit a vote not influencing the result but contributing to quorum\",\n}\n+public_nodes = {\n+ \"https://... | Python | MIT License | serokell/tezos-packaging | [#447] Provide a list of public nodes
Problem: It's possible that user will use public node for voting.
We should provide a list of existing public nodes to choose.
Solution: Provide list of reachable public nodes
for corresponding network. |
603,659 | 11.05.2022 18:57:24 | -10,800 | 59a961b1c272910d2d1ea3b5ac9ea48dda686a7e | Add shellcheck linter to CI
Problem: We have some linters running on our Buildkite pipeline.
However, we don't check shell scripts in any specialised way.
It would be nice to add shellcheck to run on every .sh file.
Solution: Add CI step for bash scripts linting and fix existing
style problems. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/check-trailing-whitespace.sh",
"new_path": ".buildkite/check-trailing-whitespace.sh",
"diff": "# SPDX-License-Identifier: LicenseRef-MIT-TQ\nfiles=$(git ls-files -- . ':!:*.patch' | xargs grep --files-with-matches --binary-files=without-match '[[:bl... | Python | MIT License | serokell/tezos-packaging | [#462] Add shellcheck linter to CI
Problem: We have some linters running on our Buildkite pipeline.
However, we don't check shell scripts in any specialised way.
It would be nice to add shellcheck to run on every .sh file.
Solution: Add CI step for bash scripts linting and fix existing
style problems. |
603,659 | 17.05.2022 20:38:55 | -10,800 | 4fa8594591390621c41028b121070b9bd275cd29 | fixup! Add shellcheck linter to CI | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/check-trailing-whitespace.sh",
"new_path": ".buildkite/check-trailing-whitespace.sh",
"diff": "# SPDX-License-Identifier: LicenseRef-MIT-TQ\nfiles=$(git ls-files -- . ':!:*.patch' | xargs grep --files-with-matches --binary-files=without-match '[[:bl... | Python | MIT License | serokell/tezos-packaging | fixup! [#462] Add shellcheck linter to CI |
603,652 | 18.05.2022 10:47:12 | -10,800 | 67e8ada628b8e02600042ec7949adbc08434a3bc | [Chore] Hotfix 'build-binary.sh' script
Problem: After recently applied shellcheck suggestions,
'build-binary.sh' doesn't provide a list of opam files to install
correctly.
Solution: Store find result in the array instead of a single string
variable to provide proper quoted expansion. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/scripts/build-binary.sh",
"new_path": "docker/package/scripts/build-binary.sh",
"diff": "@@ -15,8 +15,11 @@ cd tezos\nopam init local ../opam-repository --bare --disable-sandboxing\nopam switch create . --repositories=local\neval \"$(opam env)\"... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix 'build-binary.sh' script
Problem: After recently applied shellcheck suggestions,
'build-binary.sh' doesn't provide a list of opam files to install
correctly.
Solution: Store find result in the array instead of a single string
variable to provide proper quoted expansion. |
603,659 | 19.05.2022 13:38:32 | -10,800 | 44ea40a81b5abe5cd13622b38f38146f1033cc1b | Document PPA installation steps on Debian
Problem: We should be able to use serokell launchpad ppa
on some debian releases, but straightforward way won't work
because of different versioning policies.
Solution: Provide commands to install on debian and update docs. | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -48,6 +48,7 @@ voting on custom networks.\n`tezos-packaging` supports several native distribution methods for convenience:\n- [**Ubuntu**](./docs/distros/ubuntu.md)\n+- [**Debian**](./docs/distros/ubuntu.md#debi... | Python | MIT License | serokell/tezos-packaging | [#438] Document PPA installation steps on Debian
Problem: We should be able to use serokell launchpad ppa
on some debian releases, but straightforward way won't work
because of different versioning policies.
Solution: Provide commands to install on debian and update docs. |
603,659 | 17.05.2022 18:02:37 | -10,800 | ce036103e8805c9e13a059fbc069724748cdf35a | Properly package two wizards
Problem: Right now, when installing the tezos-baking package, we just
copy this common file to /usr/bin/ together with the wizards'
executable scripts.
Solution: Change the buildsystem to pybuild. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/Dockerfile-fedora",
"new_path": "docker/package/Dockerfile-fedora",
"diff": "FROM fedora:32\nRUN dnf update -y\nRUN dnf install -y libev-devel gmp-devel hidapi-devel libffi-devel zlib-devel libpq-devel m4 perl git pkg-config \\\n- rpmdevtools py... | Python | MIT License | serokell/tezos-packaging | [#388] Properly package two wizards
Problem: Right now, when installing the tezos-baking package, we just
copy this common file to /usr/bin/ together with the wizards'
executable scripts.
Solution: Change the buildsystem to pybuild. |
603,659 | 24.05.2022 14:23:41 | -10,800 | eb42a522b70280a8ac12ff93d1c1fc1492a0a0c1 | Handle ledger setup interruption
Problem: When Ctrl+C is fired during the step that interacts with
the ledger during baker setup wizard fails with an error.
Solution: Handle the exception. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -382,12 +382,18 @@ class Setup(Setup):\nkey_mode_query = get_key_mode_query(key_import_modes)\n+ ledger_set_up = False\n+ while not ledger_set_up:\nself.impo... | Python | MIT License | serokell/tezos-packaging | [#472] Handle ledger setup interruption
Problem: When Ctrl+C is fired during the step that interacts with
the ledger during baker setup wizard fails with an error.
Solution: Handle the exception. |
603,652 | 03.06.2022 15:04:26 | -10,800 | 752bc56a5b441313a0767feccb8847dab4dd0051 | [Chore] Repin opam-repository branch
Problem: opam-repository currently pinned to branch that no longer
exists.
Solution: Repin it to master. | [
{
"change_type": "MODIFY",
"old_path": "nix/nix/sources.json",
"new_path": "nix/nix/sources.json",
"diff": "\"url_template\": \"https://github.com/<owner>/<repo>/archive/<rev>.tar.gz\"\n},\n\"opam-repository\": {\n- \"branch\": \"static-layers-1\",\n- \"ref\": \"static-layers-1\",\n+ \"branch\": \"m... | Python | MIT License | serokell/tezos-packaging | [Chore] Repin opam-repository branch
Problem: opam-repository currently pinned to branch that no longer
exists.
Solution: Repin it to master. |
603,652 | 03.06.2022 15:11:09 | -10,800 | 3077d424134f572b4f6e920543bfd21b3423f0cb | [Chore] Update 'build-via-docker' step
Problem: Server on which 'build-via-docker' step is run was updated
again and now it again uses old nix interface
Solution: Update 'build-via-docker' step command by replacing 'nix shell'
with 'nix run'. | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/pipeline-raw.yml",
"new_path": ".buildkite/pipeline-raw.yml",
"diff": "@@ -53,7 +53,7 @@ steps:\n- eval \"$SET_VERSION\"\n- cd docker\n- ./docker-static-build.sh\n- - nix shell -f.. pkgs.upx -c upx tezos-*\n+ - nix run -f.. pkgs.upx -c upx tezos-*\n... | Python | MIT License | serokell/tezos-packaging | [Chore] Update 'build-via-docker' step
Problem: Server on which 'build-via-docker' step is run was updated
again and now it again uses old nix interface
Solution: Update 'build-via-docker' step command by replacing 'nix shell'
with 'nix run'. |
603,658 | 03.06.2022 16:54:41 | -7,200 | 2696aff4f5bf5ec2adbe333af53f88ddff230f25 | Add a post-install message to tezos-baking
Problem: it would be nice to notify the users about the liquidity
baking toggle vote option, as it's an important breaking change.
Solution: added a post-install step to tezos-baking debian package
that should print a notification upon installation of update. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -577,7 +577,11 @@ class TezosBakingServicesPackage(AbstractPackage):\ncustom_unit.poststop_script = \"tezos-baking-custom-poststop\"\ncustom_unit.instances = []\nself.systemd_units.ap... | Python | MIT License | serokell/tezos-packaging | [#464] Add a post-install message to tezos-baking
Problem: it would be nice to notify the users about the liquidity
baking toggle vote option, as it's an important breaking change.
Solution: added a post-install step to tezos-baking debian package
that should print a notification upon installation of update. |
603,658 | 21.06.2022 02:05:51 | -7,200 | f68701a2a5d1d363f9ab648e0f40e43db9af9970 | Update baking docs
Problem: there's a new mandatory liquidity baking toggle vote option,
but we don't mention it in the docs.
Solution: added a subsection explaining the default and how to change it. | [
{
"change_type": "MODIFY",
"old_path": "docs/baking.md",
"new_path": "docs/baking.md",
"diff": "@@ -155,6 +155,26 @@ sudo -u tezos tezos-client bootstrapped\nBy default `tezos-baking-<network>.service` will use the `baker` alias for the\nkey that will be used for baking and endorsing.\n+### Setting ... | Python | MIT License | serokell/tezos-packaging | [#464] Update baking docs
Problem: there's a new mandatory liquidity baking toggle vote option,
but we don't mention it in the docs.
Solution: added a subsection explaining the default and how to change it. |
603,650 | 22.06.2022 12:28:05 | -7,200 | 553d39e242351a529a3937d41fe6b58f3a856057 | Bump release number for new tezos-baking package
Problem: we've updated the tezos-baking package and would like to
release the changes in a new version, for which we need to bump the
release number.
Solution: bumped the release number and updated the letter version
of tezos-baking. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -494,7 +494,7 @@ class TezosBakingServicesPackage(AbstractPackage):\n# native releases, so we append an extra letter to the version of\n# the package.\n# This should be reset to \"\" ... | Python | MIT License | serokell/tezos-packaging | [#484] Bump release number for new tezos-baking package
Problem: we've updated the tezos-baking package and would like to
release the changes in a new version, for which we need to bump the
release number.
Solution: bumped the release number and updated the letter version
of tezos-baking. |
603,652 | 30.06.2022 11:02:29 | -10,800 | 8be8a0476b50464e7b4456511250af332337c540 | Avoid unnecessary formulae bottles hashes' updates
Problem: GA tend to create a PR with bottles hashes updates
even though formulae already have these hashes.
Solution: Check if the formula already has the hash of the given bottle
before updating it. | [
{
"change_type": "MODIFY",
"old_path": "scripts/bottle-hashes.sh",
"new_path": "scripts/bottle-hashes.sh",
"diff": "@@ -17,10 +17,13 @@ then\nbottle_hash=$(sha256sum \"$bottle\" | cut -d \" \" -f 1)\nformula_name=\"${BASH_REMATCH[1]}\"\nos=\"${BASH_REMATCH[2]}\"\n-\n- if [[ -f \"./Formula/$formula_n... | Python | MIT License | serokell/tezos-packaging | [#486] Avoid unnecessary formulae bottles hashes' updates
Problem: GA tend to create a PR with bottles hashes updates
even though formulae already have these hashes.
Solution: Check if the formula already has the hash of the given bottle
before updating it. |
603,661 | 05.07.2022 12:04:20 | -10,800 | a72413f967157ec4d38721c5df5f88dd959a5bd0 | Add missing default value for binaries_dir | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -163,7 +163,7 @@ def mk_dh_flags(package):\n)\n-def gen_systemd_rules_contents(package, binaries_dir):\n+def gen_systemd_rules_contents(package, binaries_dir=None):\noverride_dh_insta... | Python | MIT License | serokell/tezos-packaging | Add missing default value for binaries_dir |
603,652 | 06.07.2022 16:06:51 | -10,800 | 2a0b2a4b6e4bf5f9b7ed29132ee3dd6d2e018c70 | 'setup ledger to bake for' only for ledger key
Problem: Currently setup wizard attempts to call 'setup ledger to bake
for' for every key type. As a result, an attempt to setup remote or
secret-key baker fails with an error.
Solution: Call this function only when the selected key type is ledger. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -33,13 +33,6 @@ snapshot_import_modes = {\n\"skip\": \"Skip snapshot import and synchronize with the network from scratch\",\n}\n-key_import_modes = {\n- \"l... | Python | MIT License | serokell/tezos-packaging | [#491] 'setup ledger to bake for' only for ledger key
Problem: Currently setup wizard attempts to call 'setup ledger to bake
for' for every key type. As a result, an attempt to setup remote or
secret-key baker fails with an error.
Solution: Call this function only when the selected key type is ledger. |
603,652 | 07.07.2022 10:56:09 | -10,800 | 99dd80b49982d905c1eaffc000659c7ea5010353 | [Chore] Bump release number and 'tezos-baking' letter version
Problem: We'd like to release packages with the recent changes that
include Ithaca support removal and fix to the setup wizard.
Solution: Bump release number and 'tezos-baking' package letter version,
so that it's possible to release new packages. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -514,7 +514,7 @@ class TezosBakingServicesPackage(AbstractPackage):\n# native releases, so we append an extra letter to the version of\n# the package.\n# This should be reset to \"\" ... | Python | MIT License | serokell/tezos-packaging | [Chore] Bump release number and 'tezos-baking' letter version
Problem: We'd like to release packages with the recent changes that
include Ithaca support removal and fix to the setup wizard.
Solution: Bump release number and 'tezos-baking' package letter version,
so that it's possible to release new packages. |
603,652 | 08.07.2022 12:43:24 | -10,800 | a5830c132e39f1561a0cd30e2f1a6a317d4fed8d | Ensure formula have the same version as current tag to update bottle
Problem: In some cases bottles' hashes are updated even when current
release hasn't updated any formulae.
Solution: Assert that the formula version as the same as current tag
before updating bottle hash. | [
{
"change_type": "MODIFY",
"old_path": "scripts/bottle-hashes.sh",
"new_path": "scripts/bottle-hashes.sh",
"diff": "# SPDX-FileCopyrightText: 2021 Oxhead Alpha\n# SPDX-License-Identifier: LicenseRef-MIT-OA\n-# This script takes a directory where the bottles are stored as its argument.\n+# This scrip... | Python | MIT License | serokell/tezos-packaging | [#486] Ensure formula have the same version as current tag to update bottle
Problem: In some cases bottles' hashes are updated even when current
release hasn't updated any formulae.
Solution: Assert that the formula version as the same as current tag
before updating bottle hash. |
603,652 | 08.07.2022 14:05:20 | -10,800 | dc9274883502f652a3e3cd14cf5571b74e81b1da | Use current git tag in 'sync-bottle-hashes.sh'
Problem: GA invocation of this script uses tag from formulae
to determine current release.
Solution: Use 'github.ref' instead to have the same behaviour as BK
pipeline. | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/build-bottles.yml",
"new_path": ".github/workflows/build-bottles.yml",
"diff": "@@ -89,9 +89,9 @@ jobs:\n- name: Download Catalina bottles from the release\nenv:\nGITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}\n- run: gh release download \"${{ env.t... | Python | MIT License | serokell/tezos-packaging | [#486] Use current git tag in 'sync-bottle-hashes.sh'
Problem: GA invocation of this script uses tag from formulae
to determine current release.
Solution: Use 'github.ref' instead to have the same behaviour as BK
pipeline. |
603,660 | 16.07.2022 21:12:59 | -10,800 | 40b8e3777a224b2948b0e2bb17b89f1e21c7e014 | [Chore] update-tezos.sh hotfix | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-tezos.sh",
"new_path": "scripts/update-tezos.sh",
"diff": "@@ -38,8 +38,8 @@ if [[ \"$latest_upstream_tag\" != \"$our_tezos_tag\" ]]; then\ngit switch -c \"$branch_name\"\necho \"Updating Tezos to $latest_upstream_tag\"\n- ./update-input.py tezo... | Python | MIT License | serokell/tezos-packaging | [Chore] update-tezos.sh hotfix |
603,660 | 17.07.2022 13:33:06 | -10,800 | e19080a1fcea9aaf516f4dafb3259abb87d76aa0 | [Chore] autorelease.sh hotfix
Problem: release derivation wasn't built due to incorrect
flake output declaration.
Solution: Get rid of misleading flake-utils functions. | [
{
"change_type": "MODIFY",
"old_path": "default.nix",
"new_path": "default.nix",
"diff": "# SPDX-FileCopyrightText: 2022 Oxhead Alpha\n# SPDX-License-Identifier: LicenseRef-MIT-OA\n-(import\n+let\n+ inherit (import\n(\nlet lock = builtins.fromJSON (builtins.readFile ./flake.lock); in\nfetchTarball {... | Python | MIT License | serokell/tezos-packaging | [Chore] autorelease.sh hotfix
Problem: release derivation wasn't built due to incorrect
flake output declaration.
Solution: Get rid of misleading flake-utils functions. |
603,661 | 20.07.2022 23:30:59 | -10,800 | 4f8d648da838f63a3334eb302c278d526ec433eb | Add ability to override the license version
Problem: We cannot use a version that is not a tag because we're
fetching the LICENSE for that specific tag.
Solution: Add the option to override the license version and use the
default if not given. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/meta.py",
"new_path": "docker/package/meta.py",
"diff": "@@ -6,21 +6,27 @@ import os, json\nclass PackagesMeta:\n- def __init__(self, version, release, ubuntu_epoch, fedora_epoch, maintainer):\n+ def __init__(\n+ self, version, release, ubuntu_e... | Python | MIT License | serokell/tezos-packaging | Add ability to override the license version
Problem: We cannot use a version that is not a tag because we're
fetching the LICENSE for that specific tag.
Solution: Add the option to override the license version and use the
default if not given. |
603,650 | 15.07.2022 20:50:41 | -7,200 | 71deb951e9357eec11b7d941a6d6b6349b78222c | [Chore] Remove bin_sandbox git patch
Problem: we have a static_libs.patch that we apply to the cloned
tezos repo, but the patched file (src/bin_sandbox/dune) no longer
exists upstream.
Solution: remove the patch file and the patching command from
the build script. | [
{
"change_type": "MODIFY",
"old_path": "docker/build/Dockerfile",
"new_path": "docker/build/Dockerfile",
"diff": "@@ -8,7 +8,6 @@ RUN apk --no-cache --virtual add rsync git m4 build-base patch unzip \\\nautoconf automake libtool linux-headers cargo libffi-dev zlib-static\nCOPY ./build/build-libusb-a... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove bin_sandbox git patch
Problem: we have a static_libs.patch that we apply to the cloned
tezos repo, but the patched file (src/bin_sandbox/dune) no longer
exists upstream.
Solution: remove the patch file and the patching command from
the build script. |
603,650 | 15.07.2022 21:48:31 | -7,200 | 132017fb91da1a0966e3511a8edef9404f458ffc | [Chore] Remove tezos-sandbox from the build process
Problem: the tezos-sandbox code and binary has been dropped
from upstream Octez, but we still attempt to build it.
Solution: remove all references and builds of tezos-sandbox. | [
{
"change_type": "DELETE",
"old_path": "Formula/tezos-sandbox.rb",
"new_path": null,
"diff": "-# SPDX-FileCopyrightText: 2021 Oxhead Alpha\n-# SPDX-License-Identifier: LicenseRef-MIT-OA\n-\n-class TezosSandbox < Formula\n- @all_bins = []\n-\n- class << self\n- attr_accessor :all_bins\n- end\n- homep... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove tezos-sandbox from the build process
Problem: the tezos-sandbox code and binary has been dropped
from upstream Octez, but we still attempt to build it.
Solution: remove all references and builds of tezos-sandbox. |
603,652 | 18.07.2022 10:57:01 | -10,800 | ade43ca87d08770a97b6f0ea6be5b988cee5a901 | [Chore] Add 'coreutils' to Alpine builder images
Problem: Octez building scripts rely on sha256sum from coreutils.
Solution: Add coreutils to the list of installed packages. | [
{
"change_type": "MODIFY",
"old_path": "docker/build/Dockerfile",
"new_path": "docker/build/Dockerfile",
"diff": "@@ -5,7 +5,7 @@ FROM alpine:3.12\nRUN apk update\nRUN apk --no-cache --virtual add rsync git m4 build-base patch unzip \\\nbubblewrap wget pkgconfig gmp-dev libev-dev hidapi-dev eudev-de... | Python | MIT License | serokell/tezos-packaging | [Chore] Add 'coreutils' to Alpine builder images
Problem: Octez building scripts rely on sha256sum from coreutils.
Solution: Add coreutils to the list of installed packages. |
603,660 | 21.07.2022 15:28:06 | -10,800 | 170517a8b61efedb3efe507809615d59420b5ddc | [Chore] Bump Tezos sources to v14.0-rc1 | [
{
"change_type": "MODIFY",
"old_path": "flake.lock",
"new_path": "flake.lock",
"diff": "\"flake-compat\": \"flake-compat_2\",\n\"flake-utils\": \"flake-utils_2\",\n\"nixpkgs\": \"nixpkgs_3\",\n- \"opam-repository\": \"opam-repository\",\n+ \"opam-repository\": [\n+ \"opam-repository\"\n+ ],\n\"opam2... | Python | MIT License | serokell/tezos-packaging | [Chore] Bump Tezos sources to v14.0-rc1 |
603,660 | 21.07.2022 15:29:53 | -10,800 | 4ae4a04858f81c5d3ca6b934ff66ed0e1d519c2e | [Chore] Bump opam-nix
To fix 'ocamlfind' build. | [
{
"change_type": "MODIFY",
"old_path": "flake.lock",
"new_path": "flake.lock",
"diff": "\"opam2json\": \"opam2json\"\n},\n\"locked\": {\n- \"lastModified\": 1651063114,\n- \"narHash\": \"sha256-rB+5No8Tc77T9nj5TAX/WhNZH+aZv+HTWfxPUZ+bmB0=\",\n+ \"lastModified\": 1657909029,\n+ \"narHash\": \"sha256-... | Python | MIT License | serokell/tezos-packaging | [Chore] Bump opam-nix
To fix 'ocamlfind' build. |
603,660 | 21.07.2022 16:31:35 | -10,800 | fad51b1ba82913267bea1e68b2dc5e2f122dea19 | [Chore] Fix update-input.py
Problem: flake.lock entry for input
not always equals to input title.
Solution: use flake.lock's resolve dict
for finding right input. | [
{
"change_type": "MODIFY",
"old_path": "scripts/update-input.py",
"new_path": "scripts/update-input.py",
"diff": "# SPDX-License-Identifier: LicenseRef-MIT-OA\nimport argparse\n-import re\nimport json\nfrom subprocess import call\nwith open(\"flake.lock\") as f:\n- lock = json.load(f)[\"nodes\"]\n+ ... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix update-input.py
Problem: flake.lock entry for input
not always equals to input title.
Solution: use flake.lock's resolve dict
for finding right input. |
603,660 | 21.07.2022 16:55:25 | -10,800 | e3c73d7a979ad23f7eb3c08631fb4b978b56b42c | [Chore] Support new protocol and testnets in native packaging | [
{
"change_type": "MODIFY",
"old_path": "docker/package/packages.py",
"new_path": "docker/package/packages.py",
"diff": "@@ -17,10 +17,14 @@ from .systemd import Service, ServiceFile, SystemdUnit, Unit, Install\nnetworks = {\n\"mainnet\": \"mainnet\",\n\"jakartanet\": \"jakartanet\",\n+ \"ghostnet\":... | Python | MIT License | serokell/tezos-packaging | [Chore] Support new protocol and testnets in native packaging |
603,660 | 21.07.2022 17:19:27 | -10,800 | 54f0de93703536a2411333589afce62a55540483 | [Chore] Update doc | [
{
"change_type": "MODIFY",
"old_path": "docker/package/tezos_setup_wizard.py",
"new_path": "docker/package/tezos_setup_wizard.py",
"diff": "@@ -98,8 +98,9 @@ network_query = Step(\nid=\"network\",\nprompt=\"Which Tezos network would you like to use?\\nCurrently supported:\",\nhelp=\"The selected net... | Python | MIT License | serokell/tezos-packaging | [Chore] Update doc |
603,660 | 21.07.2022 17:22:30 | -10,800 | 5127692ce49f131a2228e7cb3408894ce7941061 | [Chore] Update nix packages | [
{
"change_type": "MODIFY",
"old_path": "docker/package/packages.py",
"new_path": "docker/package/packages.py",
"diff": "@@ -24,7 +24,7 @@ networks_protos = {\n\"mainnet\": [\"013-PtJakart\"],\n\"jakartanet\": [\"013-PtJakart\"],\n\"ghostnet\": [\"013-PtJakart\"],\n- \"kathmandunet\": [\"014-PtKathma... | Python | MIT License | serokell/tezos-packaging | [Chore] Update nix packages |
603,660 | 22.07.2022 16:04:17 | -10,800 | af426c01fafe544c0e6d0712978fe4f3c616782e | [Chore] Hotfix macos devShell | [
{
"change_type": "MODIFY",
"old_path": "flake.nix",
"new_path": "flake.nix",
"diff": "};\noutputs = inputs@{ self, nixpkgs, nixpkgs-unstable, flake-utils, serokell-nix, nix, ... }:\n+ let\n+ pkgs-darwin = nixpkgs-unstable.legacyPackages.\"aarch64-darwin\";\n+ in pkgs-darwin.lib.recursiveUpdate\n{\nn... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix macos devShell |
603,660 | 22.07.2022 16:10:41 | -10,800 | 98eb64cd5dbd0bd49be05269ea76e4c089f45ff9 | [Chore] Hotfix pipeline-for-tags | [
{
"change_type": "MODIFY",
"old_path": ".buildkite/pipeline-for-tags.yml",
"new_path": ".buildkite/pipeline-for-tags.yml",
"diff": "env:\nUSE_NEWER_NIX: 1\n+ SET_VERSION: \"export TEZOS_VERSION=\\\"$(cat meta.json | jq -r '.tezos_ref' | cut -d'/' -f3)\\\"\"\n+\nsteps:\n- label: Check for new Tezos r... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix pipeline-for-tags |
603,660 | 22.07.2022 16:14:32 | -10,800 | bc3a21978b8b1d3a80162dddd0ec5e3e006a66f9 | [Chore] Hotfix formulae deps | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-accuser-013-PtJakart.rb",
"new_path": "Formula/tezos-accuser-013-PtJakart.rb",
"diff": "@@ -13,7 +13,7 @@ class TezosAccuser013Ptjakart < Formula\nversion \"v14.0-rc1-1\"\n- build_dependencies = %w[pkg-config autoconf rsync wget rustup-init]\n+ b... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix formulae deps |
603,660 | 22.07.2022 16:16:33 | -10,800 | 91ea10ffa2a51475e77e2210b4437c5385600f16 | [Chore] Hotfix formulae titles | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-accuser-014-PtKathma.rb",
"new_path": "Formula/tezos-accuser-014-PtKathma.rb",
"diff": "# SPDX-FileCopyrightText: 2022 Oxhead Alpha\n# SPDX-License-Identifier: LicenseRef-MIT-OA\n-class TezosAccuser014PtKathma < Formula\n+class TezosAccuser014Ptk... | Python | MIT License | serokell/tezos-packaging | [Chore] Hotfix formulae titles |
603,652 | 25.07.2022 10:32:10 | -10,800 | decf420e4f22ec2d54f156e7ca5552b46767fd15 | [Chore] Include 014 daemons to formulae build list
Problem: 014 Daemons weren't included into the list of formulae that are
build via BK.
Solution: Extend the list with 014 daemons. | [
{
"change_type": "MODIFY",
"old_path": "scripts/build-all-bottles.sh",
"new_path": "scripts/build-all-bottles.sh",
"diff": "@@ -12,7 +12,7 @@ fi\nset -euo pipefail\n# we don't bottle meta-formulas that contain only services\n-formulae=(\"tezos-accuser-013-PtJakart\" \"tezos-admin-client\" \"tezos-ba... | Python | MIT License | serokell/tezos-packaging | [Chore] Include 014 daemons to formulae build list
Problem: 014 Daemons weren't included into the list of formulae that are
build via BK.
Solution: Extend the list with 014 daemons. |
603,652 | 27.07.2022 14:34:47 | -10,800 | 013fac72b6238941b44488d14cdea01ca7085035 | [Chore] Bump macos version in 'check-formulas'
Problem: macos-10.15 is deprecated now and 'check-formulas' action is
failing.
Solution: Use macos-latest which doesn't pin a specific macos version
and thus should survive future updates. | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/check-formulas.yml",
"new_path": ".github/workflows/check-formulas.yml",
"diff": "@@ -7,7 +7,7 @@ on:\n- '.github/workflows/check-formulas.yml'\njobs:\ncheck-formulas:\n- runs-on: macos-10.15\n+ runs-on: macos-latest\nsteps:\n- name: Checkout... | Python | MIT License | serokell/tezos-packaging | [Chore] Bump macos version in 'check-formulas'
Problem: macos-10.15 is deprecated now and 'check-formulas' action is
failing.
Solution: Use macos-latest which doesn't pin a specific macos version
and thus should survive future updates. |
603,650 | 01.08.2022 16:37:10 | -7,200 | 0317f506ab1c589bb39d6423671b8207cf350af2 | [Chore] Use named network option for kathmandunet
Problem: Octez v14.0 supports kathmandunet as a named network,
but in our definitions we still use a network config.
Solution: update the node Formula and package definition to use
the named option for the kathmandu network. | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-node-kathmandunet.rb",
"new_path": "Formula/tezos-node-kathmandunet.rb",
"diff": "@@ -26,14 +26,14 @@ class TezosNodeKathmandunet < Formula\n\"$node\" config init \\\n--data-dir \"$DATA_DIR\" \\\n--rpc-addr \"$NODE_RPC_ADDR\" \\\n- --network=http... | Python | MIT License | serokell/tezos-packaging | [Chore] Use named network option for kathmandunet
Problem: Octez v14.0 supports kathmandunet as a named network,
but in our definitions we still use a network config.
Solution: update the node Formula and package definition to use
the named option for the kathmandu network. |
603,660 | 19.08.2022 19:29:08 | -10,800 | b9b06dd501945731ed296e6777ef886758e5ea95 | [Chore] Fix fedora packaging
Problem: Fedora package systemd unit systemd env file
name was lowercased during packaging, which caused
failure to start corresponding service.
Solution: Don't lowercase env file name in fedora packaging. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/fedora.py",
"new_path": "docker/package/fedora.py",
"diff": "@@ -24,10 +24,6 @@ def build_fedora_package(\npkg.gen_buildfile(\"/\".join([dir, pkg.buildfile]), binaries_dir)\npkg.gen_license(f\"{dir}/LICENSE\")\nfor systemd_unit in pkg.systemd_un... | Python | MIT License | serokell/tezos-packaging | [Chore] Fix fedora packaging
Problem: Fedora package systemd unit systemd env file
name was lowercased during packaging, which caused
failure to start corresponding service.
Solution: Don't lowercase env file name in fedora packaging. |
603,652 | 24.08.2022 14:53:05 | -10,800 | 1d4da89901573178c1408db814f56d452c57e030 | Remove liquidity baking voting reminder from postinst script
Problem: Liquidity baking voting toggle is mandatory since v13.0 and
it shouldn't be new anymore for users. However, we'll still notify about
the necessity to change the vote from default on each 'tezos-baking'
package installation/update.
Solution: Remove this reminder from 'tezos-baking' package
postinstallation script. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -601,17 +601,7 @@ class TezosBakingServicesPackage(AbstractPackage):\ncustom_unit.poststop_script = \"tezos-baking-custom-poststop\"\ncustom_unit.instances = []\nself.systemd_units.ap... | Python | MIT License | serokell/tezos-packaging | [#482] Remove liquidity baking voting reminder from postinst script
Problem: Liquidity baking voting toggle is mandatory since v13.0 and
it shouldn't be new anymore for users. However, we'll still notify about
the necessity to change the vote from default on each 'tezos-baking'
package installation/update.
Solution: Remove this reminder from 'tezos-baking' package
postinstallation script. |
603,652 | 23.08.2022 14:41:05 | -10,800 | c90e11e7ad83eaedb7ddfa1ee817b6c6e611ef3a | [Chore] Remove outdated 'build-binary.sh' patch
Problem: This patch is no longer needed since the script was fixed with
v14.0-1 release.
Solution: Remove the patch itself and all usages of this patch. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/Dockerfile-ubuntu",
"new_path": "docker/package/Dockerfile-ubuntu",
"diff": "@@ -18,6 +18,7 @@ ENV OPAMROOT \"/tezos-packaging/docker/opamroot\"\nCOPY docker/package/*.py /tezos-packaging/docker/package/\nCOPY docker/package/defaults /tezos-pack... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove outdated 'build-binary.sh' patch
Problem: This patch is no longer needed since the script was fixed with
v14.0-1 release.
Solution: Remove the patch itself and all usages of this patch. |
603,660 | 15.08.2022 14:31:02 | -10,800 | ebba291fcb5768e25e94e6b0ceed1a0790d924ba | Add rollup packages for fedora and ubuntu
Problem: Jakarta protocol introduced new transaction rollup binaries.
Solution: Add source and binary packages for fedora and ubuntu packed
with respective systemd services. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "docker/package/defaults/tezos-rollup-node.conf",
"diff": "+# vim: ft=sh\n+# SPDX-FileCopyrightText: 2022 Oxhead Alpha\n+# SPDX-License-Identifier: LicenseRef-MIT-OA\n+\n+# shellcheck disable=SC2034\n+DATA_DIR=\"/var/lib/tezos/.tezos-client\"\n+N... | Python | MIT License | serokell/tezos-packaging | [#453] Add rollup packages for fedora and ubuntu
Problem: Jakarta protocol introduced new transaction rollup binaries.
Solution: Add source and binary packages for fedora and ubuntu packed
with respective systemd services. |
603,660 | 15.08.2022 18:27:15 | -10,800 | 39e97682b77806312b2615c5643efb5f0c301bc8 | Add rollup packages to static build
Problem: Jakarta protocol introduced new transaction rollup binaries.
Solution: Add them to resulting artifacts of static build. | [
{
"change_type": "MODIFY",
"old_path": "docker/docker-static-build.sh",
"new_path": "docker/docker-static-build.sh",
"diff": "@@ -11,7 +11,7 @@ set -euo pipefail\nbinaries=(\"tezos-admin-client\" \"tezos-client\" \"tezos-node\" \"tezos-signer\" \"tezos-codec\")\nfor proto in $(jq -r \".active | .[]\... | Python | MIT License | serokell/tezos-packaging | [#453] Add rollup packages to static build
Problem: Jakarta protocol introduced new transaction rollup binaries.
Solution: Add them to resulting artifacts of static build. |
603,660 | 15.08.2022 19:55:40 | -10,800 | 1bfd4de2ed6a9241c42c290cad6940f743ceb7ec | Add formulae for rollup binaries
Problem: Jakarta protocol introduced new transaction rollup binaries.
Solution: Add respective formulae with launchd services. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "Formula/tezos-tx-rollup-client-013-PtJakart.rb",
"diff": "+# SPDX-FileCopyrightText: 2022 Oxhead Alpha\n+# SPDX-License-Identifier: LicenseRef-MIT-OA\n+\n+class TezosTxRollupClient013Ptjakart < Formula\n+ @all_bins = []\n+\n+ class << self\n+ at... | Python | MIT License | serokell/tezos-packaging | [#453] Add formulae for rollup binaries
Problem: Jakarta protocol introduced new transaction rollup binaries.
Solution: Add respective formulae with launchd services. |
603,660 | 15.08.2022 20:09:37 | -10,800 | 0daabf8f284dbabf5a684369cf7abcf5ff7607bf | Add documentation for rollup node service
Problem: Use of rollup node systemd service is undocumented.
Solution:
* Explain how to start the service
* Explain configuration options
* Give an example of configuration | [
{
"change_type": "MODIFY",
"old_path": "README.md",
"new_path": "README.md",
"diff": "@@ -31,6 +31,8 @@ tezos-setup-wizard\nRead [the dedicated article](./docs/baking.md) to find out more about the setup,\nthe binaries, and the services used.\n+For setting up experimental transaction rollup node, se... | Python | MIT License | serokell/tezos-packaging | [#453] Add documentation for rollup node service
Problem: Use of rollup node systemd service is undocumented.
Solution:
* Explain how to start the service
* Explain configuration options
* Give an example of configuration |
603,652 | 23.08.2022 15:57:36 | -10,800 | d87f1c05e96d74fbe8e70fc265efe7c90fd8bd10 | Remove waiting loop from baker start script
Problem: Now scripts wait for node RPC services to start in two places:
1) In node service start script.
2) In baker service start script.
Solution: Keep it only in node service startup script. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/scripts/tezos-baker-start",
"new_path": "docker/package/scripts/tezos-baker-start",
"diff": "@@ -42,12 +42,6 @@ launch_baker() {\nfi\n}\n-# TODO we should use --keep-alive instead of this loop once\n-# https://gitlab.com/tezos/tezos/-/issues/287... | Python | MIT License | serokell/tezos-packaging | [#522] Remove waiting loop from baker start script
Problem: Now scripts wait for node RPC services to start in two places:
1) In node service start script.
2) In baker service start script.
Solution: Keep it only in node service startup script. |
603,652 | 26.07.2022 12:55:59 | -10,800 | b48f1a358a200365a388b68e6a55040c9086af62 | [Chore] Expose 'overlay' from flake
Problem: It's required to use specific overlay when using NixOS modules
from 'tezos-packaging' flake.
Solution: Expose 'overlay' that includes all required overlays. | [
{
"change_type": "MODIFY",
"old_path": "flake.nix",
"new_path": "flake.nix",
"diff": "outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, flake-utils, serokell-nix, nix, ... }:\nlet\npkgs-darwin = nixpkgs-unstable.legacyPackages.\"aarch64-darwin\";\n+\n+ protocols = nixpkgs.lib.importJSON ./protocol... | Python | MIT License | serokell/tezos-packaging | [Chore] Expose 'overlay' from flake
Problem: It's required to use specific overlay when using NixOS modules
from 'tezos-packaging' flake.
Solution: Expose 'overlay' that includes all required overlays. |
603,652 | 28.07.2022 12:57:17 | -10,800 | c4b93b3e479b4e756fb0090d851608511ee1ffe9 | [Chore] Support multiple protocols simultaneously in daemon modules
Problem: In some cases, it's required to run bakers for two protocols
simultaneously.
Solution: Update daemons service config to take a list of protocols as
an option and run a daemon for each of listed protocols. | [
{
"change_type": "MODIFY",
"old_path": "nix/modules/common.nix",
"new_path": "nix/modules/common.nix",
"diff": "@@ -20,12 +20,12 @@ rec {\ndaemonOptions = sharedOptions // {\n- baseProtocol = mkOption {\n- type = types.enum [ \"013-PtJakart\" \"014-PtKathma\" ];\n+ baseProtocols = mkOption {\n+ type... | Python | MIT License | serokell/tezos-packaging | [Chore] Support multiple protocols simultaneously in daemon modules
Problem: In some cases, it's required to run bakers for two protocols
simultaneously.
Solution: Update daemons service config to take a list of protocols as
an option and run a daemon for each of listed protocols. |
603,650 | 19.09.2022 15:33:07 | -7,200 | 8ec4531a3fa1231defcdbd4430c1401c876f3ea7 | [Chore] Add kathmandu support to mainnet
Problem: kathmandu will soon be activated on
mainnet and we we need to support it in our
services.
Solution: update mainnet services to include
a kathmandu baker for the protocol switch-over
and bump version to make a new release. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/model.py",
"new_path": "docker/package/model.py",
"diff": "@@ -517,7 +517,7 @@ class TezosBakingServicesPackage(AbstractPackage):\n# native releases, so we append an extra letter to the version of\n# the package.\n# This should be reset to \"\" ... | Python | MIT License | serokell/tezos-packaging | [Chore] Add kathmandu support to mainnet
Problem: kathmandu will soon be activated on
mainnet and we we need to support it in our
services.
Solution: update mainnet services to include
a kathmandu baker for the protocol switch-over
and bump version to make a new release. |
603,650 | 05.10.2022 20:50:45 | -7,200 | 467577833739e96fa2ad7b0bbe2ffdb2ec807196 | [Chore] Update opam-nix
Problem: nix builds of 'ocamlfind' fail.
Solution: bump opam-nix in flakes.lock | [
{
"change_type": "MODIFY",
"old_path": "flake.lock",
"new_path": "flake.lock",
"diff": "\"type\": \"github\"\n}\n},\n+ \"mirage-opam-overlays\": {\n+ \"flake\": false,\n+ \"locked\": {\n+ \"lastModified\": 1661959605,\n+ \"narHash\": \"sha256-CPTuhYML3F4J58flfp3ZbMNhkRkVFKmBEYBZY5tnQwA=\",\n+ \"owne... | Python | MIT License | serokell/tezos-packaging | [Chore] Update opam-nix
Problem: nix builds of 'ocamlfind' fail.
Solution: bump opam-nix in flakes.lock |
603,650 | 05.10.2022 21:22:02 | -7,200 | ad94d9912e4d397837db6c1bcd30bc5ba857c789 | [Chore] Remove jakarta baker from mainnet and ghostnet
Problem: Packages are built with a jakarta baker for mainnet
and ghostnet, however kathmandu has been activated on both now,
so they are no longer necessary/correct.
Solution: remove the jakarta baker from mainnet and replace the one
in ghostnet with kathmandu's. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/packages.py",
"new_path": "docker/package/packages.py",
"diff": "@@ -22,9 +22,9 @@ networks = {\n\"kathmandunet\": \"kathmandunet\",\n}\nnetworks_protos = {\n- \"mainnet\": [\"013-PtJakart\", \"014-PtKathma\"],\n+ \"mainnet\": [\"014-PtKathma\"]... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove jakarta baker from mainnet and ghostnet
Problem: Packages are built with a jakarta baker for mainnet
and ghostnet, however kathmandu has been activated on both now,
so they are no longer necessary/correct.
Solution: remove the jakarta baker from mainnet and replace the one
in ghostnet with kathmandu's. |
603,650 | 05.10.2022 21:48:30 | -7,200 | df7b04810cc4928d16436054d094d9e071123209 | [Chore] Add bottle building for rollup binaries
Problem: rollup binaries have brew formualae, but bottles for
them are not built by CI.
Solution: update the rollup formulae to include bottles, add these
to the list(s) of formulae that CI should build bottles for. | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/build-bottles.yml",
"new_path": ".github/workflows/build-bottles.yml",
"diff": "@@ -17,7 +17,7 @@ jobs:\nmatrix:\nos: [ { id: macos-12, name: \"monterey\" } ]\n# we don't bottle meta-formulas that contain only services\n- formula: [tezos-accu... | Python | MIT License | serokell/tezos-packaging | [Chore] Add bottle building for rollup binaries
Problem: rollup binaries have brew formualae, but bottles for
them are not built by CI.
Solution: update the rollup formulae to include bottles, add these
to the list(s) of formulae that CI should build bottles for. |
603,660 | 06.10.2022 22:42:44 | -10,800 | 756466275f132794a9d7faba0887b30d655403ee | [Chore] Tweak rollup node's formulae runtime dependencies
Problem: Several binaries were added as a runtime dependency
in brew formulae, but are not strictly necessary to run the
rollup nodes.
Solution: Remove these unnecessary runtime dependencies. | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-tx-rollup-node-013-PtJakart.rb",
"new_path": "Formula/tezos-tx-rollup-node-013-PtJakart.rb",
"diff": "@@ -20,7 +20,7 @@ class TezosTxRollupNode013Ptjakart < Formula\ndepends_on dependency => :build\nend\n- dependencies = %w[gmp hidapi libev libff... | Python | MIT License | serokell/tezos-packaging | [Chore] Tweak rollup node's formulae runtime dependencies
Problem: Several binaries were added as a runtime dependency
in brew formulae, but are not strictly necessary to run the
rollup nodes.
Solution: Remove these unnecessary runtime dependencies. |
603,650 | 06.10.2022 23:16:29 | -7,200 | 890df982d4e2d20bb5c55ee2dcca75a3f7430785 | [Chore] Update the rust version used
Problem: upstream tezos has increased the rust version used
for builds, so we should do the same.
Solution: bump the rust version used to run rust-init. | [
{
"change_type": "MODIFY",
"old_path": "Formula/tezos-accuser-013-PtJakart.rb",
"new_path": "Formula/tezos-accuser-013-PtJakart.rb",
"diff": "@@ -39,7 +39,7 @@ class TezosAccuser013Ptjakart < Formula\nsystem \"curl\", \"-L\", \"https://github.com/ocaml/opam/releases/download/2.0.9/opam-2.0.9-#{arch}... | Python | MIT License | serokell/tezos-packaging | [Chore] Update the rust version used
Problem: upstream tezos has increased the rust version used
for builds, so we should do the same.
Solution: bump the rust version used to run rust-init. |
603,660 | 11.10.2022 19:57:40 | -10,800 | 84ac226c1028eda5798ae64c28bf26f33fd32db3 | [Chore] Update supported protocols
Problem: Since `v15.0-rc1`, `jakarta` protocol was
deprecated and `lima` protocol was added. Also,
protocol shorthands does not contain numbers.
Solution: Update supported protocols and remove numbers from
active ones. | [
{
"change_type": "MODIFY",
"old_path": "protocols.json",
"new_path": "protocols.json",
"diff": "\"009-PsFLoren\",\n\"010-PtGRANAD\",\n\"011-PtHangz2\",\n- \"012-Psithaca\"\n+ \"012-Psithaca\",\n+ \"013-PtJakart\"\n],\n\"active\": [\n- \"013-PtJakart\",\n- \"014-PtKathma\"\n+ \"PtKathma\",\n+ \"PtLim... | Python | MIT License | serokell/tezos-packaging | [Chore] Update supported protocols
Problem: Since `v15.0-rc1`, `jakarta` protocol was
deprecated and `lima` protocol was added. Also,
protocol shorthands does not contain numbers.
Solution: Update supported protocols and remove numbers from
active ones. |
603,660 | 11.10.2022 19:59:31 | -10,800 | f19da5737fc29edd1a8735d32f1782fdec5ca681 | [Chore] Remove `jakartanet`
Problem: Since `v15.0-rc1`, `jakartanet` not running anymore.
Solution: Remove support for it. | [
{
"change_type": "MODIFY",
"old_path": "docker/package/packages.py",
"new_path": "docker/package/packages.py",
"diff": "# SPDX-FileCopyrightText: 2021 Oxhead Alpha\n# SPDX-License-Identifier: LicenseRef-MIT-OA\nimport os, json\n-from unittest.mock import patch\nfrom .meta import packages_meta\n@@ -1... | Python | MIT License | serokell/tezos-packaging | [Chore] Remove `jakartanet`
Problem: Since `v15.0-rc1`, `jakartanet` not running anymore.
Solution: Remove support for it. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.