File tree Expand file tree Collapse file tree 7 files changed +10
-5
lines changed
Expand file tree Collapse file tree 7 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 6161 with :
6262 node-version : ${{ env.NODE_VERSION }}
6363
64+ # Do this before npm configure because it writes the package.json version
6465 - name : Write version to files
6566 run : |
6667 ./deployment/write-versions.sh ${{ steps.next-version.outputs.result }}
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ All notable changes to the Branch Web SDK will be documented here.
33The Branch Web SDK adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44
55## [ VERSION] - unreleased
6+ ## [ 2.85.2] - 2024-11-11
7+ - Updates release process
68## [ 2.85.1] - 2024-11-04
79- Updates qr image download to avoid errors
810## [ 2.85.0] - 2024-04-10
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ all: dist/build.min.js dist/build.js test/branch-deps.js test/integration-test.h
3737clean :
3838 rm -f dist/** docs/web/3_branch_web.md test/branch-deps.js dist/build.min.js.gz test/integration-test.html
3939release : clean all dist/build.min.js.gz
40- @echo " released"
4140
4241test/branch-deps.js : $(SOURCES )
4342 npx closure-make-deps \
Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ make release
1414aws s3 cp example.html s3://branch-builds/example.html
1515aws s3 cp example.html s3://branch-cdn/example.html
1616
17+ aws s3 cp --content-type=" text/javascript" --content-encoding=" gzip" dist/build.js s3://branch-cdn/branch-latest.js --cache-control " max-age=300"
1718aws s3 cp --content-type=" text/javascript" --content-encoding=" gzip" dist/build.min.js.gz s3://branch-cdn/branch-$VERSION .min.js --cache-control " max-age=300"
1819aws s3 cp --content-type=" text/javascript" --content-encoding=" gzip" dist/build.min.js.gz s3://branch-cdn/branch-latest.min.js --cache-control " max-age=300"
1920
2021echo -en " Invalidating cloudfront distribution...\n"
2122aws configure set preview.cloudfront true
2223aws cloudfront create-invalidation --distribution-id E10P37NG0GMER --paths /branch-latest.min.js
2324
24-
2525echo " Post-release sanity checks."
2626read -p " Can you visit https://cdn.branch.io/branch-$VERSION .min.js ?" -n 1 -r
2727echo
Original file line number Diff line number Diff line change @@ -250,7 +250,8 @@ <h4>QR Code</h4>
250250 "background_color" : "#FFFFFF" ,
251251 "margin" : 5 ,
252252 "width" : 1000 ,
253- "image_format" : "png"
253+ "image_format" : "png" ,
254+ "center_logo_url" : "https://branch-assets.s3.us-west-1.amazonaws.com/branch-badge-dark.svg"
254255 } ;
255256 var qrCodeParams = {
256257 tags : [ 'tag1' , 'tag2' ] ,
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ var DEFAULT_API_ENDPOINT = 'https://api2.branch.io';
88config . app_service_endpoint = 'https://app.link' ;
99config . link_service_endpoint = 'https://bnc.lt' ;
1010config . api_endpoint = DEFAULT_API_ENDPOINT ;
11- config . version = '2.85.1' ; // will get overwritten by gha on actual deploy
11+ // will get overwritten by gha on actual deploy
12+ config . version = '2.85.2' ;
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ goog.provide('config');
66config . app_service_endpoint = 'https://app.link' ;
77config . link_service_endpoint = 'https://bnc.lt' ;
88config . api_endpoint = 'https://api.branch.io' ;
9- config . version = '2.85.1' ; // will get overwritten by gha on actual deploy
9+ // will get overwritten by gha on actual deploy
10+ config . version = '2.85.2' ;
You can’t perform that action at this time.
0 commit comments