Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(protobuf-4.x-rc): release 1.76.0-rc1#11842

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
diegomarquezp wants to merge5 commits intoprotobuf-4.x-rc
base:protobuf-4.x-rc
Choose a base branch
Loading
fromrelease-please--branches--protobuf-4.x-rc

Conversation

@diegomarquezp
Copy link
Contributor

@diegomarquezpdiegomarquezp commentedDec 18, 2025
edited
Loading

🤖 I have created a releasebeepboop

1.76.0-rc1

1.76.0-rc1 (2025-12-17)

Features

Dependencies

  • update sdk-platform-java-config to 3.55.0-rc1 (#11836) (65af7bd)
  • update the Java code generator (gapic-generator-java) to 2.65.0-rc1 (5bd22f9)

@diegomarquezp
Copy link
ContributorAuthor

diegomarquezp commentedDec 18, 2025
edited
Loading

Created using the following script that confirms that every snapshot version was a minor bump of the previously released version:

defmain()->None:versions=defaultdict(dict)withopen('versions.txt')asfile:skip=0forlineinfile:ifskip<3:skip+=1continuemodule,released_version,current_version=line.rstrip().split(':')released_major=int(released_version.split('.')[0])current_major=int(current_version.split('.')[0])released_minor=int(released_version.split('.')[1])current_minor=int(current_version.split('.')[1])current_patch=current_version.split('.')[2]assertcurrent_minor==released_minor+1,line.rstrip()assertcurrent_major==released_major,line.rstrip()assertcurrent_patch=='0-SNAPSHOT'orcurrent_patch=='0-beta-SNAPSHOT',line.rstrip()

After that I modified all poms and the 4 READMES fromthis query to remove snapshot from the versions where there is ax-version-update: string in the line, using the following script:

defmain()->None:forfiletypein ['poms']:withopen('poms')asfile:forentryin [line.rstrip()forlineinfile]:process_file(entry)defprocess_file(file):modified=Falserf=open(file)wf=open(file+'.new','w')forlineinrf:if'x-version-update:'inline:line=line.replace('-SNAPSHOT','-rc1')modified=Truewf.write(line)rf.close()wf.close()ifmodified:subprocess.run(['rm',file])subprocess.run(['mv',file+'.new',file])else:subprocess.run(['rm',file+'.new'])

Lastly, looking at#11838 I modified CHANGELOG.md, versions.txt and .release-please-manifest.json

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

2 participants

@diegomarquezp@cloud-java-bot

[8]ページ先頭

©2009-2025 Movatter.jp