Skip to content

Commit

Permalink
Allow latest pkg:http across packages (google#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored May 23, 2023
1 parent c0c84f6 commit 5bd5879
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 13 deletions.
5 changes: 3 additions & 2 deletions discoveryapis_commons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.0.6-dev
## 1.0.6

- Require Dart 2.19
- Require Dart 2.19 or later.
- Allow latest `package:http`.

## 1.0.5

Expand Down
4 changes: 2 additions & 2 deletions discoveryapis_commons/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: _discoveryapis_commons
version: 1.0.6-dev
version: 1.0.6
description: Library for use by client APIs generated from Discovery Documents.
repository: https://github.com/google/googleapis.dart/tree/master/discoveryapis_commons

environment:
sdk: '>=2.19.0 <3.0.0'

dependencies:
http: ^0.13.0
http: '>=0.13.5 <2.0.0'
http_parser: ^4.0.0
meta: ^1.3.0

Expand Down
3 changes: 2 additions & 1 deletion discoveryapis_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.1.0-dev

- Require Dart 2.16 or later.
- Require Dart 2.19 or later.
- Allow latest `package:http`.
- Add positional parameters to all schema types.
- Package version must be provided or default is to set `publish_to: none`.
- Added `Function` to the set of reserved names.
Expand Down
2 changes: 1 addition & 1 deletion discoveryapis_generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
args: ^2.0.0
collection: ^1.16.0
dart_style: ^2.3.0
http: ^0.13.0
http: '>=0.13.5 <2.0.0'
meta: ^1.2.4
path: ^1.3.3
source_helper: ^1.3.0
Expand Down
1 change: 1 addition & 0 deletions generated/googleapis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 11.2.0-dev

- Add back in `library` directives to improve documentation.
- Allow latest `package:http`.

## 11.1.0

Expand Down
3 changes: 2 additions & 1 deletion generated/googleapis_beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 8.1.0-dev

- Require Dart 2.17 or later.
- Require Dart 2.19 or later.
- Allow latest `package:http`.

## 8.0.0

Expand Down
2 changes: 1 addition & 1 deletion generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
dependencies:
args: ^2.3.1
discoveryapis_generator: any
http: ^0.13.5
http: '>=0.13.5 <2.0.0'
io: ^1.0.0
pool: ^1.4.0
yaml: '>=2.1.0 <4.0.0'
Expand Down
5 changes: 4 additions & 1 deletion googleapis_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 1.4.1-dev
## 1.4.1

- Require Dart 2.19 or later.
- Allow latest `package:http`.

## 1.4.0

Expand Down
4 changes: 2 additions & 2 deletions googleapis_auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: googleapis_auth
version: 1.4.1-dev
version: 1.4.1
description: Obtain Access credentials for Google services using OAuth 2.0
repository: https://github.com/google/googleapis.dart/tree/master/googleapis_auth

Expand All @@ -9,7 +9,7 @@ environment:
dependencies:
args: ^2.3.1
crypto: ^3.0.0
http: ^0.13.0
http: '>=0.13.5 <2.0.0'
http_parser: ^4.0.0
js: ^0.6.4

Expand Down
1 change: 1 addition & 0 deletions resources/googleapis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 11.2.0-dev

- Add back in `library` directives to improve documentation.
- Allow latest `package:http`.

## 11.1.0

Expand Down
3 changes: 2 additions & 1 deletion resources/googleapis_beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 8.1.0-dev

- Require Dart 2.17 or later.
- Require Dart 2.19 or later.
- Allow latest `package:http`.

## 8.0.0

Expand Down
2 changes: 1 addition & 1 deletion test_integration/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
async: ^2.8.2
googleapis: any
googleapis_auth: any
http: ^0.13.5
http: '>=0.13.5 <2.0.0'
path: ^1.8.3
shelf: ^1.2.0
stack_trace: ^1.10.0
Expand Down

0 comments on commit 5bd5879

Please sign in to comment.