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

memcache - upgrading typescript to 5.4.5 #1044

Merged
merged 8 commits into from
May 4, 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
3 changes: 3 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: Start Services
run: yarn test:services:start

- name: Verify Start Services
run: yarn test:services:start

- name: Install Dependencies
run: yarn

Expand Down
12 changes: 8 additions & 4 deletions docker-compose-arm64.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
keyv_postgres:
image: postgres:latest
Expand All @@ -21,17 +20,22 @@ services:
ports:
- 5433:5432/tcp
keyv_mysql:
image: mysql:latest
command: --default-authentication-plugin=mysql_native_password
image: mysql/mysql-server:latest
command: [ "mysqld",
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_unicode_ci",
"--bind-address=0.0.0.0",
"--default_authentication_plugin=mysql_native_password" ]
restart: always
ports:
- 3306:3306
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
MYSQL_DATABASE: keyv_test
MYSQL_USER: mysql
MYSQL_ROOT_HOST: '%'
keyv_mysql_1:
image: "mysql/mysql-server:8.0.17"
image: "mysql/mysql-server:latest"
command: [ "mysqld",
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_unicode_ci",
Expand Down
11 changes: 8 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,22 @@ services:
ports:
- 5433:5432/tcp
keyv_mysql:
image: mysql:latest
command: --default-authentication-plugin=mysql_native_password
image: mysql/mysql-server:latest
command: [ "mysqld",
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_unicode_ci",
"--bind-address=0.0.0.0",
"--default_authentication_plugin=mysql_native_password" ]
restart: always
ports:
- 3306:3306
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
MYSQL_DATABASE: keyv_test
MYSQL_USER: mysql
MYSQL_ROOT_HOST: '%'
keyv_mysql_1:
image: "mysql/mysql-server:8.0.17"
image: "mysql/mysql-server:latest"
command: [ "mysqld",
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_unicode_ci",
Expand Down
6 changes: 2 additions & 4 deletions packages/memcache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
},
"ava": {
"require": [
"requirable",
"ts-node/register"
],
"extensions": [
Expand Down Expand Up @@ -75,10 +74,9 @@
"@keyv/test-suite": "*",
"@types/memjs": "^1.3.3",
"keyv": "*",
"requirable": "^1.0.5",
"ts-node": "^10.9.2",
"tsd": "^0.30.7",
"typescript": "^5.3.3"
"tsd": "^0.31.0",
"typescript": "^5.4.5"
},
"tsd": {
"directory": "test"
Expand Down
Loading