Skip to content

Releases: vitaly-t/connection-string

4.1.0

12 Aug 19:17
Compare
Choose a tag to compare

4.0.1

09 Aug 23:09
Compare
Choose a tag to compare
  • Code + tests refactoring.

4.0.0

09 Aug 10:25
75bfffc
Compare
Choose a tag to compare
  • Implemented #38, as explained below:

Protocol now allows strictly what the spec says is valid:

protocol = ALPHA * ( ALPHA / DIGIT / "+" / "-" / "." )

And the protocol is no longer encoded or decoded.

MongoDB protocol in the form of mongodb+srv now can be processed automatically.

3.4.2

24 Jul 12:31
Compare
Choose a tag to compare
  • Docs + DEV dependencies updated.

3.4.1

16 Jun 23:52
Compare
Choose a tag to compare

Repackaged distribution, removing an obsolete file from it.

3.4.0

12 Jun 10:24
Compare
Choose a tag to compare
  • Implemented #33, to allow constructor with null / undefined for connection string, to be treated the same as an empty string.

The following initializations will produce the same result:

new ConnectionString();
new ConnectionString(null);
new ConnectionString('');
  • DEV dependencies updated
  • Minor code refactoring

3.3.1

13 May 22:41
Compare
Choose a tag to compare
  • Updated #31 implementation, to allow for TTY status during object inspection, so that no colors are injected when the output is redirected into a file, for example.

3.3.0

13 May 18:26
Compare
Choose a tag to compare
  • Implemented #31, to include Virtual Properties into the object inspection.
  • Updated DEV dependencies, including TypeScript to v3.9.2

3.2.2

03 May 19:25
Compare
Choose a tag to compare
  • Implemented #30, to disallow tilde in the URL
  • Documentation updated.

3.2.1

03 May 10:42
Compare
Choose a tag to compare
  • Minor code refactoring
  • Documentation updates
  • Dependencies updated
  • Testing under Node v14 added