Skip to content

Commit

Permalink
Release 1.16.1 (#582)
Browse files Browse the repository at this point in the history
Co-authored-by: gh-action-runner <[email protected]>
Co-authored-by: Anthony Miller <[email protected]>
  • Loading branch information
3 people authored Jan 21, 2025
1 parent 535e515 commit d76aa8d
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Foundation

public enum Constants {
public static let CodegenVersion: String = "1.16.0"
public static let CodegenVersion: String = "1.16.1"
}
2 changes: 1 addition & 1 deletion apollo-ios-codegen/Sources/CodegenCLI/Constants.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Foundation

public enum Constants {
public static let CLIVersion: String = "1.16.0"
public static let CLIVersion: String = "1.16.1"
static let defaultFilePath: String = "./apollo-codegen-config.json"
}
6 changes: 6 additions & 0 deletions apollo-ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v1.16.1
### Fixed
- **Web socket data race crash fixed ([#578](https://github.com/apollographql/apollo-ios-dev/pull/578)):** A data race in the web socket layer was causing crashes in some rare circumstances.

- **Added support for GraphQL over HTTP media type([#558](https://github.com/apollographql/apollo-ios-dev/pull/558)):** Apollo iOS now supports the `content-type` header with a type of `application/graphql-response+json`.

## v1.16.0

### New
Expand Down
Binary file modified apollo-ios/CLI/apollo-ios-cli.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion apollo-ios/Sources/Apollo/Constants.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Foundation

public enum Constants {
public static let ApolloVersion: String = "1.16.0"
public static let ApolloVersion: String = "1.16.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -703,11 +703,11 @@
"type" : "codeVoice"
},
{
"text" : " conforms to ",
"text" : " is ",
"type" : "text"
},
{
"code" : "Hashable",
"code" : "String",
"type" : "codeVoice"
},
{
Expand All @@ -719,11 +719,11 @@
"type" : "codeVoice"
},
{
"text" : " conforms to ",
"text" : " is ",
"type" : "text"
},
{
"code" : "Hashable",
"code" : "AnyHashable",
"type" : "codeVoice"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"defaultImplementationsSections" : [
{
"identifiers" : [
"doc:\/\/ApolloAPI\/documentation\/ApolloAPI\/GraphQLOperation\/operationType-5e63x",
"doc:\/\/ApolloAPI\/documentation\/ApolloAPI\/GraphQLOperation\/operationType-370r3",
"doc:\/\/ApolloAPI\/documentation\/ApolloAPI\/GraphQLOperation\/operationType-5e63x",
"doc:\/\/ApolloAPI\/documentation\/ApolloAPI\/GraphQLOperation\/operationType-90ybj"
],
"title" : "GraphQLOperation Implementations"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@
"type" : "text"
},
{
"code" : "JSONEncodable",
"code" : "AnyScalarType",
"type" : "codeVoice"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@
"type" : "codeVoice"
},
{
"text" : " conforms to ",
"text" : " is ",
"type" : "text"
},
{
"code" : "Hashable",
"code" : "String",
"type" : "codeVoice"
},
{
Expand All @@ -238,11 +238,11 @@
"type" : "codeVoice"
},
{
"text" : " conforms to ",
"text" : " is ",
"type" : "text"
},
{
"code" : "Hashable",
"code" : "AnyHashable",
"type" : "codeVoice"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@
"type" : "text"
},
{
"code" : "JSONEncodable",
"code" : "AnyScalarType",
"type" : "codeVoice"
},
{
Expand Down

0 comments on commit d76aa8d

Please sign in to comment.