Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/typeorm/typeorm

ORM for TypeScript and JavaScript. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, SAP Hana, WebSQL databases. Works in NodeJS, Browser, Ionic, Cordova and Electron platforms.
https://github.com/typeorm/typeorm

testing mssql on previous version;

770d0202e4c9467e96972c2c18909986aee572ef authored almost 4 years ago
feat: option to disable foreign keys creation (#7277)

* Add relation option "createForeignKeyConstraints"

* feat: add createForeignKeyConstraints r...

cb17b959e5ab6170df8b3fcac115521516b77848 authored almost 4 years ago
refactor: Updated comments for grammar and punctuation in OneToMany.ts (#7129)

Co-authored-by: Rohan Talip <[email protected]>
Co-authored-by: AlexMesser <[email protected]>

b466edd756f2c38d4fc629a0bb02ebd1290fdd61 authored almost 4 years ago
refactor: Updated comments for grammar and punctuation in ManyToOne.ts (#7128)

Co-authored-by: Rohan Talip <[email protected]>

889bdbca8115ec69f7d64628c029acf22e12ec92 authored almost 4 years ago
fix: datetime2 rounding in mssql (#7264)

This upgrades the `mssql` driver to version 7 to resolve #3202. This
issue was created in the b...

4711a7189b4a852a467fa83f26f9827b3249aba4 authored almost 4 years ago
docs: fix revert example code for migration api (#7293)

Incorrect table is referenced in an example that shows how to use migrations API.
This change r...

c92ce763fd6a87960f01429255113eff39a7f157 authored almost 4 years ago
fix: append condition to STI child entity join (#7339)

Co-authored-by: Yohann POLI <[email protected]>

68bb82e5de639ef746f8ddc699e3ee2ca051bdbe authored almost 4 years ago
fix: save does not return id, save does not return generated (#7336)

* fix save does not return id

* allow subject.generatedMap to be null/undefined

* stop usi...

01a6aee75edfc3d74ce0f6626258360458960363 authored almost 4 years ago
feat: useUTC connection option for oracle and postgres (#7295)

If useUTC is set to true, then for Oracle set environment variable 'ORA_SDTZ' and for postgres s...

e06a4423c83ae78a771cc239ee1135e70c98c899 authored almost 4 years ago
fix: resolve issue with find with relations returns soft-deleted entities (#7296)

This new feature changes the behavior of typeorm to allow avoiding entities that have soft delet...

d7cb338145f2c3e009c4934a2aa882df74bc7dc8 authored almost 4 years ago
fix: incorrect postgres uuid type in PrimaryGeneratedColumnType (#7298)

* better postgres uuid column handling

passing `{type: "uuid"}` to `PrimaryGeneratedColumn` ...

2758502c83a9e8f8c6b18e19530366f45073755f authored almost 4 years ago
chore: fixed Alias in SQL expression (#7299)

I think there was a missing `AS`, isn't it?

be9d9770f093bae17c720d10bfa7de51f02a6904 authored about 4 years ago
docs: fix typo in many-to-many-relations.md (#7297)

c1480994c96976effb9de2da381320a46c666fcf authored about 4 years ago
refactor: fix DateUtils method type (#7316)

fix mixedDateToDateString method type to not use any type

2c05a9940c4ac7fcfb402e5db12cb87a169bc42d authored about 4 years ago
docs: correct typo (#7317)

05259795f0ff4a0241647ccfb621f2a5f55b3d34 authored about 4 years ago
docs: minor documentation change (#7325)

As mentioned in the issue, I'm renaming `@TransactionEntityManager` to `@TransactionManager` at ...

e4bc46ef2520f2dbd77ad51a73cacd3f431299be authored about 4 years ago
doc: update relations files with orphaned rows option (#7327)

db7d85d4ffc4595fa70445af683350cf87226c82 authored about 4 years ago
fix: cache from ENV - add ioredis support (#7332)

5e2117cdffeb31691dbe7fbd8f56e0f9256d1d47 authored about 4 years ago
test: stop test suite from only running one spec file (#7285)

Remove `describe.only` from spec file as this was stopping all other
spec files from running.
...

af2c5c4dbe360d2cdcdb3398f5000a2ef0999d3d authored about 4 years ago
fix: avoid regex lookbehind for compatibility (#7270)

Lookbehind isn't supported in Safari/JavaScriptCore environments.

Closes: #7026

063d27fe338abf2929e45a8a8d4a0e4f292111c4 authored about 4 years ago
version bump

aea27866fdadfef9655362bb1ded749c054b97e3 authored about 4 years ago
docs: fix javascript usage examples (#7031)

4ed1c4bf8e4a3c72f73b6dbb1f987556a7250a41 authored about 4 years ago
fix: resolve migration for UpdateDateColumn without ON UPDATE clause (#7057)

Closes: #6995

ddd8cbcdf6d67b6b1425de581c3da5d264a01167 authored about 4 years ago
fix: Error when sorting by an embedded entity while using join and skip/take (#7082)

Closes: #7079

d27dd2af2ca320e74a17b3ab273cd3bf55d01923 authored about 4 years ago
fix: resolves Postgres sequence identifier length error (#7115)

Changes the sequence name generator to handle cases where PostgreSQL auto-generated sequence nam...

568ef3546e6da6e73f68437fff418901d6232c51 authored about 4 years ago
feat: closure table custom naming (#7120)

* add metadata to @Tree

* add simple test

* ref column naming from string to callback(colu...

bcd998b4f384893679e60914d3c52b3d68e7792e authored about 4 years ago
feat: relations: Orphaned row action (#7105)

Co-authored-by: adenhertog <[email protected]>

Co-authored-by: adenhertog <andrew.de...

efc283769ed972d022980e681e294d695087a807 authored about 4 years ago
docs: fix invalid code block in "find many options" (#7268)

a3faf49987346607a620525c0da77b1ffebf8024 authored about 4 years ago
docs: Embodying the example (#7116)

I thought it would be more appropriate to give an example of a `Geometry` type.

a7acb6b021b06541f150cb635fb96f5df67991c2 authored about 4 years ago
docs: document withDeleted option (#7132)

a49db9612b86cd95727f1ba9ffa2c6d4818bcbb5 authored about 4 years ago
fix: return 'null' (instead of 'undefined') on lazy relations that have no results (#7146) (#7147)

Fix an issue where a lazy relation returns a Promise that resolves to 'undefined'. As implied by...

9b278c99e52bbcdf0d36ece29168785ee8641687 authored about 4 years ago
docs: update cascade options (#7140)

cc044a90c2bd37f0b0dd1198812ac800f693c563 authored about 4 years ago
docs: add .ts to supported ormconfig formats (#7139)

28368917a3ab696c3497024641592aa8f78a1405 authored about 4 years ago
fix: improve stack traces when using persist executor (#7218)

0dfe5b83f584c3960cdef28e53d2f0ded3f829ce authored about 4 years ago
refactor: remove Oracle multirow insert workaround (since #6927) (#7083)

d44f2bc769a37daabbbd171362f0a400f1e1eec0 authored about 4 years ago
feat: add NOWAIT and SKIP LOCKED lock support for MySQL (#7236)

* feat: add mysql support for locks

Add pessimistic_write_or_fail and pessimistic_partial_wri...

9407507a742a3fe0ea2a836417d6851cad72e74c authored about 4 years ago
docs: update OneToMany grammar (#7252)

ea3bc3527654bca247a0bc6e014ee1bdbca683a3 authored about 4 years ago
feat: JavaScript file migrations output (#7253)

ce9cb8732cb70458f29c0976d980d34b0f4fa3d7 authored about 4 years ago
docs: update Repository.ts (#7254)

Fixed typos in method documentations:
Intended use of "present" in its meaning as an adjective ...

37698fea1385f51424349e15e679978049e25336 authored about 4 years ago
chore: update dependency cli-highlight to v2.1.10 (#7265)

Closes: #7259

a9e039eae4a7c91afd01cd430c84244fc38be46e authored about 4 years ago
test: update the description for some tests under test/github-issues to include #issueNum (#7230)

Co-authored-by: Rohan Talip <[email protected]>

7cdf3767812b36f514e056c5ba98d0e3a891be81 authored about 4 years ago
test: remove unnecessary await (#7231)

Co-authored-by: Rohan Talip <[email protected]>

d91f74979ed4a389928e106a6c3b53beaa848432 authored about 4 years ago
test: update the description for some tests to include "github issues > #issueNum" (#7232)

Co-authored-by: Rohan Talip <[email protected]>

16954c3213bb611c497dc136a9164760049e9056 authored about 4 years ago
test: add describe to a couple of tests and refactor them (#7233)

Co-authored-by: Rohan Talip <[email protected]>

7e3a36bf07ccfd0f422a60150d2915c73163e524 authored about 4 years ago
test: rename test GitHub issue 1465 and add "github issues > #issueNum" to the test description (#7234)

* test: update the description for a test to include "github issues > #issueNum"

* test: rena...

c119cb42a9af612426fcce2f6f545e433bd0d475 authored about 4 years ago
fix: get length attribute of postgres array columns (#7239)

Change loadTables in PostgresQueryRunner to use pg_catalog to find length attribute of array col...

eb82f786cbe3244351d5860289dace3169cf473b authored about 4 years ago
docs: remove SAP registry (#7224)

This registry is deprecated now: <https://blogs.sap.com/2017/05/16/sap-npm-registry-launched-mak...

f47b8773bf89851d12a608fa6d65df44aee856a2 authored about 4 years ago
fix: avoid early release of PostgresQueryRunner (#7109) (#7185)

* fix: avoid early release of PostgresQueryRunner (#7109)

If the QueryRunner is not connected...

9abe0076f65afba9034fb48ba3ebd43be7e7557a authored about 4 years ago
chore(deps): bump ini from 1.3.5 to 1.3.7 (#7176)

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7.
- [Release notes](https://githu...

66df9f1e5332fc47d8a47a8f50d74ea44bd339f8 authored about 4 years ago
fix: order should allow only model fields, not methods (#7188)

Closes: #7178

Co-authored-by: Tomasz Rychlewicz <[email protected]>

01941937df11abd63fad9da082e1b5cf6a1300ce authored about 4 years ago
fix: add missing "comment" field to QB clone method (#7205)

Closes: #7203

Co-authored-by: Astrit Shehu <[email protected]>

f0197710ab986b474ce0b6c260d57e8234a5bb4f authored about 4 years ago
fix: support MongoDB DNS seed list connection (#7136)

As described in [MongoDB Docs](https://docs.mongodb.com/manual/reference/connection-string/#dns-...

f730bb9fc1908a65edacc07e5e364648efb48768 authored about 4 years ago
docs: fix grammatical error (#7133)

f27622daf9784d06496975bbbcacdb0938fd2c82 authored about 4 years ago
docs: added typeorm-uml to the extensions list. (#7066)

c4a36da62593469436b074873eba186f0f8b990d authored about 4 years ago
fix(data-api): Fixed how data api driver uses and reuses a client (#6869)

Now each queryRunner will have it's own client which will allow it to handle transactions correc...

6ce65fbf6be5e696c3ae907d3f8e63b1e7332a1e authored about 4 years ago
docs: add missing connection options for mongodb (#7046)

Closes: #7037

296eb390627c684998b28467a494ea686139cea9 authored about 4 years ago
fix: handle overlapping property / database names in querybuilder (#7042)

we should always prioritize replacement of any property path first,
then property names, then d...

b518fa15f9b2183545b3c0daa2447ecd38ecc859 authored about 4 years ago
fix: Fix CLI query command TypeError (#7043)

Switch to using named args property now that it is explicitly defined in the command.

b35397ea07982a21d3b263cb0b7c04d5aa057d1a authored about 4 years ago
fix: use default import of yargs for --help (#6986)

6ef8ffe387980c51f9f20e9cc03d6199c7068ac5 authored about 4 years ago
refactor: Use ES6 style in postgres driver when making a query (#6991)

aa99150ed68bc001f91e86da8af996a5f1d35b5b authored about 4 years ago
version bump

c683c8eeecea9b849a960a8bd5cd7cbb9a4eb4b1 authored over 4 years ago
feat: transactional events in subscriber interface + "transaction" option in FindOptions (#6996)

* added new decorators

* added hooks to etnity subscriber interface

* added test code in o...

0e4b2397a6e62f5f2c35e5890bba53abe40a49ac authored over 4 years ago
fix: findRoots should get the defined primary key column (#6982)

* test: added failing test for github issue #6948

* fix: findRoots should get the actual prim...

f2ba9012fe4e851bc667dfdfedc3fd4af665d52b authored over 4 years ago
feat: Exit with code 1 on empty migration:generate (#6978)

This makes the `migration:generate` cli command exit with code 1 if no changes were found betwee...

8244ea1371d5cf37e3f80e1b141f5945af38cb5e authored over 4 years ago
fix: support multiple row insert on oracle (#6927)

change generated insert query to allow inserting an array of objects to oracle

fixes: #2434

a5eb946117a18d94c0157188b6a39542c8d50756 authored over 4 years ago
fix: allow falsey discriminator values (#6973)

allow discriminator values in Single Table Inheritance
like 0, "", or `null`

fixes #3891

f3ba2420396341ad3b808ea8540ea6a2272ff916 authored over 4 years ago
fix: check if the connection is closed before executing a query. This prevents SQLITE_MISUSE errors (https://sqlite.org/rescode.html#misuse) originating from sqlite itself (#6975)

5f6bbecd6166f1e80ed87d7e6c2c181fe463bdef authored over 4 years ago
refactor: export LoggerOptions interface (#6976)

fa86413a7f82f19fc4857665e2e8ad62e15dad43 authored over 4 years ago
chore: include support message on templates & create PR template

877e343f73326a2c6b0e0c35d7ee296e7c3e8992 authored over 4 years ago
docs: photo.views/isPublished are required fields (#6970)

* photo.views is required field

In the many-to-many photos/albums example - photo.views is re...

3902fd1c9bbc75ee441347497fb448479d54480f authored over 4 years ago
docs: Remove unused variable (#6971)

343042dc6736c93f41eb0efe9f185e4a533b4a0b authored over 4 years ago
chore: add issue type templates & link to support (#6972)

e71ff10b9e466455fc807d718cfd6ca6001bcff0 authored over 4 years ago
fix: use pg ^8 in `init` command

without postgres v8+ nodejs 14+ will hang

6ed990666604ca9b8c0029d4fe972a039ef28570 authored over 4 years ago
docs: fix typo in entities.md : hustle --> hassle (#6963)

82df614c6eaf821672e978fd27e5d41a4419b0eb authored over 4 years ago
docs: update usage-with-javascript.md (#6955)

fa23f36313d80a76539d7fa9d065a96dc5086fb4 authored over 4 years ago
docs: Remove unused variable (#6957)

* docs: remove unused variable in many-to-many-relations.md

* docs: remove unused variable in...

43e7f394932a510e50f92911c22f9e61c4e192ab authored over 4 years ago
docs: update usage-with-javascript.md (#6952)

d624ca3b4efa7bbffe4802d04c5950aa5ac1e488 authored over 4 years ago
fix: support combination of many-to-one/cacade/composte PK (#6417)

handle setting values deeply in entities with relations in ColumnMetadata,
also check for a vir...

9a0497b533b2f6896b8e7d189b36dd3892e58007 authored over 4 years ago
fix: TreeRepository based entities primary column supports custom name. (#6942)

Previously "id" was hardcoded, thus errors when an entity
has a custom primary column name othe...

7ec1b75f12832e4d99e1ed0cef40755f2b6d650a authored over 4 years ago
fix: ILike operator generally available for any driver (#6945)

37f0d8f7938ee5dbcf899a7f2855ea6dc6dc604e authored over 4 years ago
fix: Only check for discriminator conflicts on STI entities (#2985)

If an entity has the same discriminator value as one using `TableInheritance` this should be all...

06903d1c914e8082620dbf16551caa302862d328 authored over 4 years ago
Allow Error to be a type of logQueryError param (#6934)

I haven't inspected the code to know if string or any other type does get returned, but this can...

c0d691d5d5d8043af4882edc25c345389c09b94b authored over 4 years ago
feat: Support column comments in Postgres and CockroachDB (#6902)

adds support for column comments to both the Postgres and
CockroachDB driver - for migrations &...

bc623a42a868eae7c988779abc4cdc0bbf775def authored over 4 years ago
docs: fix decorators in example class using adjacency list (#6932)

Closes: #6527

f9caf5d90bb59d6490423eeb456588e2df9bdd15 authored over 4 years ago
fix: support changing comments in MySQL columns (#6903)

in the mysql driver, column comments were only half supported -
adding them to new columns & ne...

c5143aab08a04e96aebb55996ed7683d48542bbd authored over 4 years ago
test: fix test 6900 in CI (#6928)

test 6900 only ran correctly in local testing & didn't correctly
handle the different hostnames...

0956ffcdacd88c29e36d7c09c4600859cfa2513f authored over 4 years ago
style: double quotes in `DriverUtils`

dee17589cfe26a86c9a68d28d08c5dfe82ad8363 authored over 4 years ago
fix: handle Undefined values in driver URL options (#6925)

the `buildDriverOptions` parses the URL & will have undefined values
which it ends up overwriti...

6fa2df5ade71a3fee550e3c8fb7bcd7cd02080a8 authored over 4 years ago
fix: correct reading of custom ormconfig.env files (#6922)

update the ConnectionOptionsReader so that ormconfig.env files
are loaded as expected from the ...

a09fb7fb919e7ebb1c174ba4b0abe09b245e0442 authored over 4 years ago
test: make test for query comment less restrictive (#6921)

the query comment test was causing problems in a few other PRs because it expects a very specifi...

60a5dd5c2924c97874a9381204411189f474811f authored over 4 years ago
docs: correct grammar error in cache description (#6913)

Correct the description for setting a custom table name for the typeorm cache.

d7c15e1829b4ab0ca070fb871415270b828f88d6 authored over 4 years ago
fix: Handle undefined querysets in QueryCommand (#6910)

fixes #6612

6f285dce1ac315707fe01a892c1c74521a98aae2 authored over 4 years ago
feat: Add SelectQueryBuilder.getOneOrFail() (#6885)

This adds a `getOneOrFail` which which is to `getOne` as
`findOneOrFail` is to `findOne` - it n...

920e7812cd9d405df921f9ae9ce52ba0a9743bea authored over 4 years ago
fix: support empty `IN` clause across all dialects (#6887)

we were supporting an empty `IN` clause for MySQL and Oracle
and this updates the handling to b...

96350805fb9f02b8fb2c90b5528a15d5cdb9faeb authored over 4 years ago
perf: Improve MySQL LoadTables Performance (#6886)

fixes #6800

0f0e0b660c83409bb59f806b9f6e099ca8dbc61c authored over 4 years ago
fix: use correct type for MongoQueryRunner.databaseConnection (#6906)

fixes #6453

da70b405498b142ecc29f7ff01e7a37f88227360 authored over 4 years ago
feat: support query comments in the query builder (#6892)

add a `comment` method to the QueryBuilder so we can include an
arbitrary comment in our querie...

84c18a9cab2e87b28eb046b5688bfca4d3ce9da6 authored over 4 years ago
fix: explicitly define `query` command's param (#6899)

the CLI command `query` had an implicit `query` positional
parameter and in earlier versions of...

4475d8067592b91b857f2b456dc31c5850a21081 authored over 4 years ago
test: remove logging from migration functional test

1ed7f50b88eba728db20ae14a6b3649c82195f30 authored over 4 years ago
fix: sync the typeorm-model-shim (#6891)

this updates the shim to include all current decorators
exported from index.ts - adding @Unique...

c72e48b9c7b893f8a2483ba1ddaa7ded039fe349 authored over 4 years ago