Commit Graph

577 Commits

Author SHA1 Message Date
William Cheng
6cd40e02b3
add macjohnny to the TS technical committee 2018-01-28 15:01:05 +08:00
William Cheng
1d661f3683
add jimschubert as kotline server template creator 2018-01-27 17:48:24 +08:00
Jeffrey Slort
2b84118c9f removed isomorphic-fetch typing dependency (#6894)
* removed isomorphic-fetch typing dependency
removed postinstall command

* space

* regenerated samples

* updated security samples

* fixed missing url module

* added prepublish hook

* regenerated samples

* added npm build to build
2018-01-25 21:20:58 +08:00
William Cheng
6d4d9056f4
add joernahrens for refactoring dart client 2018-01-25 18:25:07 +08:00
William Cheng
fe22472634
add a link to ebook (polish version) 2018-01-22 23:25:48 +08:00
William Cheng
c3c67b6ef1
Revised core team members 2018-01-22 21:33:29 +08:00
Reijhanniel Jearl Campos
9e1bbe0c1c #7093 - Add maven wrapper (#7356) 2018-01-22 14:35:34 +08:00
William Cheng
30c1448d78
Fix build.gradle for Java RESTEasy client (#7448)
* update release 2.3.1

* add jeff9finger to java tech committee

* fix build.gradle for java resteasy
2018-01-19 13:21:39 +08:00
William Cheng
094f69bc9e
fix missing "`", removed duplicated Huawei entries 2018-01-14 17:44:46 +08:00
Darío Hereñú
94746bb23d Typo
on @266. Plus minor fixes (proposal)
2018-01-14 17:41:21 +08:00
qct
acf70d0481 add swagger example to README.md (#7368) 2018-01-11 23:03:36 +08:00
William Cheng
e679254158
add link to Sumit Maingi blog post 2018-01-10 12:00:37 +08:00
William Cheng
743bc650ab add shijinkui to scala technical committee 2018-01-07 18:12:55 +08:00
Kevin Brey
3af51d1b36 docs(readme): update link to contributing guid (#7332) 2018-01-07 10:49:38 +08:00
Aaron McGinn
6c2a583bcd Java8 fix (#7260)
* [JavaPKMST-Server] Change Java 8 code to Java 7 to meet project specifications

* Revert "Update readme to Java 8"

This reverts commit 54ce4caafc.
2018-01-07 10:32:40 +08:00
William Cheng
3c7505670b
fix typo, update 2017 to 2018 2018-01-04 21:56:20 +08:00
Jinkui Shi
8b9c8ad618 [Doc] add huawei cloud to companies list #7308 (#7309) 2018-01-04 18:10:01 +08:00
Louis
1b7f654f11 Adding Peatio opensource as reference project (#7267)
Peatio is an opensource project and all API client are generated using codegen.
2018-01-03 10:58:43 +08:00
joy8zhang
bf35e8bbf2 Update README.md (#7298)
Added Hootsuite under Companies/Projects using Swagger CodeGen
2018-01-03 10:38:33 +08:00
joy8zhang
07977462c8 Update README.md (#7299)
* Update README.md

Added new resource `http://code.hootsuite.com/using-protocol-buffer-to-generate-sdk-at-hoosuite/?lipi=urn%3Ali%3Apage%3Ad_flagship3_messaging%3By4ATz3SDRXyvXJJ14LQysQ%3D%3D` onto `Presentations/Videos/Tutorials/Books`

* Update README.md

Added extra space
2018-01-03 10:37:41 +08:00
William Cheng
8e551a76b4
add link to chinese ebook 2017-12-29 13:49:46 +08:00
William Cheng
54ce4caafc
Update readme to Java 8 2017-12-27 11:27:37 +08:00
William Cheng
0301950dcb
move bvwells to go tech comm 2017-12-24 00:49:03 +08:00
William Cheng
8ae11847d3
update current stable version in readme 2017-12-22 23:54:21 +08:00
William Cheng
591b4f2217
update doc to 2.3.0 2017-12-22 11:48:47 +08:00
William Cheng
c1cbf32d17
add trenneman as elm creator 2017-12-21 16:37:53 +08:00
William Cheng
0924771fc3
add bvwells to go technical committee 2017-12-21 15:19:06 +08:00
Daniel
dbfe4ec119 Video "Building an API with Swagger" (#7237)
Added my video to building a Swagger API using the Swagger editor and NodeJS.
2017-12-21 15:17:32 +08:00
sanshuman
8a45ac8426 added prokarma to the name of the company (#7215) 2017-12-19 23:04:39 +08:00
William Cheng
6946ee04f4
add java pkmst owner 2017-12-19 21:12:14 +08:00
Piotr Jóźwiak
cccef5dbc3 Add our company to list (#7203) 2017-12-18 22:13:10 +08:00
William Cheng
6aa26461d7
add bjgill to rust tech comm 2017-12-15 18:51:37 +08:00
William Cheng
5b76151a87
update 2.3.0 release to Dec 2017 2017-12-15 01:21:48 +08:00
Benjamin Gill
1a831f73f3 [rust-server] Plaintext support; encode params (#7082)
* MMORCH-428: Export the Authorization struct

This is needed so that code can check that the version of Authorization
in the auto-generated code is the same as the version it is using. If
the versions are not exactly the same then the lookup into the TypeMap
will not work.

* Add Rust as a supported language for client and server.

Clarify that there are two Rust client implementations, and one Rust server implementation.

* Percent-encode path and query parameters in client URLs
Fixes #122

Also don't include a question mark at the end of the path when there are no query paramters.
Fixes #121

* Rust2 client: add --host and --port parameters to example client.

Allows the example command-line client to override the default host and port.

* Extract default host and port from Swagger file.

* Derive 'Eq' and 'Ord' on enums

* Rust2: improve server code structure.

    server.rs (main.rs) - main entry point for binary; starts the web server and points it at the server code within the library.
    server_lib/mod.rs (lib.rs) - root of library; creates the server.
    server_lib/server.rs (server.rs) - actual server code

The old server_lib/mod.rs is now server_lib/server.rs; server_lib/mod.rs is new.

This structure is easy to map onto a server implementation; unfortunately we can't get it exactly right here because of the limitations of cargo's examples/ folder.

* Rust2: Explain fully how to use the example code in your project.

* Added plaintext support

* Linting

* MGJ Markups
2017-12-08 18:42:14 +08:00
William Cheng
a7da5d8098
add a link to IT World article 2017-12-07 17:46:26 +08:00
William Cheng
5f9f6e5c9b
revised C# support in readme 2017-12-05 20:15:23 +08:00
William Cheng
28467a5c3f
add antihax to go technical committee 2017-11-28 23:46:17 +08:00
philicious
1472b60d3a Added a Blog Post Entry (#7069)
Blog Post I wrote for Dreamfactorys Blog last year showing how to use Swagger to generate Client SDKs and using them
2017-11-28 21:17:10 +08:00
Lee Skillen
7a15121f94 Adding Cloudsmith to Swagger users (#7055) 2017-11-26 01:16:51 +08:00
Akihito Nakano
8cc8c1eac6 Add GMO Pepabo (#7049) 2017-11-24 22:29:19 +08:00
William Cheng
57b42a544d
add fvarose to c++ tech comm 2017-11-24 01:57:15 +08:00
Daiki Matsudate
ed705e9d70 add link to d-date's presentation (#7021) 2017-11-22 17:06:22 +08:00
William Cheng
5e76b22ae8
add gmkumar2005 as scala lagom template creator 2017-11-21 16:37:42 +08:00
Hidenori Maehara
0c3688227a add my slide to README.md (#7006) 2017-11-21 10:30:25 +08:00
William Cheng
6476c0aa18
add @tsloughter to erlang tech committee 2017-11-19 00:04:37 +08:00
shashank734
18e0b67903 Added Company using Sawgger in Readme.md (#6988)
Added company Thirdwatch.ai in Readme.md which is using swagger.
2017-11-17 20:52:37 +08:00
William Cheng
0c0da42d33
Better instruction for Windows users 2017-11-16 17:08:16 +08:00
William Cheng
6739481a5d
add tsloughter as owner erlang 2017-11-12 22:07:12 +08:00
William Cheng
d76e37277a
add link to ebook 2017-11-11 14:51:35 +08:00
wing328
9dea435104
add kenjonese-cisco to python tech committee 2017-11-09 21:43:47 +08:00