Releases: vitaly-t/connection-string
Releases · vitaly-t/connection-string
4.0.1
- Code + tests refactoring.
4.0.0
- 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
- Docs + DEV dependencies updated.
3.4.1
Repackaged distribution, removing an obsolete file from it.
3.4.0
- 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
- 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
- Implemented #31, to include Virtual Properties into the object inspection.
- Updated DEV dependencies, including TypeScript to v3.9.2
3.2.2
- Implemented #30, to disallow tilde in the URL
- Documentation updated.
3.2.1
- Minor code refactoring
- Documentation updates
- Dependencies updated
- Testing under Node v14 added