Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
b56bb46
target es2020
Jun 22, 2022
6c7a1c2
full change tree
Nov 29, 2022
9998379
updated syntax
Dec 6, 2022
9d20201
es2020 updates
Jan 25, 2023
37badab
fix test case on supertypelogger clone
Jan 25, 2023
65e5fb6
Merge branch 'master' into cap/feature/HL-00000-es2020-typescript-upg…
kamranHaven Jan 25, 2023
ee4e4d6
types update
Jan 25, 2023
30c1959
fix supertype cases
Jan 26, 2023
eca8b68
test solutions
Jan 27, 2023
2373a29
semotus changes
Jan 29, 2023
bff5ef0
add persistor changes
Jan 30, 2023
d816578
persistor changes
Jan 30, 2023
b5b1e1f
remove irrelavant logs
Jan 30, 2023
de0e176
merge with supertype changes
Jan 30, 2023
3661737
add updated supertype packages
Jan 30, 2023
2d17955
update packages
Jan 30, 2023
646635e
update supertype export
Jan 30, 2023
1e1652d
amorphic package updates
Jan 30, 2023
0e85173
circle ci images
Jan 30, 2023
7fba3a8
amorphic changes
Jan 31, 2023
12d87f0
push updates
Jan 31, 2023
6cb748f
package updates
Jan 31, 2023
93855c6
package udpate
Jan 31, 2023
084bcb1
supertype updates
Jan 31, 2023
39adb17
refactor supertype branch
Jan 31, 2023
8f0d1fc
update packages
Jan 31, 2023
c76dbec
pakage locks updates
Jan 31, 2023
cb48ab7
semtus refactor
Jan 31, 2023
18284ce
semotus updates
Jan 31, 2023
8621810
update semotus and persistor
Jan 31, 2023
40f4562
ts config changes
Jan 31, 2023
e693ce0
rebased wirk
Jan 31, 2023
b11b043
update supertype decorators
Feb 6, 2023
f1ad62a
bump packags
Feb 6, 2023
2bf9ec7
merge latest semotus persistor
Feb 6, 2023
1403585
bump version
Feb 6, 2023
3cfc7fb
pakage updates
Feb 13, 2023
99f70ed
merge latest feature
Feb 13, 2023
3480c33
version bump
Feb 13, 2023
9965a97
lerna updates
Feb 21, 2023
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: cimg/node:16.13.1
- image: cimg/node:18.13.0
environment:
port: 3001
dbUser: postgres
Expand Down
4 changes: 2 additions & 2 deletions components/amorphic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM node:16.13-alpine3.15
FROM node:18.13.0-alpine3.17

EXPOSE 3001
RUN apk update && apk add --no-cache bash

WORKDIR /app

COPY ./wait-for-it.sh .
#COPY ./ ./
COPY ./ ./
RUN npm install
RUN npm run build
2 changes: 2 additions & 0 deletions components/amorphic/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 13.0.0
* es2020 upgrade
## 12.0.0
* Config `enableIsRemoteObjectFeature` is now a required config and must be set to `true`, if you are using remote storage(`isRemoteObject=true`) in your app (including packages and modules). Without this flag being set to `true`, the `isRemoteObject` property is suppressed and cannot be used to send data to remote storage. You can still continue to send data to db however.
For more information and details of the behavior, please refer to the `Persistor's` `README` and `HISTORY` files.
Expand Down
2 changes: 1 addition & 1 deletion components/amorphic/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ services:
- .:/app
env_file:
- ./test.env
command: ./wait-for-it.sh database-test:5432 -- ./wait-for-it.sh mongo:27017 -- npm run test
command: ./wait-for-it.sh database-test:5432 -- ./wait-for-it.sh mongo:27017 -- npm run test

4 changes: 2 additions & 2 deletions components/amorphic/lib/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ function bindDecorators (objectTemplate) {
*/
this.Supertype = function Supertype() {
if (objectTemplate.Supertype) {
return objectTemplate.Supertype.call(this, objectTemplate);
return Reflect.construct( objectTemplate.Supertype, [objectTemplate], this.constructor );
}
else {
return SupertypeDefinition.Supertype.call(this, objectTemplate);
return Reflect.construct( SupertypeDefinition.Supertype, [objectTemplate], this.constructor );
}
};
this.Supertype.prototype = SupertypeDefinition.Supertype.prototype;
Expand Down
Loading