Skip to content

Commit 14de542

Browse files
Bump version, update changelog, regenerate docs
1 parent 0888dd2 commit 14de542

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change log
22

3+
### v0.16.1
4+
- Updated the way `run-bundled-codegen` checks whether the bundled codegen has already been unzipped and has node locally. ([#806](https://github.com/apollographql/apollo-ios/pull/806))
5+
- Updated how default parameters are provided for `RequestCreatorProtocol`. ([#804](https://github.com/apollographql/apollo-ios/pull/804))
6+
37
### v0.16.0
48
- **BREAKING**: We've switched to a much simpler setup which does not involve NPM in order to use our CLI. This requires updating your build scripts. Please follow the [updated instructions for setting up the build script here](https://www.apollographql.com/docs/ios/installation/#adding-a-code-generation-build-step). The existing build script will continue to work until the next minor release, at which point it will be removed. ([#766](https://github.com/apollographql/apollo-ios/pull/766))
59
- Included CLI version fixes issues which showed up in `0.15.2`.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CURRENT_PROJECT_VERSION = 0.16.0
1+
CURRENT_PROJECT_VERSION = 0.16.1

docs/source/api/Apollo/classes/MultipartFormData.md

+19
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,25 @@ public convenience init()
3333

3434
> Convenience initializer which uses a pre-defined boundary
3535

36+
### `appendPart(string:name:)`
37+
38+
```swift
39+
public func appendPart(string: String, name: String) throws
40+
```
41+
42+
> Appends the passed-in string as a part of the body.
43+
>
44+
> - Parameters:
45+
> - string: The string to append
46+
> - name: The name of the part to pass along to the server
47+
48+
#### Parameters
49+
50+
| Name | Description |
51+
| ---- | ----------- |
52+
| string | The string to append |
53+
| name | The name of the part to pass along to the server |
54+
3655
### `appendPart(data:name:contentType:filename:)`
3756

3857
```swift

docs/source/api/Apollo/extensions/RequestCreator.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
### `requestBody(for:sendOperationIdentifiers:)`
77

88
```swift
9-
public func requestBody<Operation: GraphQLOperation>(for operation: Operation, sendOperationIdentifiers: Bool = false) -> GraphQLMap
9+
public func requestBody<Operation: GraphQLOperation>(for operation: Operation, sendOperationIdentifiers: Bool) -> GraphQLMap
1010
```
1111

1212
> Creates a `GraphQLMap` out of the passed-in operation
@@ -30,7 +30,7 @@ public func requestMultipartFormData<Operation: GraphQLOperation>(for operation:
3030
files: [GraphQLFile],
3131
sendOperationIdentifiers: Bool,
3232
serializationFormat: JSONSerializationFormat.Type,
33-
manualBoundary: String? = nil) throws -> MultipartFormData
33+
manualBoundary: String?) throws -> MultipartFormData
3434
```
3535

3636
> Creates multi-part form data to send with a request

0 commit comments

Comments
 (0)