googleapis / googleapis/release-please-action

$.changelog-sections from manifest file is ignored

Open
#932 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
2.5k
Forks
327
PR merge metrics
No merged PRs in 30d

Description

### TL;DR

We [migrated to v4](https://github.com/mdn/yari/pull/10122), but our [configured `changelog-sections`](https://github.com/mdn/yari/blob/c9f15220c62aee979a39e446890f8426263b5198/.release-please-manifest.json#L2-L7) are no longer taken into account, so the [v4 release PR](https://github.com/mdn/yari/pull/10407) is missing the "Miscellaneous" section (whereas the [v3 release PR](https://github.com/mdn/yari/pull/10370) contained this section).

### Expected behavior

The `changelog-sections` configured in the `.release-please-manifest.json` file should be used by release-please.

### Observed behavior

Release-please uses the default changelog sections instead.

### Action YAML

```yaml
# See: https://github.com/mdn/yari/blob/c9f15220c62aee979a39e446890f8426263b5198/.github/workflows/npm-publish.yml

name: NPM Publish

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
build:
if: github.repository == 'mdn/yari'
runs-on: ubuntu-latest

steps:
- name: Release
uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: node

- name: Checkout
uses: actions/checkout@v4
if: steps.release.outputs.release_created

- name: Setup
uses: actions/setup-node@v4
if: steps.release.outputs.release_created
with:
node-version-file: ".nvmrc"
cache: yarn
registry-url: "https://registry.npmjs.org"

- name: Install
if: steps.release.outputs.release_created
run: yarn --frozen-lockfile
env:
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build
if: steps.release.outputs.release_created
env:
# What this does is it makes sure the built client is made for
# doing CRUD work (e.g. previewing, toolbar, flaws UI, etc)
REACT_APP_WRITER_MODE: true

# This makes sure the auth is disabled. I.e. the "Sign in" link
# in the header. It also disables any XHR checks to the server's
# whoami endpoint.
REACT_APP_DISABLE_AUTH: true

# The 'yarn build:prepare' command is going to try to build up a
# file for the git history so it can have an index of each files.
# This makes sense in most of the cases where you have a CONTENT_ROOT
# which you'll want to build. But the CONTENT_ROOT can't be empty
# so you have to set it to something. So let's (ab)use the content
# we use for the end-to-end testing.
CONTENT_ROOT: testing/content/files
run: yarn build:prepare

- name: Publish
if: steps.release.outputs.release_created
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
```

### Log output

```text
See: https://github.com/mdn/yari/actions/runs/7698329892/job/20977357672

2024-01-29T15:19:14.2505085Z Requested labels: ubuntu-latest
2024-01-29T15:19:14.2505446Z Job defined at: mdn/yari/.github/workflows/npm-publish.yml@refs/heads/main
2024-01-29T15:19:14.2505585Z Waiting for a runner to pick up this job...
2024-01-29T15:19:15.2973212Z Job is waiting for a hosted runner to come online.
2024-01-29T15:19:18.4724805Z Job is about to start running on the hosted runner: GitHub Actions 4 (hosted)
2024-01-29T15:19:20.3922977Z Current runner version: '2.312.0'
2024-01-29T15:19:20.3945477Z ##[group]Operating System
2024-01-29T15:19:20.3946101Z Ubuntu
2024-01-29T15:19:20.3946565Z 22.04.3
2024-01-29T15:19:20.3946881Z LTS
2024-01-29T15:19:20.3947173Z ##[endgroup]
2024-01-29T15:19:20.3947632Z ##[group]Runner Image
2024-01-29T15:19:20.3948056Z Image: ubuntu-22.04
2024-01-29T15:19:20.3948438Z Version: 20240122.3.0
2024-01-29T15:19:20.3949473Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240122.3/images/ubuntu/Ubuntu2204-Readme.md
2024-01-29T15:19:20.3950903Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240122.3
2024-01-29T15:19:20.3951745Z ##[endgroup]
2024-01-29T15:19:20.3952233Z ##[group]Runner Image Provisioner
2024-01-29T15:19:20.3952719Z 2.0.329.1
2024-01-29T15:19:20.3953069Z ##[endgroup]
2024-01-29T15:19:20.3954109Z ##[group]GITHUB_TOKEN Permissions
2024-01-29T15:19:20.3955622Z Contents: write
2024-01-29T15:19:20.3956158Z Metadata: read
2024-01-29T15:19:20.3956674Z PullRequests: write
2024-01-29T15:19:20.3957251Z ##[endgroup]
2024-01-29T15:19:20.3960111Z Secret source: Actions
2024-01-29T15:19:20.3960674Z Prepare workflow directory
2024-01-29T15:19:20.4571707Z Prepare all required actions
2024-01-29T15:19:20.4737938Z Getting action download info
2024-01-29T15:19:20.6844938Z Download action repository 'google-github-actions/release-please-action@v4' (SHA:cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e)
2024-01-29T15:19:21.0190162Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11)
2024-01-29T15:19:21.0593277Z Download action repository 'actions/setup-node@v4' (SHA:b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8)
2024-01-29T15:19:21.2820493Z Complete job name: build
2024-01-29T15:19:21.3773536Z ##[group]Run google-github-actions/release-please-action@v4
2024-01-29T15:19:21.3774645Z with:
2024-01-29T15:19:21.3775350Z release-type: node
2024-01-29T15:19:21.3776275Z token: ***
2024-01-29T15:19:21.3776956Z repo-url: mdn/yari
2024-01-29T15:19:21.3777761Z github-api-url: https://api.github.com
2024-01-29T15:19:21.3778826Z github-graphql-url: https://api.github.com/graphql
2024-01-29T15:19:21.3779797Z fork: false
2024-01-29T15:19:21.3780498Z include-component-in-tag: false
2024-01-29T15:19:21.3781363Z skip-github-release: false
2024-01-29T15:19:21.3782141Z skip-github-pull-request: false
2024-01-29T15:19:21.3782995Z ##[endgroup]
2024-01-29T15:19:21.6600009Z Running release-please version: 16.5.0
2024-01-29T15:19:21.9145848Z ❯ Fetching package.json from branch main
2024-01-29T15:19:22.2865347Z ✔ Looking for latest release on branch: main with prefix: yari
2024-01-29T15:19:22.2867689Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-01-29T15:19:23.3719870Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 24
2024-01-29T15:19:24.8793675Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 49
2024-01-29T15:19:26.8222256Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 74
2024-01-29T15:19:29.5980445Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 99
2024-01-29T15:19:32.4725539Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 124
2024-01-29T15:19:34.7755951Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 149
2024-01-29T15:19:37.4535993Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 174
2024-01-29T15:19:40.1682355Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 199
2024-01-29T15:19:42.5975248Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 224
2024-01-29T15:19:45.2002311Z ❯ Fetching releases with cursor undefined
2024-01-29T15:19:45.6005569Z ❯ found release for yari Version {
2024-01-29T15:19:45.6006631Z major: 2,
2024-01-29T15:19:45.6036933Z minor: 38,
2024-01-29T15:19:45.6037654Z patch: 4,
2024-01-29T15:19:45.6038479Z preRelease: undefined,
2024-01-29T15:19:45.6039007Z build: undefined
2024-01-29T15:19:45.6039324Z }
2024-01-29T15:19:45.6042071Z ❯ found release for yari Version {
2024-01-29T15:19:45.6042909Z major: 2,
2024-01-29T15:19:45.6043638Z minor: 38,
2024-01-29T15:19:45.6045069Z patch: 3,
2024-01-29T15:19:45.6045698Z preRelease: undefined,
2024-01-29T15:19:45.6046594Z build: undefined
2024-01-29T15:19:45.6047136Z }
2024-01-29T15:19:45.6048397Z ❯ found release for yari Version {
2024-01-29T15:19:45.6049196Z major: 2,
2024-01-29T15:19:45.6049569Z minor: 38,
2024-01-29T15:19:45.6050129Z patch: 2,
2024-01-29T15:19:45.6050806Z preRelease: undefined,
2024-01-29T15:19:45.6051736Z build: undefined
2024-01-29T15:19:45.6052570Z }
2024-01-29T15:19:45.6053191Z ❯ found release for yari Version {
2024-01-29T15:19:45.6054278Z major: 2,
2024-01-29T15:19:45.6054775Z minor: 38,
2024-01-29T15:19:45.6055366Z patch: 1,
2024-01-29T15:19:45.6055813Z preRelease: undefined,
2024-01-29T15:19:45.6056391Z build: undefined
2024-01-29T15:19:45.6057382Z }
2024-01-29T15:19:45.6058006Z ❯ found release for yari Version {
2024-01-29T15:19:45.6058674Z major: 2,
2024-01-29T15:19:45.6059172Z minor: 38,
2024-01-29T15:19:45.6059519Z patch: 0,
2024-01-29T15:19:45.6059802Z preRelease: undefined,
2024-01-29T15:19:45.6060365Z build: undefined
2024-01-29T15:19:45.6060704Z }
2024-01-29T15:19:45.6061071Z ❯ found release for yari Version {
2024-01-29T15:19:45.6061504Z major: 2,
2024-01-29T15:19:45.6061819Z minor: 37,
2024-01-29T15:19:45.6062124Z patch: 1,
2024-01-29T15:19:45.6062468Z preRelease: undefined,
2024-01-29T15:19:45.6063108Z build: undefined
2024-01-29T15:19:45.6063448Z }
2024-01-29T15:19:45.6063922Z ❯ found release for yari Version {
2024-01-29T15:19:45.6064281Z major: 2,
2024-01-29T15:19:45.6064576Z minor: 37,
2024-01-29T15:19:45.6064969Z patch: 0,
2024-01-29T15:19:45.6065247Z preRelease: undefined,
2024-01-29T15:19:45.6065608Z build: undefined
2024-01-29T15:19:45.6066002Z }
2024-01-29T15:19:45.6066346Z ❯ found release for yari Version {
2024-01-29T15:19:45.6066713Z major: 2,
2024-01-29T15:19:45.6067103Z minor: 36,
2024-01-29T15:19:45.6067406Z patch: 1,
2024-01-29T15:19:45.6067700Z preRelease: undefined,
2024-01-29T15:19:45.6068143Z build: undefined
2024-01-29T15:19:45.6068456Z }
2024-01-29T15:19:45.6068901Z ❯ found release for yari Version {
2024-01-29T15:19:45.6069259Z major: 2,
2024-01-29T15:19:45.6069557Z minor: 36,
2024-01-29T15:19:45.6069944Z patch: 0,
2024-01-29T15:19:45.6070219Z preRelease: undefined,
2024-01-29T15:19:45.6070566Z build: undefined
2024-01-29T15:19:45.6070960Z }
2024-01-29T15:19:45.6071315Z ❯ found release for yari Version {
2024-01-29T15:19:45.6071682Z major: 2,
2024-01-29T15:19:45.6072041Z minor: 35,
2024-01-29T15:19:45.6072366Z patch: 1,
2024-01-29T15:19:45.6072657Z preRelease: undefined,
2024-01-29T15:19:45.6073069Z build: undefined
2024-01-29T15:19:45.6073390Z }
2024-01-29T15:19:45.6073837Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6074410Z ❯ found release for yari Version {
2024-01-29T15:19:45.6074799Z major: 2,
2024-01-29T15:19:45.6075111Z minor: 35,
2024-01-29T15:19:45.6075476Z patch: 0,
2024-01-29T15:19:45.6075769Z preRelease: undefined,
2024-01-29T15:19:45.6076119Z build: undefined
2024-01-29T15:19:45.6076520Z }
2024-01-29T15:19:45.6076931Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6077461Z ❯ found release for yari Version {
2024-01-29T15:19:45.6077910Z major: 2,
2024-01-29T15:19:45.6078221Z minor: 34,
2024-01-29T15:19:45.6078487Z patch: 2,
2024-01-29T15:19:45.6079009Z preRelease: undefined,
2024-01-29T15:19:45.6079360Z build: undefined
2024-01-29T15:19:45.6079636Z }
2024-01-29T15:19:45.6080146Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6080684Z ❯ found release for yari Version {
2024-01-29T15:19:45.6081304Z major: 2,
2024-01-29T15:19:45.6081655Z minor: 34,
2024-01-29T15:19:45.6081961Z patch: 1,
2024-01-29T15:19:45.6082288Z preRelease: undefined,
2024-01-29T15:19:45.6082704Z build: undefined
2024-01-29T15:19:45.6082980Z }
2024-01-29T15:19:45.6083678Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6084349Z ❯ found release for yari Version {
2024-01-29T15:19:45.6084698Z major: 2,
2024-01-29T15:19:45.6085023Z minor: 34,
2024-01-29T15:19:45.6085396Z patch: 0,
2024-01-29T15:19:45.6085724Z preRelease: undefined,
2024-01-29T15:19:45.6086157Z build: undefined
2024-01-29T15:19:45.6086437Z }
2024-01-29T15:19:45.6086878Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6087488Z ❯ found release for yari Version {
2024-01-29T15:19:45.6087847Z major: 2,
2024-01-29T15:19:45.6088163Z minor: 33,
2024-01-29T15:19:45.6088524Z patch: 1,
2024-01-29T15:19:45.6088833Z preRelease: undefined,
2024-01-29T15:19:45.6089164Z build: undefined
2024-01-29T15:19:45.6089577Z }
2024-01-29T15:19:45.6090022Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6090579Z ❯ found release for yari Version {
2024-01-29T15:19:45.6091033Z major: 2,
2024-01-29T15:19:45.6091314Z minor: 33,
2024-01-29T15:19:45.6091612Z patch: 0,
2024-01-29T15:19:45.6091981Z preRelease: undefined,
2024-01-29T15:19:45.6092315Z build: undefined
2024-01-29T15:19:45.6092625Z }
2024-01-29T15:19:45.6093110Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6093652Z ❯ found release for yari Version {
2024-01-29T15:19:45.6094001Z major: 2,
2024-01-29T15:19:45.6094506Z minor: 32,
2024-01-29T15:19:45.6094810Z patch: 0,
2024-01-29T15:19:45.6095308Z preRelease: undefined,
2024-01-29T15:19:45.6095772Z build: undefined
2024-01-29T15:19:45.6096081Z }
2024-01-29T15:19:45.6096522Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6097088Z ❯ found release for yari Version {
2024-01-29T15:19:45.6097491Z major: 2,
2024-01-29T15:19:45.6097801Z minor: 31,
2024-01-29T15:19:45.6098140Z patch: 0,
2024-01-29T15:19:45.6098450Z preRelease: undefined,
2024-01-29T15:19:45.6098813Z build: undefined
2024-01-29T15:19:45.6099184Z }
2024-01-29T15:19:45.6099592Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6100137Z ❯ found release for yari Version {
2024-01-29T15:19:45.6100592Z major: 2,
2024-01-29T15:19:45.6100900Z minor: 30,
2024-01-29T15:19:45.6101167Z patch: 0,
2024-01-29T15:19:45.6101543Z preRelease: undefined,
2024-01-29T15:19:45.6101903Z build: undefined
2024-01-29T15:19:45.6102178Z }
2024-01-29T15:19:45.6102655Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6103197Z ❯ found release for yari Version {
2024-01-29T15:19:45.6103644Z major: 2,
2024-01-29T15:19:45.6103908Z minor: 29,
2024-01-29T15:19:45.6104242Z patch: 0,
2024-01-29T15:19:45.6104612Z preRelease: undefined,
2024-01-29T15:19:45.6104925Z build: undefined
2024-01-29T15:19:45.6105259Z }
2024-01-29T15:19:45.6105737Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6106272Z ❯ found release for yari Version {
2024-01-29T15:19:45.6106617Z major: 2,
2024-01-29T15:19:45.6106984Z minor: 28,
2024-01-29T15:19:45.6107299Z patch: 4,
2024-01-29T15:19:45.6107570Z preRelease: undefined,
2024-01-29T15:19:45.6107978Z build: undefined
2024-01-29T15:19:45.6108325Z }
2024-01-29T15:19:45.6108738Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6109285Z ❯ found release for yari Version {
2024-01-29T15:19:45.6109686Z major: 2,
2024-01-29T15:19:45.6109980Z minor: 28,
2024-01-29T15:19:45.6110354Z patch: 3,
2024-01-29T15:19:45.6110637Z preRelease: undefined,
2024-01-29T15:19:45.6110987Z build: undefined
2024-01-29T15:19:45.6111381Z }
2024-01-29T15:19:45.6111770Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6112297Z ❯ found release for yari Version {
2024-01-29T15:19:45.6112763Z major: 2,
2024-01-29T15:19:45.6113244Z minor: 28,
2024-01-29T15:19:45.6113526Z patch: 2,
2024-01-29T15:19:45.6113898Z preRelease: undefined,
2024-01-29T15:19:45.6114246Z build: undefined
2024-01-29T15:19:45.6114536Z }
2024-01-29T15:19:45.6115028Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6115560Z ❯ found release for yari Version {
2024-01-29T15:19:45.6115964Z major: 2,
2024-01-29T15:19:45.6116298Z minor: 28,
2024-01-29T15:19:45.6116607Z patch: 1,
2024-01-29T15:19:45.6116935Z preRelease: undefined,
2024-01-29T15:19:45.6117372Z build: undefined
2024-01-29T15:19:45.6117673Z }
2024-01-29T15:19:45.6118100Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6118715Z ❯ found release for yari Version {
2024-01-29T15:19:45.6119092Z major: 2,
2024-01-29T15:19:45.6119397Z minor: 28,
2024-01-29T15:19:45.6119767Z patch: 0,
2024-01-29T15:19:45.6120141Z preRelease: undefined,
2024-01-29T15:19:45.6120455Z build: undefined
2024-01-29T15:19:45.6120845Z }
2024-01-29T15:19:45.6121285Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.6122049Z ❯ Fetching releases with cursor Y3Vyc29yOnYyOpK0MjAyMy0wNy0wNVQxNzoxNzoyNFrOBqAFaQ==
2024-01-29T15:19:45.9246915Z ❯ found release for yari Version {
2024-01-29T15:19:45.9247869Z major: 2,
2024-01-29T15:19:45.9248361Z minor: 27,
2024-01-29T15:19:45.9248943Z patch: 0,
2024-01-29T15:19:45.9249696Z preRelease: undefined,
2024-01-29T15:19:45.9250389Z build: undefined
2024-01-29T15:19:45.9250940Z }
2024-01-29T15:19:45.9251959Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9253066Z ❯ found release for yari Version {
2024-01-29T15:19:45.9253811Z major: 2,
2024-01-29T15:19:45.9254815Z minor: 26,
2024-01-29T15:19:45.9255462Z patch: 0,
2024-01-29T15:19:45.9256201Z preRelease: undefined,
2024-01-29T15:19:45.9256824Z build: undefined
2024-01-29T15:19:45.9257431Z }
2024-01-29T15:19:45.9258299Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9259344Z ❯ found release for yari Version {
2024-01-29T15:19:45.9260013Z major: 2,
2024-01-29T15:19:45.9260622Z minor: 25,
2024-01-29T15:19:45.9261140Z patch: 0,
2024-01-29T15:19:45.9261703Z preRelease: undefined,
2024-01-29T15:19:45.9262386Z build: undefined
2024-01-29T15:19:45.9262901Z }
2024-01-29T15:19:45.9263725Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9264863Z ❯ found release for yari Version {
2024-01-29T15:19:45.9265573Z major: 2,
2024-01-29T15:19:45.9266070Z minor: 24,
2024-01-29T15:19:45.9266725Z patch: 0,
2024-01-29T15:19:45.9267230Z preRelease: undefined,
2024-01-29T15:19:45.9267854Z build: undefined
2024-01-29T15:19:45.9268526Z }
2024-01-29T15:19:45.9269280Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9270275Z ❯ found release for yari Version {
2024-01-29T15:19:45.9271167Z major: 2,
2024-01-29T15:19:45.9271675Z minor: 23,
2024-01-29T15:19:45.9272141Z patch: 1,
2024-01-29T15:19:45.9272860Z preRelease: undefined,
2024-01-29T15:19:45.9273517Z build: undefined
2024-01-29T15:19:45.9274022Z }
2024-01-29T15:19:45.9275075Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9276077Z ❯ found release for yari Version {
2024-01-29T15:19:45.9276937Z major: 2,
2024-01-29T15:19:45.9277439Z minor: 23,
2024-01-29T15:19:45.9277964Z patch: 0,
2024-01-29T15:19:45.9278685Z preRelease: undefined,
2024-01-29T15:19:45.9279308Z build: undefined
2024-01-29T15:19:45.9279777Z }
2024-01-29T15:19:45.9280801Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9281838Z ❯ found release for yari Version {
2024-01-29T15:19:45.9282506Z major: 2,
2024-01-29T15:19:45.9283236Z minor: 22,
2024-01-29T15:19:45.9284048Z patch: 0,
2024-01-29T15:19:45.9284622Z preRelease: undefined,
2024-01-29T15:19:45.9285371Z build: undefined
2024-01-29T15:19:45.9285911Z }
2024-01-29T15:19:45.9286772Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9288276Z ❯ found release for yari Version {
2024-01-29T15:19:45.9288934Z major: 2,
2024-01-29T15:19:45.9289540Z minor: 21,
2024-01-29T15:19:45.9290182Z patch: 0,
2024-01-29T15:19:45.9290720Z preRelease: undefined,
2024-01-29T15:19:45.9291294Z build: undefined
2024-01-29T15:19:45.9291995Z }
2024-01-29T15:19:45.9292831Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9293694Z ❯ found release for yari Version {
2024-01-29T15:19:45.9294176Z major: 2,
2024-01-29T15:19:45.9294538Z minor: 20,
2024-01-29T15:19:45.9294839Z patch: 3,
2024-01-29T15:19:45.9295193Z preRelease: undefined,
2024-01-29T15:19:45.9295563Z build: undefined
2024-01-29T15:19:45.9295874Z }
2024-01-29T15:19:45.9296394Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9296888Z ❯ found release for yari Version {
2024-01-29T15:19:45.9297275Z major: 2,
2024-01-29T15:19:45.9297649Z minor: 20,
2024-01-29T15:19:45.9297917Z patch: 2,
2024-01-29T15:19:45.9298238Z preRelease: undefined,
2024-01-29T15:19:45.9298663Z build: undefined
2024-01-29T15:19:45.9298965Z }
2024-01-29T15:19:45.9299350Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9299975Z ❯ found release for yari Version {
2024-01-29T15:19:45.9300356Z major: 2,
2024-01-29T15:19:45.9300610Z minor: 20,
2024-01-29T15:19:45.9300992Z patch: 1,
2024-01-29T15:19:45.9301294Z preRelease: undefined,
2024-01-29T15:19:45.9301712Z build: undefined
2024-01-29T15:19:45.9301990Z }
2024-01-29T15:19:45.9302400Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9302996Z ❯ found release for yari Version {
2024-01-29T15:19:45.9303371Z major: 2,
2024-01-29T15:19:45.9303815Z minor: 20,
2024-01-29T15:19:45.9304215Z patch: 0,
2024-01-29T15:19:45.9304520Z preRelease: undefined,
2024-01-29T15:19:45.9304842Z build: undefined
2024-01-29T15:19:45.9305205Z }
2024-01-29T15:19:45.9305626Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9306162Z ❯ found release for yari Version {
2024-01-29T15:19:45.9306562Z major: 2,
2024-01-29T15:19:45.9306853Z minor: 19,
2024-01-29T15:19:45.9307168Z patch: 0,
2024-01-29T15:19:45.9307495Z preRelease: undefined,
2024-01-29T15:19:45.9307845Z build: undefined
2024-01-29T15:19:45.9308171Z }
2024-01-29T15:19:45.9308640Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:19:45.9309144Z ❯ found 9 possible releases. [
2024-01-29T15:19:45.9309510Z Version {
2024-01-29T15:19:45.9309866Z major: 2,
2024-01-29T15:19:45.9310149Z minor: 38,
2024-01-29T15:19:45.9310449Z patch: 4,
2024-01-29T15:19:45.9310833Z preRelease: undefined,
2024-01-29T15:19:45.9311204Z build: undefined
2024-01-29T15:19:45.9311487Z },
2024-01-29T15:19:45.9311830Z Version {
2024-01-29T15:19:45.9312140Z major: 2,
2024-01-29T15:19:45.9312434Z minor: 38,
2024-01-29T15:19:45.9312777Z patch: 3,
2024-01-29T15:19:45.9313082Z preRelease: undefined,
2024-01-29T15:19:45.9313435Z build: undefined
2024-01-29T15:19:45.9313799Z },
2024-01-29T15:19:45.9314072Z Version {
2024-01-29T15:19:45.9314362Z major: 2,
2024-01-29T15:19:45.9314732Z minor: 38,
2024-01-29T15:19:45.9314995Z patch: 2,
2024-01-29T15:19:45.9315300Z preRelease: undefined,
2024-01-29T15:19:45.9315724Z build: undefined
2024-01-29T15:19:45.9316000Z },
2024-01-29T15:19:45.9316286Z Version {
2024-01-29T15:19:45.9316639Z major: 2,
2024-01-29T15:19:45.9316927Z minor: 38,
2024-01-29T15:19:45.9317323Z patch: 1,
2024-01-29T15:19:45.9317598Z preRelease: undefined,
2024-01-29T15:19:45.9317943Z build: undefined
2024-01-29T15:19:45.9318330Z },
2024-01-29T15:19:45.9318610Z Version {
2024-01-29T15:19:45.9318877Z major: 2,
2024-01-29T15:19:45.9319256Z minor: 38,
2024-01-29T15:19:45.9319560Z patch: 0,
2024-01-29T15:19:45.9319884Z preRelease: undefined,
2024-01-29T15:19:45.9320267Z build: undefined
2024-01-29T15:19:45.9320584Z },
2024-01-29T15:19:45.9321009Z Version {
2024-01-29T15:19:45.9321345Z major: 2,
2024-01-29T15:19:45.9321663Z minor: 37,
2024-01-29T15:19:45.9321965Z patch: 1,
2024-01-29T15:19:45.9322339Z preRelease: undefined,
2024-01-29T15:19:45.9322677Z build: undefined
2024-01-29T15:19:45.9322988Z },
2024-01-29T15:19:45.9323323Z Version {
2024-01-29T15:19:45.9323818Z major: 2,
2024-01-29T15:19:45.9324116Z minor: 37,
2024-01-29T15:19:45.9324496Z patch: 0,
2024-01-29T15:19:45.9324821Z preRelease: undefined,
2024-01-29T15:19:45.9325134Z build: undefined
2024-01-29T15:19:45.9325531Z },
2024-01-29T15:19:45.9325802Z Version {
2024-01-29T15:19:45.9326056Z major: 2,
2024-01-29T15:19:45.9326437Z minor: 36,
2024-01-29T15:19:45.9326739Z patch: 1,
2024-01-29T15:19:45.9327043Z preRelease: undefined,
2024-01-29T15:19:45.9327440Z build: undefined
2024-01-29T15:19:45.9327749Z },
2024-01-29T15:19:45.9328017Z Version {
2024-01-29T15:19:45.9328356Z major: 2,
2024-01-29T15:19:45.9328655Z minor: 36,
2024-01-29T15:19:45.9328965Z patch: 0,
2024-01-29T15:19:45.9329332Z preRelease: undefined,
2024-01-29T15:19:45.9329642Z build: undefined
2024-01-29T15:19:45.9329963Z }
2024-01-29T15:19:45.9330295Z ]
2024-01-29T15:19:45.9331398Z ✔ Building releases
2024-01-29T15:19:45.9331895Z ✔ Building strategies by path
2024-01-29T15:19:45.9332255Z ❯ .: node
2024-01-29T15:19:52.1722283Z ❯ Fetching package.json from branch main
2024-01-29T15:19:52.1728027Z ✔ Looking for latest release on branch: main with prefix: yari
2024-01-29T15:19:52.1729127Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-01-29T15:19:53.6274873Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 24
2024-01-29T15:19:55.0632396Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 49
2024-01-29T15:19:56.2572349Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 74
2024-01-29T15:19:57.2873428Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 99
2024-01-29T15:19:58.1238976Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 124
2024-01-29T15:19:58.9452975Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 149
2024-01-29T15:19:59.8862937Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 174
2024-01-29T15:20:01.0372447Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 199
2024-01-29T15:20:01.9290468Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 224
2024-01-29T15:20:03.0527230Z ❯ Fetching releases with cursor undefined
2024-01-29T15:20:03.2441927Z ❯ found release for yari Version {
2024-01-29T15:20:03.2442825Z major: 2,
2024-01-29T15:20:03.2443295Z minor: 38,
2024-01-29T15:20:03.2444091Z patch: 4,
2024-01-29T15:20:03.2445356Z preRelease: undefined,
2024-01-29T15:20:03.2446213Z build: undefined
2024-01-29T15:20:03.2448975Z }
2024-01-29T15:20:03.2449657Z ❯ found release for yari Version {
2024-01-29T15:20:03.2450763Z major: 2,
2024-01-29T15:20:03.2451614Z minor: 38,
2024-01-29T15:20:03.2452121Z patch: 3,
2024-01-29T15:20:03.2452615Z preRelease: undefined,
2024-01-29T15:20:03.2453223Z build: undefined
2024-01-29T15:20:03.2453708Z }
2024-01-29T15:20:03.2454346Z ❯ found release for yari Version {
2024-01-29T15:20:03.2454752Z major: 2,
2024-01-29T15:20:03.2455067Z minor: 38,
2024-01-29T15:20:03.2455481Z patch: 2,
2024-01-29T15:20:03.2455768Z preRelease: undefined,
2024-01-29T15:20:03.2456145Z build: undefined
2024-01-29T15:20:03.2456558Z }
2024-01-29T15:20:03.2456870Z ❯ found release for yari Version {
2024-01-29T15:20:03.2457280Z major: 2,
2024-01-29T15:20:03.2457645Z minor: 38,
2024-01-29T15:20:03.2457944Z patch: 1,
2024-01-29T15:20:03.2458242Z preRelease: undefined,
2024-01-29T15:20:03.2458927Z build: undefined
2024-01-29T15:20:03.2459256Z }
2024-01-29T15:20:03.2459675Z ❯ found release for yari Version {
2024-01-29T15:20:03.2460032Z major: 2,
2024-01-29T15:20:03.2460365Z minor: 38,
2024-01-29T15:20:03.2460729Z patch: 0,
2024-01-29T15:20:03.2461008Z preRelease: undefined,
2024-01-29T15:20:03.2461375Z build: undefined
2024-01-29T15:20:03.2461750Z }
2024-01-29T15:20:03.2462091Z ❯ found release for yari Version {
2024-01-29T15:20:03.2462462Z major: 2,
2024-01-29T15:20:03.2462851Z minor: 37,
2024-01-29T15:20:03.2463168Z patch: 1,
2024-01-29T15:20:03.2463446Z preRelease: undefined,
2024-01-29T15:20:03.2463864Z build: undefined
2024-01-29T15:20:03.2464190Z }
2024-01-29T15:20:03.2464549Z ❯ found release for yari Version {
2024-01-29T15:20:03.2464964Z major: 2,
2024-01-29T15:20:03.2465272Z minor: 37,
2024-01-29T15:20:03.2465571Z patch: 0,
2024-01-29T15:20:03.2465906Z preRelease: undefined,
2024-01-29T15:20:03.2466280Z build: undefined
2024-01-29T15:20:03.2466588Z }
2024-01-29T15:20:03.2467019Z ❯ found release for yari Version {
2024-01-29T15:20:03.2467365Z major: 2,
2024-01-29T15:20:03.2467657Z minor: 36,
2024-01-29T15:20:03.2468042Z patch: 1,
2024-01-29T15:20:03.2468314Z preRelease: undefined,
2024-01-29T15:20:03.2468678Z build: undefined
2024-01-29T15:20:03.2469191Z }
2024-01-29T15:20:03.2469531Z ❯ found release for yari Version {
2024-01-29T15:20:03.2469879Z major: 2,
2024-01-29T15:20:03.2470412Z minor: 36,
2024-01-29T15:20:03.2470677Z patch: 0,
2024-01-29T15:20:03.2471002Z preRelease: undefined,
2024-01-29T15:20:03.2471431Z build: undefined
2024-01-29T15:20:03.2471708Z }
2024-01-29T15:20:03.2472063Z ❯ found release for yari Version {
2024-01-29T15:20:03.2472717Z major: 2,
2024-01-29T15:20:03.2473043Z minor: 35,
2024-01-29T15:20:03.2473311Z patch: 1,
2024-01-29T15:20:03.2473693Z preRelease: undefined,
2024-01-29T15:20:03.2474065Z build: undefined
2024-01-29T15:20:03.2474347Z }
2024-01-29T15:20:03.2474847Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2475455Z ❯ found release for yari Version {
2024-01-29T15:20:03.2475914Z major: 2,
2024-01-29T15:20:03.2476180Z minor: 35,
2024-01-29T15:20:03.2476502Z patch: 0,
2024-01-29T15:20:03.2476873Z preRelease: undefined,
2024-01-29T15:20:03.2477205Z build: undefined
2024-01-29T15:20:03.2477533Z }
2024-01-29T15:20:03.2478014Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2478561Z ❯ found release for yari Version {
2024-01-29T15:20:03.2478909Z major: 2,
2024-01-29T15:20:03.2479269Z minor: 34,
2024-01-29T15:20:03.2479593Z patch: 2,
2024-01-29T15:20:03.2479904Z preRelease: undefined,
2024-01-29T15:20:03.2480282Z build: undefined
2024-01-29T15:20:03.2480619Z }
2024-01-29T15:20:03.2481034Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2481587Z ❯ found release for yari Version {
2024-01-29T15:20:03.2482003Z major: 2,
2024-01-29T15:20:03.2482294Z minor: 34,
2024-01-29T15:20:03.2482668Z patch: 1,
2024-01-29T15:20:03.2482951Z preRelease: undefined,
2024-01-29T15:20:03.2483298Z build: undefined
2024-01-29T15:20:03.2483957Z }
2024-01-29T15:20:03.2484390Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2484931Z ❯ found release for yari Version {
2024-01-29T15:20:03.2485405Z major: 2,
2024-01-29T15:20:03.2485704Z minor: 34,
2024-01-29T15:20:03.2485970Z patch: 0,
2024-01-29T15:20:03.2486375Z preRelease: undefined,
2024-01-29T15:20:03.2486728Z build: undefined
2024-01-29T15:20:03.2487051Z }
2024-01-29T15:20:03.2487510Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2488039Z ❯ found release for yari Version {
2024-01-29T15:20:03.2488437Z major: 2,
2024-01-29T15:20:03.2488771Z minor: 33,
2024-01-29T15:20:03.2489071Z patch: 1,
2024-01-29T15:20:03.2489393Z preRelease: undefined,
2024-01-29T15:20:03.2489803Z build: undefined
2024-01-29T15:20:03.2490078Z }
2024-01-29T15:20:03.2490509Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2491305Z ❯ found release for yari Version {
2024-01-29T15:20:03.2491665Z major: 2,
2024-01-29T15:20:03.2491956Z minor: 33,
2024-01-29T15:20:03.2492326Z patch: 0,
2024-01-29T15:20:03.2492648Z preRelease: undefined,
2024-01-29T15:20:03.2492960Z build: undefined
2024-01-29T15:20:03.2493349Z }
2024-01-29T15:20:03.2493768Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2494249Z ❯ found release for yari Version {
2024-01-29T15:20:03.2494706Z major: 2,
2024-01-29T15:20:03.2494996Z minor: 32,
2024-01-29T15:20:03.2495374Z patch: 0,
2024-01-29T15:20:03.2495662Z preRelease: undefined,
2024-01-29T15:20:03.2496011Z build: undefined
2024-01-29T15:20:03.2496386Z }
2024-01-29T15:20:03.2496819Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2497299Z ❯ found release for yari Version {
2024-01-29T15:20:03.2497779Z major: 2,
2024-01-29T15:20:03.2498074Z minor: 31,
2024-01-29T15:20:03.2498336Z patch: 0,
2024-01-29T15:20:03.2498728Z preRelease: undefined,
2024-01-29T15:20:03.2499074Z build: undefined
2024-01-29T15:20:03.2499392Z }
2024-01-29T15:20:03.2499850Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2500379Z ❯ found release for yari Version {
2024-01-29T15:20:03.2500756Z major: 2,
2024-01-29T15:20:03.2501095Z minor: 30,
2024-01-29T15:20:03.2501393Z patch: 0,
2024-01-29T15:20:03.2501714Z preRelease: undefined,
2024-01-29T15:20:03.2502124Z build: undefined
2024-01-29T15:20:03.2502397Z }
2024-01-29T15:20:03.2502825Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2503416Z ❯ found release for yari Version {
2024-01-29T15:20:03.2503792Z major: 2,
2024-01-29T15:20:03.2504230Z minor: 29,
2024-01-29T15:20:03.2504610Z patch: 0,
2024-01-29T15:20:03.2504934Z preRelease: undefined,
2024-01-29T15:20:03.2505245Z build: undefined
2024-01-29T15:20:03.2505617Z }
2024-01-29T15:20:03.2506053Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2506578Z ❯ found release for yari Version {
2024-01-29T15:20:03.2506991Z major: 2,
2024-01-29T15:20:03.2507299Z minor: 28,
2024-01-29T15:20:03.2507598Z patch: 4,
2024-01-29T15:20:03.2507947Z preRelease: undefined,
2024-01-29T15:20:03.2508335Z build: undefined
2024-01-29T15:20:03.2508643Z }
2024-01-29T15:20:03.2509137Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2509620Z ❯ found release for yari Version {
2024-01-29T15:20:03.2510001Z major: 2,
2024-01-29T15:20:03.2510380Z minor: 28,
2024-01-29T15:20:03.2510645Z patch: 3,
2024-01-29T15:20:03.2510956Z preRelease: undefined,
2024-01-29T15:20:03.2511396Z build: undefined
2024-01-29T15:20:03.2511712Z }
2024-01-29T15:20:03.2512098Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2512724Z ❯ found release for yari Version {
2024-01-29T15:20:03.2513256Z major: 2,
2024-01-29T15:20:03.2513657Z minor: 28,
2024-01-29T15:20:03.2513932Z patch: 2,
2024-01-29T15:20:03.2514267Z preRelease: undefined,
2024-01-29T15:20:03.2514692Z build: undefined
2024-01-29T15:20:03.2514972Z }
2024-01-29T15:20:03.2515414Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2516025Z ❯ found release for yari Version {
2024-01-29T15:20:03.2516411Z major: 2,
2024-01-29T15:20:03.2516671Z minor: 28,
2024-01-29T15:20:03.2517050Z patch: 1,
2024-01-29T15:20:03.2517379Z preRelease: undefined,
2024-01-29T15:20:03.2517691Z build: undefined
2024-01-29T15:20:03.2518079Z }
2024-01-29T15:20:03.2518495Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2519030Z ❯ found release for yari Version {
2024-01-29T15:20:03.2519440Z major: 2,
2024-01-29T15:20:03.2519741Z minor: 28,
2024-01-29T15:20:03.2520062Z patch: 0,
2024-01-29T15:20:03.2520398Z preRelease: undefined,
2024-01-29T15:20:03.2520745Z build: undefined
2024-01-29T15:20:03.2521073Z }
2024-01-29T15:20:03.2521559Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.2522530Z ❯ Fetching releases with cursor Y3Vyc29yOnYyOpK0MjAyMy0wNy0wNVQxNzoxNzoyNFrOBqAFaQ==
2024-01-29T15:20:03.5546540Z ❯ found release for yari Version {
2024-01-29T15:20:03.5547796Z major: 2,
2024-01-29T15:20:03.5548461Z minor: 27,
2024-01-29T15:20:03.5549306Z patch: 0,
2024-01-29T15:20:03.5550058Z preRelease: undefined,
2024-01-29T15:20:03.5550687Z build: undefined
2024-01-29T15:20:03.5551408Z }
2024-01-29T15:20:03.5552143Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5552850Z ❯ found release for yari Version {
2024-01-29T15:20:03.5553402Z major: 2,
2024-01-29T15:20:03.5554012Z minor: 26,
2024-01-29T15:20:03.5554484Z patch: 0,
2024-01-29T15:20:03.5554851Z preRelease: undefined,
2024-01-29T15:20:03.5555448Z build: undefined
2024-01-29T15:20:03.5555921Z }
2024-01-29T15:20:03.5556497Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5557153Z ❯ found release for yari Version {
2024-01-29T15:20:03.5557728Z major: 2,
2024-01-29T15:20:03.5558110Z minor: 25,
2024-01-29T15:20:03.5558464Z patch: 0,
2024-01-29T15:20:03.5558812Z preRelease: undefined,
2024-01-29T15:20:03.5559187Z build: undefined
2024-01-29T15:20:03.5559506Z }
2024-01-29T15:20:03.5559973Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5560539Z ❯ found release for yari Version {
2024-01-29T15:20:03.5561117Z major: 2,
2024-01-29T15:20:03.5561524Z minor: 24,
2024-01-29T15:20:03.5561898Z patch: 0,
2024-01-29T15:20:03.5562348Z preRelease: undefined,
2024-01-29T15:20:03.5562814Z build: undefined
2024-01-29T15:20:03.5563093Z }
2024-01-29T15:20:03.5563948Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5565058Z ❯ found release for yari Version {
2024-01-29T15:20:03.5565477Z major: 2,
2024-01-29T15:20:03.5565744Z minor: 23,
2024-01-29T15:20:03.5566143Z patch: 1,
2024-01-29T15:20:03.5566452Z preRelease: undefined,
2024-01-29T15:20:03.5566818Z build: undefined
2024-01-29T15:20:03.5567171Z }
2024-01-29T15:20:03.5567636Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5568189Z ❯ found release for yari Version {
2024-01-29T15:20:03.5568638Z major: 2,
2024-01-29T15:20:03.5568949Z minor: 23,
2024-01-29T15:20:03.5569214Z patch: 0,
2024-01-29T15:20:03.5569578Z preRelease: undefined,
2024-01-29T15:20:03.5569944Z build: undefined
2024-01-29T15:20:03.5570319Z }
2024-01-29T15:20:03.5570701Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5571240Z ❯ found release for yari Version {
2024-01-29T15:20:03.5571683Z major: 2,
2024-01-29T15:20:03.5571940Z minor: 22,
2024-01-29T15:20:03.5572255Z patch: 0,
2024-01-29T15:20:03.5572649Z preRelease: undefined,
2024-01-29T15:20:03.5573012Z build: undefined
2024-01-29T15:20:03.5573291Z }
2024-01-29T15:20:03.5573769Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5574310Z ❯ found release for yari Version {
2024-01-29T15:20:03.5574661Z major: 2,
2024-01-29T15:20:03.5575015Z minor: 21,
2024-01-29T15:20:03.5575325Z patch: 0,
2024-01-29T15:20:03.5575630Z preRelease: undefined,
2024-01-29T15:20:03.5576018Z build: undefined
2024-01-29T15:20:03.5576342Z }
2024-01-29T15:20:03.5576752Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5577347Z ❯ found release for yari Version {
2024-01-29T15:20:03.5577685Z major: 2,
2024-01-29T15:20:03.5577974Z minor: 20,
2024-01-29T15:20:03.5578340Z patch: 3,
2024-01-29T15:20:03.5578609Z preRelease: undefined,
2024-01-29T15:20:03.5578956Z build: undefined
2024-01-29T15:20:03.5579390Z }
2024-01-29T15:20:03.5579802Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5580284Z ❯ found release for yari Version {
2024-01-29T15:20:03.5580748Z major: 2,
2024-01-29T15:20:03.5581037Z minor: 20,
2024-01-29T15:20:03.5581327Z patch: 2,
2024-01-29T15:20:03.5581710Z preRelease: undefined,
2024-01-29T15:20:03.5582051Z build: undefined
2024-01-29T15:20:03.5582546Z }
2024-01-29T15:20:03.5583003Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5583525Z ❯ found release for yari Version {
2024-01-29T15:20:03.5583917Z major: 2,
2024-01-29T15:20:03.5584270Z minor: 20,
2024-01-29T15:20:03.5584529Z patch: 1,
2024-01-29T15:20:03.5584846Z preRelease: undefined,
2024-01-29T15:20:03.5585293Z build: undefined
2024-01-29T15:20:03.5585580Z }
2024-01-29T15:20:03.5585991Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5586578Z ❯ found release for yari Version {
2024-01-29T15:20:03.5586966Z major: 2,
2024-01-29T15:20:03.5587219Z minor: 20,
2024-01-29T15:20:03.5587582Z patch: 0,
2024-01-29T15:20:03.5587909Z preRelease: undefined,
2024-01-29T15:20:03.5588214Z build: undefined
2024-01-29T15:20:03.5588581Z }
2024-01-29T15:20:03.5589004Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5589583Z ❯ found release for yari Version {
2024-01-29T15:20:03.5589950Z major: 2,
2024-01-29T15:20:03.5590239Z minor: 19,
2024-01-29T15:20:03.5590595Z patch: 0,
2024-01-29T15:20:03.5590877Z preRelease: undefined,
2024-01-29T15:20:03.5591223Z build: undefined
2024-01-29T15:20:03.5591586Z }
2024-01-29T15:20:03.5592014Z ❯ SHA not found in recent commits to branch main, skipping
2024-01-29T15:20:03.5592496Z ❯ found 9 possible releases. [
2024-01-29T15:20:03.5592932Z Version {
2024-01-29T15:20:03.5593247Z major: 2,
2024-01-29T15:20:03.5593550Z minor: 38,
2024-01-29T15:20:03.5593899Z patch: 4,
2024-01-29T15:20:03.5594211Z preRelease: undefined,
2024-01-29T15:20:03.5594565Z build: undefined
2024-01-29T15:20:03.5594928Z },
2024-01-29T15:20:03.5595208Z Version {
2024-01-29T15:20:03.5595646Z major: 2,
2024-01-29T15:20:03.5596018Z minor: 38,
2024-01-29T15:20:03.5596286Z patch: 3,
2024-01-29T15:20:03.5596615Z preRelease: undefined,
2024-01-29T15:20:03.5597028Z build: undefined
2024-01-29T15:20:03.5597309Z },
2024-01-29T15:20:03.5597613Z Version {
2024-01-29T15:20:03.5597973Z major: 2,
2024-01-29T15:20:03.5598270Z minor: 38,
2024-01-29T15:20:03.5598558Z patch: 2,
2024-01-29T15:20:03.5598944Z preRelease: undefined,
2024-01-29T15:20:03.5599312Z build: undefined
2024-01-29T15:20:03.5599592Z },
2024-01-29T15:20:03.5599928Z Version {
2024-01-29T15:20:03.5600233Z major: 2,
2024-01-29T15:20:03.5600533Z minor: 38,
2024-01-29T15:20:03.5600863Z patch: 1,
2024-01-29T15:20:03.5601189Z preRelease: undefined,
2024-01-29T15:20:03.5601546Z build: undefined
2024-01-29T15:20:03.5601898Z },
2024-01-29T15:20:03.5602192Z Version {
2024-01-29T15:20:03.5602484Z major: 2,
2024-01-29T15:20:03.5602857Z minor: 38,
2024-01-29T15:20:03.5603132Z patch: 0,
2024-01-29T15:20:03.5603665Z preRelease: undefined,
2024-01-29T15:20:03.5604136Z build: undefined
2024-01-29T15:20:03.5604417Z },
2024-01-29T15:20:03.5604696Z Version {
2024-01-29T15:20:03.5605067Z major: 2,
2024-01-29T15:20:03.5605368Z minor: 37,
2024-01-29T15:20:03.5605636Z patch: 1,
2024-01-29T15:20:03.5606029Z preRelease: undefined,
2024-01-29T15:20:03.5606386Z build: undefined
2024-01-29T15:20:03.5606666Z },
2024-01-29T15:20:03.5607046Z Version {
2024-01-29T15:20:03.5607335Z major: 2,
2024-01-29T15:20:03.5607702Z minor: 37,
2024-01-29T15:20:03.5607970Z patch: 0,
2024-01-29T15:20:03.5608273Z preRelease: undefined,
2024-01-29T15:20:03.5608690Z build: undefined
2024-01-29T15:20:03.5608962Z },
2024-01-29T15:20:03.5609231Z Version {
2024-01-29T15:20:03.5609591Z major: 2,
2024-01-29T15:20:03.5609881Z minor: 36,
2024-01-29T15:20:03.5610148Z patch: 1,
2024-01-29T15:20:03.5610534Z preRelease: undefined,
2024-01-29T15:20:03.5610897Z build: undefined
2024-01-29T15:20:03.5611177Z },
2024-01-29T15:20:03.5611525Z Version {
2024-01-29T15:20:03.5611815Z major: 2,
2024-01-29T15:20:03.5612129Z minor: 36,
2024-01-29T15:20:03.5612454Z patch: 0,
2024-01-29T15:20:03.5612926Z preRelease: undefined,
2024-01-29T15:20:03.5613294Z build: undefined
2024-01-29T15:20:03.5613644Z }
2024-01-29T15:20:03.5613931Z ]
2024-01-29T15:20:03.5614709Z ✔ Building pull requests
2024-01-29T15:20:03.5615182Z ✔ Building strategies by path
2024-01-29T15:20:03.5615579Z ❯ .: node
2024-01-29T15:20:03.5615890Z ✔ Collecting release commit SHAs
2024-01-29T15:20:03.5616397Z ❯ release search depth: 400
2024-01-29T15:20:03.5616832Z ❯ Fetching releases with cursor undefined
2024-01-29T15:20:03.7684121Z ❯ Found release for path ., v2.38.4
2024-01-29T15:20:03.7685549Z ❯ release for path: ., version: 2.38.4, sha: 79980295f3bc209d006d14c8555ac1cbf430edb4
2024-01-29T15:20:03.7686741Z ✔ Collecting commits since all latest releases
2024-01-29T15:20:03.7687872Z ❯ commit search depth: 500
2024-01-29T15:20:03.7688740Z ❯ Set(1) { '79980295f3bc209d006d14c8555ac1cbf430edb4' }
2024-01-29T15:20:03.7689938Z ❯ Fetching merge commits on branch main with cursor: undefined
2024-01-29T15:20:04.9141515Z ❯ Fetching merge commits on branch main with cursor: c9f15220c62aee979a39e446890f8426263b5198 24
2024-01-29T15:20:05.8293656Z ✔ Splitting 49 commits by path
2024-01-29T15:20:05.8300133Z ✔ Building candidate release pull request for path: .
2024-01-29T15:20:05.8301026Z ❯ type: node
2024-01-29T15:20:05.8301714Z ❯ targetBranch: main
2024-01-29T15:20:05.8379708Z ❯ commit could not be parsed: 40a05e16a02b2e44ace8642d5a460eb0f33b0052 chore(macros/GamesSidebar) init zh-CN translation (#10231)
2024-01-29T15:20:05.8443570Z ❯ commits: 53
2024-01-29T15:20:05.8445996Z ✔ Considering: 53 commits
2024-01-29T15:20:05.8449410Z ❯ component:
2024-01-29T15:20:05.8450239Z ❯ pull request title pattern: undefined
2024-01-29T15:20:05.8453698Z ❯ Fetching package.json from branch main
2024-01-29T15:20:12.4492627Z ✔ Looking for open release pull requests
2024-01-29T15:20:14.9080503Z ✔ found 1 open release pull requests.
2024-01-29T15:20:14.9081417Z ✔ Looking for snoozed release pull requests
2024-01-29T15:20:20.6371703Z ✔ found 0 snoozed release pull requests.
2024-01-29T15:20:20.6375155Z ❯ Fetching package-lock.json from branch main
2024-01-29T15:20:20.6378239Z ⚠ file package-lock.json did not exist
2024-01-29T15:20:20.6379095Z ❯ Fetching npm-shrinkwrap.json from branch main
2024-01-29T15:20:20.6380138Z ⚠ file npm-shrinkwrap.json did not exist
2024-01-29T15:20:20.6381034Z ❯ Fetching samples/package.json from branch main
2024-01-29T15:20:20.6381858Z ⚠ file samples/package.json did not exist
2024-01-29T15:20:20.6382761Z ❯ Fetching CHANGELOG.md from branch main
2024-01-29T15:20:20.7776396Z ❯ Fetching package.json from branch main
2024-01-29T15:20:20.7782614Z ✔ updating from 2.38.4 to 2.39.0
2024-01-29T15:20:20.7788502Z ❯ Fetching changelog.json from branch main
2024-01-29T15:20:20.7791657Z ⚠ file changelog.json did not exist
2024-01-29T15:20:20.7792651Z ❯ Fetching .release-please-manifest.json from branch main
2024-01-29T15:20:20.8676229Z ✔ Starting GitHub PR workflow...
2024-01-29T15:20:21.0449395Z ✔ Successfully found branch HEAD sha "c9f15220c62aee979a39e446890f8426263b5198".
2024-01-29T15:20:21.4113204Z ✔ Successfully created branch at https://api.github.com/repos/mdn/yari/git/refs/heads/release-please--branches--main--components--yari
2024-01-29T15:20:21.5851614Z ✔ Got the latest commit tree
2024-01-29T15:20:21.8028592Z ✔ Successfully created a tree with the desired changes with SHA 50a80e6caeefbb9bf98f5d711e09841b82d21db6
2024-01-29T15:20:22.0434537Z ✔ Successfully created commit. See commit at https://api.github.com/repos/mdn/yari/git/commits/882056b0af13cefea6d24ab7a4c0da4fdcbf55a0
2024-01-29T15:20:22.0437083Z ✔ Updating reference heads/release-please--branches--main--components--yari to 882056b0af13cefea6d24ab7a4c0da4fdcbf55a0
2024-01-29T15:20:22.3068942Z ✔ Successfully updated reference release-please--branches--main--components--yari to 882056b0af13cefea6d24ab7a4c0da4fdcbf55a0
2024-01-29T15:20:23.3364334Z ✔ Successfully opened pull request available at url: https://api.github.com/repos/mdn/yari/pulls/10407.
2024-01-29T15:20:24.3418878Z ✔ Successfully opened pull request: 10407.
2024-01-29T15:20:24.3420284Z ✔ Successfully added labels autorelease: pending to issue: 10407
2024-01-29T15:20:24.7850788Z Cleaning up orphan processes

```

### Additional information

_No response_

Contributor guide

Open the contributing guide

Research direction

Start by comparing .release-please-manifest.json with the .github/workflows/npm-publish.yml configuration and the linked v3 and v4 release PRs. Reproduce the v4 release flow and trace how release-please-action reads changelog-sections. Done means the configured "Miscellaneous" section appears in the generated release PR instead of the default sections.

Written by the indexing model from the issue text.

Assessment

Tech stack
typescript
Domain
ci-cd, devops, release
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
30/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.