From 96db86bf4f0c88293205eb8f7482cbedc1c075f3 Mon Sep 17 00:00:00 2001 From: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> Date: Sat, 16 Mar 2024 01:16:11 -0500 Subject: [PATCH 1/6] Create swift.yml --- .github/workflows/swift.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..2acc2fa --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,22 @@ +# This workflow will build a Swift project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift + +name: Swift + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v From 52972f8be46524ed22c510259b280e74229047c3 Mon Sep 17 00:00:00 2001 From: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> Date: Sun, 24 Mar 2024 07:21:56 -0500 Subject: [PATCH 2/6] Create new-file --- .github/new-file | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/new-file diff --git a/.github/new-file b/.github/new-file new file mode 100644 index 0000000..5482abc --- /dev/null +++ b/.github/new-file @@ -0,0 +1,2 @@ + + \ No newline at end of file From fa9506c6493c7d6d5df9abd9dbc1d0f122ddae08 Mon Sep 17 00:00:00 2001 From: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> Date: Wed, 27 Mar 2024 23:32:05 +0000 Subject: [PATCH 3/6] Add launch configuration for debugging in VS Code --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2ba986f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file From 9c3983f26958f0404f6346c1c77e5ef507904847 Mon Sep 17 00:00:00 2001 From: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:53:29 -0500 Subject: [PATCH 4/6] Create azure-webapps-node.yml Signed-off-by: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> --- .github/workflows/azure-webapps-node.yml | 78 ++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .github/workflows/azure-webapps-node.yml diff --git a/.github/workflows/azure-webapps-node.yml b/.github/workflows/azure-webapps-node.yml new file mode 100644 index 0000000..fdb0e0c --- /dev/null +++ b/.github/workflows/azure-webapps-node.yml @@ -0,0 +1,78 @@ +# This workflow will build and push a node.js application to an Azure Web App when a commit is pushed to your default branch. +# +# This workflow assumes you have already created the target Azure App Service web app. +# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-nodejs?tabs=linux&pivots=development-environment-cli +# +# To configure this workflow: +# +# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal. +# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials +# +# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret. +# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret +# +# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables below. +# +# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions +# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples + +on: + push: + branches: [ "develop" ] + workflow_dispatch: + +env: + AZURE_WEBAPP_NAME: your-app-name # set this to your application's name + AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + NODE_VERSION: '14.x' # set this to the node version to use + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ env.NODE_VERSION }} + cache: 'npm' + + - name: npm install, build, and test + run: | + npm install + npm run build --if-present + npm run test --if-present + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v3 + with: + name: node-app + path: . + + deploy: + permissions: + contents: none + runs-on: ubuntu-latest + needs: build + environment: + name: 'Development' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v3 + with: + name: node-app + + - name: 'Deploy to Azure WebApp' + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: ${{ env.AZURE_WEBAPP_NAME }} + publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} From 188fd8ef6b91f2303c1fe9255a54cd2e89de5048 Mon Sep 17 00:00:00 2001 From: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:53:29 -0500 Subject: [PATCH 5/6] Create azure-webapps-node.yml Signed-off-by: xxbrendenxx <155623716+xxbrendenxx@users.noreply.github.com> --- .github/workflows/azure-webapps-node.yml | 78 +++++++++++++++++++++++ Package.resolved | 10 +-- Sources/Web3Modal/Screens/.DS_Store | Bin 0 -> 6148 bytes 3 files changed, 83 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/azure-webapps-node.yml create mode 100644 Sources/Web3Modal/Screens/.DS_Store diff --git a/.github/workflows/azure-webapps-node.yml b/.github/workflows/azure-webapps-node.yml new file mode 100644 index 0000000..fdb0e0c --- /dev/null +++ b/.github/workflows/azure-webapps-node.yml @@ -0,0 +1,78 @@ +# This workflow will build and push a node.js application to an Azure Web App when a commit is pushed to your default branch. +# +# This workflow assumes you have already created the target Azure App Service web app. +# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-nodejs?tabs=linux&pivots=development-environment-cli +# +# To configure this workflow: +# +# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal. +# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials +# +# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret. +# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret +# +# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables below. +# +# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions +# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples + +on: + push: + branches: [ "develop" ] + workflow_dispatch: + +env: + AZURE_WEBAPP_NAME: your-app-name # set this to your application's name + AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + NODE_VERSION: '14.x' # set this to the node version to use + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ env.NODE_VERSION }} + cache: 'npm' + + - name: npm install, build, and test + run: | + npm install + npm run build --if-present + npm run test --if-present + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v3 + with: + name: node-app + path: . + + deploy: + permissions: + contents: none + runs-on: ubuntu-latest + needs: build + environment: + name: 'Development' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v3 + with: + name: node-app + + - name: 'Deploy to Azure WebApp' + id: deploy-to-webapp + uses: azure/webapps-deploy@v2 + with: + app-name: ${{ env.AZURE_WEBAPP_NAME }} + publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} + package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} diff --git a/Package.resolved b/Package.resolved index acacaeb..06d75eb 100644 --- a/Package.resolved +++ b/Package.resolved @@ -23,8 +23,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-snapshot-testing", "state" : { - "revision" : "dc46eeb3928a75390651fac6c1ef7f93ad59a73b", - "version" : "1.11.1" + "revision" : "f29e2014f6230cf7d5138fc899da51c7f513d467", + "version" : "1.10.0" } }, { @@ -39,10 +39,10 @@ { "identity" : "wallet-mobile-sdk", "kind" : "remoteSourceControl", - "location" : "https://github.com/coinbase/wallet-mobile-sdk.git", + "location" : "https://github.com/WalletConnect/wallet-mobile-sdk", "state" : { - "revision" : "4aa89e682f8d7ab1515d85d0797f0d25306bb56a", - "version" : "1.0.5" + "revision" : "b6dfb7d6b8447c7c5b238a10443a1ac28223f38f", + "version" : "1.0.0" } }, { diff --git a/Sources/Web3Modal/Screens/.DS_Store b/Sources/Web3Modal/Screens/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..2304a10dfd64f7ff74339d809123cc776540a473 GIT binary patch literal 6148 zcmeHK!A`ks)QevdP| zTO&a|crb>{G_!AZc4jyG+U#@zKy+rq1Ar<3IH-iV5;k85jgziP&Uy%io?`^JkU$@N zh}NRn@gEtWcUOTfD2Va-{Qe^BCBb|;4k8s`)N3$~!fDcIyop@Cu(e%uicZR>YXbU1)1#!7vX3=sP1%CocLipn&^aZIKq&tei#qcyrX9EaH?}XGvJh* z(x6&fESimWT{hdTWnC_g4;yuP)NC!6C1-bU|Kx1&5Ix4~+0ZKR3)E7vn86DgKkV?y zo5Ycd?=UKxAX0I7F%m6d6Q4EMe&+Bz?OSZPIZH{WKM7=>Jp}5rGM+zFc h6k{xv;u@+J^h+`jU5lwf^q}yMfTn>PX5dd5cn1RiPs#uQ literal 0 HcmV?d00001 From 2dae575c665c589accb429d3d20bc2be3a464c9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 May 2024 21:30:04 +0000 Subject: [PATCH 6/6] Bump rexml from 3.2.6 to 3.2.8 in the bundler group across 1 directory Bumps the bundler group with 1 update in the / directory: [rexml](https://github.com/ruby/rexml). Updates `rexml` from 3.2.6 to 3.2.8 - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](https://github.com/ruby/rexml/compare/v3.2.6...v3.2.8) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect dependency-group: bundler ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 290b57d..8924986 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -209,7 +209,8 @@ GEM trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.2.6) + rexml (3.2.8) + strscan (>= 3.0.9) rouge (2.0.7) ruby2_keywords (0.0.5) rubyzip (2.3.2) @@ -226,6 +227,7 @@ GEM CFPropertyList naturally slack-notifier (2.4.0) + strscan (3.1.0) terminal-notifier (2.0.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3)