1. 11 Oct, 2021 3 commits
  2. 09 Oct, 2021 7 commits
  3. 08 Oct, 2021 5 commits
  4. 05 Oct, 2021 6 commits
    • agilob's avatar
    • William Cheng's avatar
      Fix Windows build failure in some environments (#10529) · 72cec10e
      William Cheng authored
      * update surefire to newer version
      
      * more fixes
      
      * update pet.proto
      
      * update model protobuf template
      
      * add charset
      
      * set line separator
      
      * set proper line break in proto test
      
      * minor fix
      
      * use UTF-8
      
      * use FileUtils.contentEquals
      
      * remove line break
      
      * remove line breaks
      
      * revert utf-8 change
      72cec10e
    • Bodo Graumann's avatar
      9aadd772
    • andrew-matteson's avatar
      Correct a dependency resolution failure in generated angular typescript... · 22d98c17
      andrew-matteson authored
      Correct a dependency resolution failure in generated angular typescript packages for Angular 12 (#10525)
      
      * Update version
      
      * Rebuild sample
      22d98c17
    • Josh Burton's avatar
      [dart-dio-next] Adds an option for using the dio_http package (#10497) · f5e8f54b
      Josh Burton authored
      * [dart-dio] Adds an option for using the dio_http package
      
      Relates to #10305
      
      * [dart-dio-next] Generates new dio_http sample
      
      * [dart-dio-next] renames dio_http sample, adds pom.xml
      
      * [dart-dio-next] Removes executions not required
      f5e8f54b
    • RomainPruvostMHH's avatar
      [Java] Replace Java EE 8 dependencies by Jakarta EE 8 (#10513) · 1735ab9d
      RomainPruvostMHH authored
      
      * Migrate javax.annotation:javax.annotation-api to
      jakarta.annotation:jakarta.annotation-api:1.3.5
      
      * Migrate javax.annotation:javax.annotation-api to
      jakarta.annotation:jakarta.annotation-api:1.3.5 for sbt
      
      * Migrate javax.annotation:javax.annotation-api to
      jakarta.annotation:jakarta.annotation-api:1.3.5 for gradle
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java and kotlin
      
      * Delete org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec
      from the exclusion section of org.jboss.resteasy:resteasy-client in the
      resteasy module because jboss-annotations-api_1.2_spec isn't a
      transitive dependency
      
      * Migrate javax.validation:validation-api to
      jakarta.validation:jakarta.validation-api:2.0.2 for maven
      
      * Migrate javax.validation:validation-api to
      jakarta.validation:jakarta.validation-api:2.0.2 for gradle
      
      * Migrate javax.validation:validation-api to
      jakarta.validation:jakarta.validation-api:2.0.2 for sbt
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Migrate javax.ws.rs:javax.ws.rs-api to
      jakarta.ws.rs:jakarta.ws.rs-api:2.1.6 for maven
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Migrate javax.json.bind:javax.json.bind-api to
      jakarta.json.bind:jakarta.json.bind-api:1.0.2 for maven
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Migrate javax.json:javax.json-api to jakarta.json:jakarta.json-api:1.1.6
      for maven
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Migrate javax.xml.bind:jaxb-api to
      jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 for maven
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Migrate javax.el:el-api to jakarta.el:jakarta.el-api:3.0.3 for maven
      
      * Migrate javax.servlet:servlet-api to
      jakarta.servlet:jakarta.servlet-api:4.0.4 for maven
      
      * Delete the property servlet-api-version in pom files because it is
      useless
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Migrate javax.activation:activation to
      jakarta.activation:jakarta.activation-api:1.2.2 for maven
      
      * Delete javax.activation:activation from the exclusion section of
      org.jboss.resteasy:resteasy-client in the resteasy module because
      javax.activation:activation isn't a transitive dependency
      
      * Commit samples files after the execution of the command
      "generate-samples.sh for configs java, spring, jaxrs and kotlin
      
      * Fix the name of property jakarta.activation-version
      
      * Fix a missing property 'jakarta-annotation-version' in
      JavaJaxRS/resteasy/pom.mustache
      
      * generate samples
      
      * Fix version value of jakarta.validation-api artifact in
      Java/libraries/rest-assured/pom.mustache
      
      * Fix missing property jakarta-annotation-version in
      jaxrs-resteasy/eap/pom.mustache
      
      * generate samples
      
      * Revert changes in sample files after running the command
      generate-samples.sh in gitBash
      
      * Fix files in
      samples/openapi3/client/extensions/x-auth-id-alias/java/jersey2-java8
      
      * Replace the old dependency javax.validation:validation-api by the new
      Jakarta EE 8 jakarta.validation:jakarta.validation-api in
      openapi-generator-online
      
      Co-authored-by: default avatarrpruvost <rpruvost@ITEM-S78402.emea.msad.sopra>
      Co-authored-by: default avatarrpruvost <romain.pruvost@soprasteria.com>
      1735ab9d
  5. 04 Oct, 2021 6 commits
  6. 03 Oct, 2021 1 commit
    • Heikki Haapala's avatar
      [typescript-axios] Fix invalid query params usage (#10512) · 38b8685b
      Heikki Haapala authored
      * fix: axios query params from options
      
      Remove passing query params from options to setSearchParams. Options
      were already passed to Axios in full so this removes some duplicate
      logic. Axios does merge query params given in path and through params
      option so no change in outcome.
      
      * chore: generate samples
      38b8685b
  7. 02 Oct, 2021 8 commits
  8. 01 Oct, 2021 1 commit
  9. 30 Sep, 2021 1 commit
    • Richard Kolkovich's avatar
      [typescript-node] Set model default values (#10262) · 8c059a86
      Richard Kolkovich authored
      * fix: add default value, if present, for model properties (closes #10261)
      
      * update samples
      
      * fix: set default to null to allow #defaultValue to work in templates
      
      * fix: escape the string default value, leverage super rather than copy-pasta
      
      * update samples again
      8c059a86
  10. 28 Sep, 2021 2 commits