Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(general): upgrade dependencies #921

Merged
merged 10 commits into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/actions/init/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
- name: Install and set up firebase-tools
shell: bash
run: |
npm -g install firebase-tools@13.0.2 && \
npm -g install firebase-tools@13.20.2 && \
firebase setup:emulators:firestore && \
firebase setup:emulators:storage && \
firebase setup:emulators:ui
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prettify-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_version: "3.1.0"
prettier_plugins: "prettier-plugin-organize-imports@3.2.4 prettier-plugin-tailwindcss@0.5.7"
prettier_version: "3.3.3"
prettier_plugins: "prettier-plugin-organize-imports@4.1.0 prettier-plugin-tailwindcss@0.6.8"
prettier_options: "--write ./"
github_token: ${{ secrets.WORKFLOW_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/website-update-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Install & Setup Firebase Emulator Suite
run: |
npm -g install firebase-tools@13.0.2 && \
npm -g install firebase-tools@13.20.2 && \
firebase setup:emulators:firestore

- name: Install Dependencies
Expand Down
6 changes: 3 additions & 3 deletions admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
"@mui/x-date-pickers": "^7.10.0",
"@socialincome/shared": "^1.0.0",
"algoliasearch": "^4.24.0",
"firebase": "^10.12.3",
"firebase": "^10.14.0",
"firecms": "2.2.1",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router": "^6.24.1",
"react-router-dom": "^6.24.1",
"react-scripts": "^5.0.1"
Expand Down
2 changes: 1 addition & 1 deletion admin/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const algoliaIndex = (indexName: string) => {
? algoliasearch(
import.meta.env.VITE_ADMIN_ALGOLIA_APPLICATION_ID,
import.meta.env.VITE_ADMIN_ALGOLIA_SEARCH_KEY,
).initIndex(indexName)
).initIndex(indexName)
: undefined;
};

Expand Down
2 changes: 1 addition & 1 deletion admin/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const firebaseConfig: FirebaseOptions | undefined =
apiKey: import.meta.env.VITE_ADMIN_FB_API_KEY,
authDomain: import.meta.env.VITE_ADMIN_FB_AUTH_DOMAIN,
projectId: import.meta.env.VITE_ADMIN_FB_PROJECT_ID,
}
}
: undefined; // In staging/production, config is loaded from the environment variables set by Firebase Hosting

export async function onFirebaseInit() {
Expand Down
28 changes: 13 additions & 15 deletions functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,37 @@
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.45.1",
"@playwright/test": "^1.47.2",
"@types/imap-simple": "^4.2.9",
"@types/jest": "^29.5.12",
"@types/jest": "^29.5.13",
"@types/luxon": "^3.4.2",
"@types/pdfkit": "^0.13.4",
"@types/pdfkit": "^0.13.5",
"firebase-functions-test": "^3.3.0",
"jest": "^29.7.0",
"request": "^2.88.2",
"ts-jest": "^29.2.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3"
"typescript": "^5.6.2"
},
"dependencies": {
"@sendgrid/mail": "^8.1.3",
"@types/ssh2-sftp-client": "^9.0.3",
"@types/ssh2-sftp-client": "^9.0.4",
"@xmldom/xmldom": "^0.8.10",
"axios": "^1.7.2",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"firebase-admin": "^12.2.0",
"firebase-functions": "^5.0.1",
"firebase-admin": "^12.6.0",
"firebase-functions": "5.0.1",
"handlebars": "^4.7.8",
"handlebars-i18next": "^1.0.3",
"i18next-resources-to-backend": "^1.2.1",
"imap-simple": "^5.1.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"luxon": "^3.5.0",
"mjml": "^4.15.3",
"nodemailer": "^6.9.14",
"pdfkit": "^0.15.0",
"ssh2-sftp-client": "^10.0.3",
"stripe": "^14.23.0",
"ssh2-sftp-client": "^11.0.0",
"stripe": "^17.1.0",
"tmp-promise": "^3.0.3",
"twilio": "^5.2.2",
"twilio": "^5.3.3",
"xpath": "^0.0.34"
}
}
Loading
Loading