Skip to content

Commit bdf01a1

Browse files
committed
Update dependecies
1 parent 29605a1 commit bdf01a1

File tree

8 files changed

+1362
-3944
lines changed

8 files changed

+1362
-3944
lines changed

.circleci/config.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,20 @@ jobs:
44
test:
55
working_directory: ~/repo
66
docker:
7-
- image: cimg/node:18.14.2
7+
- image: cimg/node:20.17.0
88
environment:
99
NODE_ENV: test
10+
POSTGRES_HOST: 127.0.0.1
11+
MSSQL_HOST: 127.0.0.1
12+
POSTGRES_USER: postgres
1013
POSTGRES_PASSWORD: postgres
14+
MSSQL_USER: sa
1115
MSSQL_PASSWORD: Passw0rd
12-
- image: mcr.microsoft.com/mssql/server:2019-CU11-ubuntu-20.04
16+
- image: mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-20.04
1317
environment:
1418
ACCEPT_EULA: Y
1519
SA_PASSWORD: Passw0rd
16-
- image: postgres:15.2-alpine
20+
- image: andrglo/postgres:15
1721
environment:
1822
POSTGRES_USER: postgres
1923
POSTGRES_PASSWORD: postgres
@@ -56,15 +60,14 @@ jobs:
5660
name: Tests
5761
command: |
5862
npm test
59-
npm run test:report:coverage
6063
- persist_to_workspace:
6164
root: ~/repo
6265
paths: .
6366

6467
publish:
6568
working_directory: ~/repo
6669
docker:
67-
- image: cimg/node:18.14.2
70+
- image: cimg/node:20.17.0
6871
steps:
6972
- attach_workspace:
7073
at: ~/repo

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
node_modules
22
.history
3-
.nyc_output
4-
yarn-error.log
53

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2023 Andre Gloria <andredagloria@gmail.com>
3+
Copyright (c) 2024 Andre Gloria <andredagloria@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# json-schema-entity [![NPM version][npm-image]][npm-url] [![Dependency Status][daviddm-image]][daviddm-url] [![CircleCI](https://circleci.com/gh/andrglo/json-schema-entity.svg?style=svg)](https://circleci.com/gh/andrglo/json-schema-entity) [![Coverage Status](https://coveralls.io/repos/github/andrglo/json-schema-table/badge.svg)](https://coveralls.io/github/andrglo/json-schema-table)
1+
# json-schema-entity [![NPM version][npm-image]][npm-url] [![Dependency Status][daviddm-image]][daviddm-url] [![CircleCI](https://circleci.com/gh/andrglo/json-schema-entity.svg?style=svg)](https://circleci.com/gh/andrglo/json-schema-entity)
22
> Manage a group of tables with a parent child relation in SQL that will be seen as a document, or entity, like a no SQL database
33
44
## Install

docker-compose.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '2'
2-
31
services:
42

53
dms:
@@ -20,7 +18,7 @@ services:
2018
restart: always
2119

2220
mssql:
23-
image: mcr.microsoft.com/mssql/server:2022-CU1-ubuntu-20.04
21+
image: mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-20.04
2422
container_name: json-schema-entity-mssql-1
2523
environment:
2624
- ACCEPT_EULA=Y

0 commit comments

Comments
 (0)