Skip to content

Commit

Permalink
feat: add Crown Tundra (#316)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeroen Claassens <support@favware.tech>
  • Loading branch information
KunoichiZ and favna committed Oct 25, 2020
1 parent 4c78c9f commit 66987c7
Show file tree
Hide file tree
Showing 16 changed files with 8,971 additions and 5,950 deletions.
8 changes: 4 additions & 4 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Supported Versions

| Version | Supported |
| ------- | ------------------ |
| >= 4.2.x | :white_check_mark: |
| <= 4.1.x | :x: |
| Version | Supported |
| -------- | ------------------ |
| >= 4.2.x | :white_check_mark: |
| <= 4.1.x | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/branch-imager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
name: api_bundle
path: generated/api/
- name: Get GitHub Branch Name
run: echo ::set-env name=GITHUB_BRANCH_NAME::$(echo ${{ github.ref }} | cut -c12- | sed -e 's/\/\|_/-/g' | sed -e 's/@//g')
run: echo "GITHUB_BRANCH_NAME=$(echo ${{ github.ref }} | cut -c12- | sed -e 's/\/\|_/-/g' | sed -e 's/@//g')" >> $GITHUB_ENV
- name: Publish to Dockerhub
uses: elgohr/Publish-Docker-Github-Action@master
with:
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,29 +35,29 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

Testing:
name: Unit Tests
Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
- name: Compile TypeScript
uses: icrawl/action-tsc@v1
with:
build: src
build: src
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,18 @@ All notable changes to this project will be documented in this file. See [standa

## [4.3.0](https://github.com/favware/graphql-pokemon/compare/v4.2.5...v4.3.0) (2020-09-02)


### Features

* remove nuget publish ([6db4d4c](https://github.com/favware/graphql-pokemon/commit/6db4d4ce3cd1891e1ac3a27dd9e30711fa472e54))
- remove nuget publish ([6db4d4c](https://github.com/favware/graphql-pokemon/commit/6db4d4ce3cd1891e1ac3a27dd9e30711fa472e54))

### [4.2.5](https://github.com/favware/graphql-pokemon/compare/v4.2.4...v4.2.5) (2020-08-20)

### [4.2.4](https://github.com/favware/graphql-pokemon/compare/v4.2.3...v4.2.4) (2020-08-06)


### Bug Fixes

* cover data changes ([1fa2f7f](https://github.com/favware/graphql-pokemon/commit/1fa2f7f0d3a27fc8fffadee3dbaf814bb1d54243))
* resolve security vulnerability CVE-2020-8203 ([9133413](https://github.com/favware/graphql-pokemon/commit/91334135c40a58094225b7033f87337e0d6722f8))
- cover data changes ([1fa2f7f](https://github.com/favware/graphql-pokemon/commit/1fa2f7f0d3a27fc8fffadee3dbaf814bb1d54243))
- resolve security vulnerability CVE-2020-8203 ([9133413](https://github.com/favware/graphql-pokemon/commit/91334135c40a58094225b7033f87337e0d6722f8))

### [4.2.3](https://github.com/favware/graphql-pokemon/compare/v4.2.2...v4.2.3) (2020-07-05)

Expand Down
8 changes: 4 additions & 4 deletions __tests__/__snapshots__/abilities.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Object {
"name": "Multiscale",
"shortDesc": "If this Pokemon is at full HP, damage taken from attacks is halved.",
},
"refIndex": 128,
"refIndex": 134,
},
Object {
"item": Object {
"name": "Multitype",
"shortDesc": "If this Pokemon is an Arceus, its type changes to match its held Plate or Z-Crystal.",
},
"refIndex": 129,
"refIndex": 135,
},
],
}
Expand All @@ -29,7 +29,7 @@ Object {
"name": "Multiscale",
"shortDesc": "If this Pokemon is at full HP, damage taken from attacks is halved.",
},
"refIndex": 128,
"refIndex": 134,
},
],
}
Expand All @@ -43,7 +43,7 @@ Object {
"name": "Multiscale",
"shortDesc": "If this Pokemon is at full HP, damage taken from attacks is halved.",
},
"refIndex": 128,
"refIndex": 134,
},
],
}
Expand Down
73 changes: 68 additions & 5 deletions __tests__/__snapshots__/learnsets.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ Object {
},
],
"levelUpMoves": Array [
Object {
"generation": 8,
"level": 62,
"name": "dragondance",
},
Object {
"generation": 7,
"level": 61,
Expand All @@ -45,7 +50,12 @@ Object {
"name": "dragondance",
},
],
"tmMoves": Array [],
"tmMoves": Array [
Object {
"generation": 8,
"name": "dragondance",
},
],
"tutorMoves": Array [],
"virtualTransferMoves": Array [],
},
Expand Down Expand Up @@ -76,6 +86,11 @@ Object {
},
],
"levelUpMoves": Array [
Object {
"generation": 8,
"level": 62,
"name": "dragondance",
},
Object {
"generation": 7,
"level": 61,
Expand All @@ -98,6 +113,14 @@ Object {
},
],
"tmMoves": Array [
Object {
"generation": 8,
"name": "dragondance",
},
Object {
"generation": 8,
"name": "dragonclaw",
},
Object {
"generation": 7,
"name": "dragonclaw",
Expand Down Expand Up @@ -149,6 +172,11 @@ Object {
},
],
"levelUpMoves": Array [
Object {
"generation": 8,
"level": 62,
"name": "dragondance",
},
Object {
"generation": 7,
"level": 61,
Expand All @@ -170,7 +198,12 @@ Object {
"name": "dragondance",
},
],
"tmMoves": Array [],
"tmMoves": Array [
Object {
"generation": 8,
"name": "dragondance",
},
],
"tutorMoves": Array [],
"virtualTransferMoves": Array [],
},
Expand Down Expand Up @@ -292,6 +325,11 @@ Object {
},
],
"levelUpMoves": Array [
Object {
"generation": 8,
"level": 62,
"name": "dragondance",
},
Object {
"generation": 7,
"level": 61,
Expand All @@ -313,7 +351,12 @@ Object {
"name": "dragondance",
},
],
"tmMoves": Array [],
"tmMoves": Array [
Object {
"generation": 8,
"name": "dragondance",
},
],
"tutorMoves": Array [],
"virtualTransferMoves": Array [],
},
Expand Down Expand Up @@ -344,6 +387,11 @@ Object {
},
],
"levelUpMoves": Array [
Object {
"generation": 8,
"level": 62,
"name": "dragondance",
},
Object {
"generation": 7,
"level": 61,
Expand All @@ -365,7 +413,12 @@ Object {
"name": "dragondance",
},
],
"tmMoves": Array [],
"tmMoves": Array [
Object {
"generation": 8,
"name": "dragondance",
},
],
"tutorMoves": Array [],
"virtualTransferMoves": Array [],
},
Expand Down Expand Up @@ -396,6 +449,11 @@ Object {
},
],
"levelUpMoves": Array [
Object {
"generation": 8,
"level": 62,
"name": "dragondance",
},
Object {
"generation": 7,
"level": 61,
Expand All @@ -417,7 +475,12 @@ Object {
"name": "dragondance",
},
],
"tmMoves": Array [],
"tmMoves": Array [
Object {
"generation": 8,
"name": "dragondance",
},
],
"tutorMoves": Array [],
"virtualTransferMoves": Array [],
},
Expand Down
Loading

0 comments on commit 66987c7

Please sign in to comment.