eseidel / space_traders

spacetraders.io client in Dart
MIT License
22 stars 1 forks source link

chore(deps): bump the cli-deps group in /packages/cli with 6 updates #7

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps the cli-deps group in /packages/cli with 6 updates:

Package From To
postgres 2.6.3 3.0.8
file 6.1.4 7.0.0
mason_logger 0.2.10 0.2.12
meta 1.11.0 1.12.0
mocktail 0.3.0 1.0.3
postgres 2.6.3 3.0.8
test 1.25.0 1.25.2

Updates postgres from 2.6.3 to 3.0.8

Changelog

Sourced from postgres's changelog.

3.0.8

  • 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).

... (truncated)

Commits


Updates file from 6.1.4 to 7.0.0

Commits


Updates mason_logger from 0.2.10 to 0.2.12

Release notes

Sourced from mason_logger's releases.

mason_logger-v0.2.12

  • feat: add trailing to ProgressOptions (#1247)

mason_logger-v0.2.11

  • chore: fix missing closing doc template
  • chore: use pkg:io (#1099)
Commits
  • b9d4120 chore(mason_logger): v0.2.12
  • 2726ef2 feat(mason_logger): add trailing to ProgressOptions (#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)
  • Additional commits viewable in compare view


Updates meta from 1.11.0 to 1.12.0

Changelog

Sourced from meta's changelog.

1.12.0 - 2015-08-31

Language changes

  • Null-aware operators
    • ??: 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

... (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 config
  • 1aecb65 dart2js: remove trailing 0 byte when reading .packages
  • 7f78948 dart2js: don't add a trailing slash when reading --packages
  • 99c2010 Handle comparison of empty URIs (sdk/24126).
  • 971f0a2 comment docgen test
  • 3e970df comment out failing docgen test
  • c7e7953 update dartdoc, markdown in DEPS
  • Additional commits viewable in compare view


Updates mocktail from 0.3.0 to 1.0.3

Release notes

Sourced from mocktail's releases.

mocktail-v1.0.3

  • docs: update README.md`` to include any(that: ...)` (#226)
  • chore: update LICENSE year
  • chore: remove deprecated lint rules

mocktail-v1.0.2

  • chore(deps): allow pkg:test_api >=0.7.0 (#220)
  • docs: update verify example in README.md (#215)

mocktail-v1.0.1

What's Changed

Full Changelog: https://github.com/felangel/mocktail/compare/mocktail-image-network-v1.0.0...mocktail-v1.0.1

mocktail-image-network-v1.0.0

  • refactor: use more strict analysis options (#203)
  • docs: improve example in README
  • docs: adjust LICENSE year
  • docs: add topics to pubspec.yaml

mocktail-v1.0.0

  • refactor: use more strict analysis options (#203)
  • docs: adjust LICENSE year
  • docs: add topics to pubspec.yaml

mocktail-image-network-v1.0.0-dev.0

  • refactor: use more strict analysis options (#203)
  • docs: improve example in README
  • docs: adjust LICENSE year
  • docs: add topics to pubspec.yaml

mocktail-v1.0.0-dev.0

  • refactor: use more strict analysis options (#203)
  • docs: adjust LICENSE year
  • docs: add topics to `pubspec.yaml

mocktail-image-network-v0.3.1

What's Changed

New Contributors

Commits


Updates postgres from 2.6.3 to 3.0.8

Changelog

Sourced from postgres's changelog.

3.0.8

  • 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).

... (truncated)

Commits


Updates test from 1.25.0 to 1.25.2

Release notes

Sourced from test's releases.

package:test v1.25.2

  • 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


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
eseidel commented 9 months ago

@dependabot recreate

dependabot[bot] commented 9 months ago

Looks like these dependencies are up-to-date now, so this is no longer needed.