Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Update Koa Proxy Api Versions #1377

Merged
merged 6 commits into from
May 1, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/koa-shopify-graphql-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- ## [Unreleased] -->
## [Unreleased]

= The `ApiVersion` enum now has an `April20` and `July20` options
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The enum already have April20. Maybe we should mention we drop April19


## [3.3.0] - 2020-02-19

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export const PROXY_BASE_PATH = '/graphql';
export const GRAPHQL_PATH_PREFIX = '/admin/api';

export enum ApiVersion {
April19 = '2019-04',
July19 = '2019-07',
October19 = '2019-10',
January20 = '2020-01',
April20 = '2020-04',
July20 = '2020-07',
Unstable = 'unstable',
Unversioned = 'unversioned',
}
Expand Down