Properly react to connection losses by reporting the database connection as
closed.
3.0.7
Allow cleartext passwords when secure connection is used. (#283 by simolus3)
3.0.6
Allow passing a SecurityContext when opening postgres connections.
3.0.5
Support for type char/character/bpchar.
3.0.4
Fix: SSL connection problem handler.
3.0.3
Using const for ConnectionSettings, SessionSettings and PoolSettings classes. (#267 by Gerrel)
Parsing of Sql.indexed and Sql.named happens when the Connection starts
to interpret it. Errors with unknown type names are thrown in this later step.
3.0.2
Fix: Dispose disconnected pool Connections. (#260 by nehzata).
Deprecated ParseMessage constructor's types argument, use typeOids instead.
(As most users don't access this directly, it will be removed in 3.1.0).
3.0.1
Fix: do not allow execute after closing the Connection.
Session.runTx() supports rolling back the transaction through TxSession.rollback()
(otherwise any exception has the same effect, but callers need to catch it).
Supporting more type aliases, including serial4, serial8, integer...
Deprecated all of v2 API, legacy fallback will be removed in next minor version (3.1.0).
3.0.0
New features:
New API (better names and consistency).
New SQL parsing and configurable query substitutions.
Integrated connection pooling.
A somewhat-compatible legacy API support to help migrations (will be removed in 3.1.0).
??: if null operator. expr1 ?? expr2 evaluates to expr1 if not null,
otherwise expr2.
??=: null-aware assignment. v ??= expr causes v to be assigned expr
only if v is null.
x?.p: null-aware access. x?.p evaluates to x.p if x is not null,
otherwise evaluates to null.
x?.m(): null-aware method invocation. x?.m() invokes m only if x is
not null.
Core library changes
dart:async
StreamController added setters for the onListen, onPause, onResume
and onCancel callbacks.
dart:convert
LineSplitter added a split static method returning an Iterable.
dart:core
Uri class now perform path normalization when a URI is created. This
removes most .. and . sequences from the URI path. Purely relative paths
(no scheme or authority) are allowed to retain some leading "dot" segments.
Also added hasAbsolutePath, hasEmptyPath, and hasScheme properties.
dart:developer
New log function to transmit logging events to Observatory.
dart:html
NodeTreeSanitizer added the const trusted field. It can be used instead
of defining a NullTreeSanitizer class when calling setInnerHtml or other
methods that create DOM from text. It is also more efficient, skipping the
creation of a DocumentFragment.
dart:io
Added two new file modes, WRITE_ONLY and WRITE_ONLY_APPEND for opening a
file write only.
eaeecf2
Change stdout/stderr to binary mode on Windows.
4205b29
Properly react to connection losses by reporting the database connection as
closed.
3.0.7
Allow cleartext passwords when secure connection is used. (#283 by simolus3)
3.0.6
Allow passing a SecurityContext when opening postgres connections.
3.0.5
Support for type char/character/bpchar.
3.0.4
Fix: SSL connection problem handler.
3.0.3
Using const for ConnectionSettings, SessionSettings and PoolSettings classes. (#267 by Gerrel)
Parsing of Sql.indexed and Sql.named happens when the Connection starts
to interpret it. Errors with unknown type names are thrown in this later step.
3.0.2
Fix: Dispose disconnected pool Connections. (#260 by nehzata).
Deprecated ParseMessage constructor's types argument, use typeOids instead.
(As most users don't access this directly, it will be removed in 3.1.0).
3.0.1
Fix: do not allow execute after closing the Connection.
Session.runTx() supports rolling back the transaction through TxSession.rollback()
(otherwise any exception has the same effect, but callers need to catch it).
Supporting more type aliases, including serial4, serial8, integer...
Deprecated all of v2 API, legacy fallback will be removed in next minor version (3.1.0).
3.0.0
New features:
New API (better names and consistency).
New SQL parsing and configurable query substitutions.
Integrated connection pooling.
A somewhat-compatible legacy API support to help migrations (will be removed in 3.1.0).
Fix a bug running browser tests with paths containing windows directory
separator follow by a character which is an invalid Dart string escape
sequence.
package:test v1.25.1
Fix a bug where in precompiled mode, html files for tests were no longer
created.
Document the silent reporter in CLI help output.
Commits
a5c4f01 Use a raw string for console logging with path (#2177)
fe3102e Bump js from 0.6.7 to 0.7.0 in /pkgs/test (#2168)
c709cde fix a bug where test html files were not created in precompiled mode (#2170)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the cli-deps group in /packages/cli with 6 updates:
2.6.3
3.0.8
6.1.4
7.0.0
0.2.10
0.2.12
1.11.0
1.12.0
0.3.0
1.0.3
2.6.3
3.0.8
1.25.0
1.25.2
Updates
postgres
from 2.6.3 to 3.0.8Changelog
Sourced from postgres's changelog.
... (truncated)
Commits
Updates
file
from 6.1.4 to 7.0.0Commits
Updates
mason_logger
from 0.2.10 to 0.2.12Release notes
Sourced from mason_logger's releases.
Commits
b9d4120
chore(mason_logger): v0.2.122726ef2
feat(mason_logger): addtrailing
toProgressOptions
(#1247)d507bde
chore(deps-dev): bump the vscode group (#1246)5d57488
ci: dependabot groups (#1245)5cbf7a9
feat(mason_cli): add--set-exit-if-changed
for mason bundle (#1229)076d5d8
chore(deps-dev): bump prettier from 3.2.4 to 3.2.5 in /extensions/vscode (#1241)3e77ced
chore(deps-dev): bump@typescript-eslint/eslint-plugin
(#1244)373dc5c
chore(deps-dev): bump@typescript-eslint/parser
in /extensions/vscode (#1243)0a58856
chore(deps-dev): bump@types/node
in /extensions/vscode (#1240)be4df7b
chore(deps-dev): bump webpack in /extensions/vscode (#1239)Updates
meta
from 1.11.0 to 1.12.0Changelog
Sourced from meta's changelog.
... (truncated)
Commits
b4fa68e
Band-aid fix for issue #24191.00d6b50
Add library prefixes to NO_LOCATION_SPANNABLE and MessageKind.daff4e7
[dart2js] fix inference of ??= and []??=40c76bb
dart2js: fail gracefully with invalid package config1aecb65
dart2js: remove trailing 0 byte when reading .packages7f78948
dart2js: don't add a trailing slash when reading --packages99c2010
Handle comparison of empty URIs (sdk/24126).971f0a2
comment docgen test3e970df
comment out failing docgen testc7e7953
update dartdoc, markdown in DEPSUpdates
mocktail
from 0.3.0 to 1.0.3Release notes
Sourced from mocktail's releases.
Commits
ca9f35e
chore(mocktail): v1.0.3 (#228)633471e
chore(mocktail_image_network): v1.1.0 (#227)4aea1f1
chore: update LICENSE year19cef6c
chore: remove deprecated lint rules53e8132
feat(mocktail_image_network): add customizableimageBytes
(#214)5d4573a
docs(mocktail): updateREADME.md
to includeany(that: ...)
(#226)22e45f1
chore(mocktail): v1.0.2 (#222)cee5c5f
docs(mocktail): updateverify
example inREADME.md
(#215)95d69b8
chore(deps): allowpkg:test_api >=0.7.0
(#220)c7491d2
chore(mocktail): v1.0.1 (#211)Updates
postgres
from 2.6.3 to 3.0.8Changelog
Sourced from postgres's changelog.
... (truncated)
Commits
Updates
test
from 1.25.0 to 1.25.2Release notes
Sourced from test's releases.
Commits
a5c4f01
Use a raw string for console logging with path (#2177)fe3102e
Bump js from 0.6.7 to 0.7.0 in /pkgs/test (#2168)c709cde
fix a bug where test html files were not created in precompiled mode (#2170)0eddae4
Document the silent reporter (#2163)30543ca
Add more logging around iframe startup (#2160)e56a5e2
small cleanup in catch (#2159)15b3937
handle missing package config files (#2158)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show