Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • O openapi-generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 3,476
    • Issues 3,476
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 402
    • Merge requests 402
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OpenAPI Tools
  • openapi-generator
  • Merge requests
  • !12354

[dart] Bump min dio version to prevent unused import

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Peter Leibiger requested to merge github/fork/kuhnroyal/dart-dio/raise-min-dio into master 3 years ago
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 6

Just a minor bump to prevent some import warnings.

PR checklist

  • Read the contribution guidelines.
  • Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community.
  • Run the following to build the project and update samples:
    ./mvnw clean package 
    ./bin/generate-samples.sh
    ./bin/utils/export_docs_generators.sh
    Commit all changed files. This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master. These must match the expectations made by your contribution. You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example ./bin/generate-samples.sh bin/configs/java*. For Windows users, please run the script in Git BASH.
  • If your PR is targeting a particular programming language, @mention the technical committee members, so they are more likely to review the pull request.

CC @jaumard (2018/09) @josh-burton (2019/12) @amondnet (2019/12) @sbu-WBT (2020/12) @kuhnroyal (2020/12) @agilob (2020/12) @ahmednfwela (2021/08)

Compare
  • master (base)

and
  • latest version
    1bdfa5a1
    1 commit, 2 years ago

6 files
+ 4
- 6

    Preferences

    File browser
    Compare changes
modules/openapi-gen‎erator/…/…/…/…/…/dio‎
serializatio‎n/built_value‎
api_util‎.mustache‎ +0 -1
pubspec.‎mustache‎ +1 -1
samples/openapi3/…‎/petstore/dart-dio‎
petstore_cli‎ent_lib_fake‎
lib‎/src‎
api_ut‎il.dart‎ +0 -1
pubspe‎c.yaml‎ +1 -1
petstore_client_lib_f‎ake-json_serializable‎
pubspe‎c.yaml‎ +1 -1
petstore_client‎_lib_fake_tests‎
pubspe‎c.yaml‎ +1 -1
modules/openapi-generator/src/main/resources/dart/libraries/dio/serialization/built_value/api_util.mustache
+ 0
- 1
  • View file @ 1bdfa5a1

  • Edit in single-file editor

  • Open in Web IDE


@@ -5,7 +5,6 @@ import 'dart:typed_data';
import 'package:built_collection/built_collection.dart';
import 'package:built_value/serializer.dart';
import 'package:dio/dio.dart';
import 'package:dio/src/parameter.dart';
/// Format the given form parameter object into something that Dio can handle.
/// Returns primitive or String.
modules/openapi-generator/src/main/resources/dart/libraries/dio/pubspec.mustache
+ 1
- 1
  • View file @ 1bdfa5a1

  • Edit in single-file editor

  • Open in Web IDE


@@ -12,7 +12,7 @@ environment:
{{/useJsonSerializable}}
dependencies:
dio: '>=4.0.0 <5.0.0'
dio: '>=4.0.1 <5.0.0'
{{#useBuiltValue}}
built_value: '>=8.1.0 <9.0.0'
built_collection: '>=5.1.0 <6.0.0'
samples/openapi3/client/petstore/dart-dio/petstore_client_lib_fake/lib/src/api_util.dart
+ 0
- 1
  • View file @ 1bdfa5a1

  • Edit in single-file editor

  • Open in Web IDE


@@ -8,7 +8,6 @@ import 'dart:typed_data';
import 'package:built_collection/built_collection.dart';
import 'package:built_value/serializer.dart';
import 'package:dio/dio.dart';
import 'package:dio/src/parameter.dart';
/// Format the given form parameter object into something that Dio can handle.
/// Returns primitive or String.
samples/openapi3/client/petstore/dart-dio/petstore_client_lib_fake/pubspec.yaml
+ 1
- 1
  • View file @ 1bdfa5a1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,7 @@ environment:
sdk: '>=2.12.0 <3.0.0'
dependencies:
dio: '>=4.0.0 <5.0.0'
dio: '>=4.0.1 <5.0.0'
built_value: '>=8.1.0 <9.0.0'
built_collection: '>=5.1.0 <6.0.0'
samples/openapi3/client/petstore/dart-dio/petstore_client_lib_fake-json_serializable/pubspec.yaml
+ 1
- 1
  • View file @ 1bdfa5a1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,7 @@ environment:
sdk: '>=2.14.0 <3.0.0'
dependencies:
dio: '>=4.0.0 <5.0.0'
dio: '>=4.0.1 <5.0.0'
json_annotation: '^4.4.0'
dev_dependencies:
samples/openapi3/client/petstore/dart-dio/petstore_client_lib_fake_tests/pubspec.yaml
+ 1
- 1
  • View file @ 1bdfa5a1

  • Edit in single-file editor

  • Open in Web IDE


@@ -10,7 +10,7 @@ environment:
dev_dependencies:
built_collection: 5.1.0
built_value: 8.1.0
dio: 4.0.0
dio: 4.0.1
http_mock_adapter: 0.3.2
mockito: 5.0.11
openapi:
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
2
Client: Dart Enhancement: Compatibility
2
Client: Dart Enhancement: Compatibility
    Assign labels
  • Manage project labels

Milestone
6.0.0
6.0.0 (expired)
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
1
1 participant
Peter Leibiger
Reference: OpenAPITools/openapi-generator!12354
Source branch: github/fork/kuhnroyal/dart-dio/raise-min-dio

Menu

Explore Projects Groups Snippets