Skip to content

docs: record v11/1.2.2 as release candidate and correct the review-lock claim - #26

Merged
karlwaldman merged 2 commits into
mainfrom
docs/record-v11-release-state
Aug 1, 2026
Merged

docs: record v11/1.2.2 as release candidate and correct the review-lock claim#26
karlwaldman merged 2 commits into
mainfrom
docs/record-v11-release-state

Conversation

@karlwaldman

@karlwaldman karlwaldman commented Jul 31, 2026

Copy link
Copy Markdown
Member

Two corrections to the release-state docs, both verified 2026-07-31 against the live Google console and the Apps Script project. Relates to #20.

1. Version 11 supersedes version 10

The docs treated v10 / runtime 1.2.1 as the reviewed release. It isn't the latest.

Cut Runtime Contains #19 Contains #22
Version 9 — pinned in the Marketplace draft 2026-07-28 16:53 EDT
Version 10 2026-07-29 03:58 EDT 1.2.1
Version 11 — release candidate 2026-07-29 18:01 EDT 1.2.2

PR #22 (custom-function credential fix) merged at 2026-07-29T22:01:01Z, after v10 was cut, and changed Code.gs and Sidebar.html. Version 11 was cut at 18:01 EDT — the same instant (EDT is UTC−4), immediately after that merge. Confirmed independently by reading v11's Code.gs in Project History: ADDON_VERSION = '1.2.2'.

Why it matters: #22 fixes live custom functions returning #AUTH_REQUIRED after the sidebar successfully saves and tests an API key — the add-on's core path. The draft in review is pinned to v9, which predates both that fix and the OAuth verification prep in #19.

2. App Configuration is not locked during review

DEPLOYMENT_GUIDE.md and OAUTH_VERIFICATION.md both stated the App Configuration locks while Google reviews the draft, and that v10 should be entered "when Google makes App Configuration editable."

DOM inspection of the Cloud console disproves it:

  • every App Configuration input reports disabled: false, readOnly: false, no aria-disabled
  • the Version field is a free-text <input type="text">, currently holding 9
  • "Save Draft" is greyed only because there are no unsaved changes
  • only the Store Listing tab locks: "The draft is in review and can't be edited", with a "Cancel review" control

This mattered. The wrong assumption nearly drove a cancel-review-and-recut of a submission that only ever needed a version repin. The accurate rule is now recorded: Store Listing locks during review; App Configuration does not.

Guards

test/public-claims.test.js already pinned the docs to 1.2.1/v10 — that guard did its job and failed loudly on this change. It's updated to 1.2.2/v11 and extended so neither correction can silently regress:

assert.match(listing, /Latest immutable Apps Script version: `11`/);
assert.match(listing, /repin to `11`/);
assert.doesNotMatch(records, /Marketplace App Configuration to Apps Script version 10/);

Verification

npm run validate
  54 tests passed
  Deployment package verified: Code.gs, Sidebar.html, FetchDialog.html, appsscript.json
  Marketplace assets and 1 screenshot(s) verified
  Portfolio verified
  Secret scan passed

Scope

Docs and the claims test only — no runtime files touched, so v11 remains the valid immutable release. Nothing has been published; there is no live listing. The console repin (9 → 11) is a separate operator action tracked in #20.

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Documentation

    • Updated release guidance to identify runtime 1.2.2 and Apps Script version 11 as the Marketplace release candidate.
    • Clarified version repinning steps and review-time editing restrictions for Marketplace settings.
    • Refined OAuth verification, submission instructions, deployment commands, and scope-table formatting.
  • Tests

    • Updated release-state checks to validate runtime 1.2.2, version 11, and correct Marketplace repinning guidance.

…ck claim

Two corrections, both verified against the live Google console and the Apps
Script project on 2026-07-31.

1. Version 11 supersedes version 10.

PR #22 (custom-function credential fix) merged 2026-07-29 22:01 UTC -- after
version 10 was cut -- and changed Code.gs and Sidebar.html. Immutable version
11 was cut the same minute (18:01 EDT, the same instant in local time) and
carries runtime 1.2.2; its Code.gs reads ADDON_VERSION = '1.2.2'.

The Marketplace draft is still pinned to version 9, which was cut 2026-07-28
and predates BOTH #19 (OAuth verification prep) and #22. Version 11 is the
release candidate and the docs now say so in every forward-looking place.

2. App Configuration is NOT locked during review.

DEPLOYMENT_GUIDE.md and OAUTH_VERIFICATION.md both asserted the Marketplace
App Configuration locks while Google reviews the draft. DOM inspection of the
Cloud console disproves it: every input reports disabled:false, readOnly:false,
no aria-disabled, and the Version field is a free-text input currently holding
9. Only the Store Listing tab locks ("The draft is in review and can't be
edited").

That wrong assumption nearly drove an unnecessary cancel-and-recut of a
submission that only ever needed a version repin.

Nothing has been published; there is no live listing.

test/public-claims.test.js is updated to pin 1.2.2/v11 and now also guards
both corrections, so neither can silently regress.

Verified: npm run validate passes -- 54 tests, deployment package, marketplace
assets, portfolio, and secret scan all green.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@karlwaldman, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 44 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 6228c47c-71e5-4c16-9775-71a368631af1

📥 Commits

Reviewing files that changed from the base of the PR and between ca33cb8 and e207289.

📒 Files selected for processing (1)
  • OAUTH_VERIFICATION.md
📝 Walkthrough

Walkthrough

The release documentation and public-claim tests now identify runtime 1.2.2 and immutable Apps Script version 11 as the Marketplace release candidate, with explicit version repinning and review-state guidance.

Changes

Release candidate update

Layer / File(s) Summary
Release candidate records
DEPLOYMENT_GUIDE.md, MARKETPLACE_LISTING.md
Updated deployment and Marketplace records to version 11/runtime 1.2.2. Documented repinning App Configuration from draft version 9 and the editable review state.
OAuth review-state verification
OAUTH_VERIFICATION.md
Distinguished locked Store Listing state from editable App Configuration. Updated the remaining configuration step to select version 11.
Public-claim regression checks
test/public-claims.test.js
Updated release assertions and added a guard against claims that App Configuration is tied to version 10.

Estimated code review effort: 2 (Simple) | ~10 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly summarizes the two primary changes: recording v11/1.2.2 as the release candidate and correcting the review-lock claim.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/record-v11-release-state

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@OAUTH_VERIFICATION.md`:
- Around line 20-24: Update the status heading in OAUTH_VERIFICATION.md to July
31, 2026 so it matches the verification date recorded in the version 11
release-candidate block.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: f055a3e0-0d01-430a-a517-2a8a89ff162a

📥 Commits

Reviewing files that changed from the base of the PR and between 3747fef and ca33cb8.

📒 Files selected for processing (4)
  • DEPLOYMENT_GUIDE.md
  • MARKETPLACE_LISTING.md
  • OAUTH_VERIFICATION.md
  • test/public-claims.test.js

Comment thread OAUTH_VERIFICATION.md
…y 29 evidence

Addresses CodeRabbit review on #26: the heading claimed 'Status as of July 29'
while the Current Google state block recorded July 31 console verification.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@karlwaldman
karlwaldman merged commit 14852d7 into main Aug 1, 2026
2 checks passed
@karlwaldman
karlwaldman deleted the docs/record-v11-release-state branch August 1, 2026 00:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant