Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade some dependencies #414

Merged
merged 2 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:

jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
with:
working-directory: aws_client
4 changes: 2 additions & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@ linter:
await_only_futures: true
camel_case_types: true
cancel_subscriptions: true
collection_methods_unrelated_type: true
directives_ordering: true
empty_catches: true
empty_statements: true
hash_and_equals: true
iterable_contains_unrelated_type: true
list_remove_unrelated_type: true
no_adjacent_strings_in_list: true
no_duplicate_case_values: true
no_leading_underscores_for_library_prefixes: false # Too many occurrences
Expand Down Expand Up @@ -56,4 +55,5 @@ linter:
unnecessary_this: true
unrelated_type_equality_checks: true
use_rethrow_when_possible: true
use_super_parameters: false
valid_regexps: true
4 changes: 4 additions & 0 deletions aws_client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.2

- Upgrade dependencies

## 0.4.1

- Add more examples
Expand Down
6 changes: 3 additions & 3 deletions aws_client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: aws_client
description: Auto-generated client libraries for accessing Amazon Web Services (AWS) APIs
version: 0.4.1
version: 0.4.2
homepage: https://github.com/agilord/aws_client

environment:
Expand All @@ -11,8 +11,8 @@ dependencies:
http: '>=0.13.1 <2.0.0'
meta: ^1.3.0
xml: '>=6.0.0 <7.0.0'
intl: '>=0.17.0 <0.19.0'
uuid: ^3.0.3
intl: '>=0.17.0 <0.20.0'
uuid: ^4.0.0
collection: ^1.15.0

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
sdk: '^3.0.0'

dependencies:
analyzer: ^5.13.0
analyzer: ^6.0.0
archive: ^3.0.0
args: ^2.2.0
collection: ^1.17.2
Expand All @@ -23,7 +23,7 @@ dependencies:
yaml: ^3.0.0

dev_dependencies:
lints: ^2.1.0
lints: ^3.0.0
build_runner: ^2.1.1
build_verify: ^3.0.0
json_serializable: ^6.1.3
Expand Down
4 changes: 2 additions & 2 deletions shared_aws_api/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies:
http: '>=0.13.1 <2.0.0'
meta: ^1.3.0
xml: '>=6.0.0 <7.0.0'
intl: ^0.18.0
uuid: ^3.0.3
intl: '>=0.18.0 <0.20.0'
uuid: ^4.0.0
collection: ^1.15.0

dev_dependencies:
Expand Down
Loading