Skip to content

WIP #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2b5bf22
refactor: upgrade graphql-relay from 0.8.0 to 0.9.0 (#7605)
snyk-bot Oct 5, 2021
484c2e8
fix: improve security by deprecating creating users with public acces…
dblythy Oct 8, 2021
caee281
fix: allow LiveQuery on Parse.Session (#7554)
dblythy Oct 8, 2021
197fcbd
refactor: modernize HTTPRequest tests (#7604)
brandongregoryscott Oct 8, 2021
68a3a87
fix: set objects in afterFind triggers (#7311)
dblythy Oct 9, 2021
ab1dddd
fix: add deprecation warning for `Parse.Cloud.httpRequest` (#7595)
dblythy Oct 9, 2021
90b18bc
docs: update contribution merge guide (#7611)
mtrezza Oct 10, 2021
85ef721
feat: alphabetical graphql api, fix internal reassign, enhanced Graph…
Moumouls Oct 11, 2021
d6bf3e1
Merge branch 'upstream/master' into pr-migrations-moumouls
Moumouls Oct 11, 2021
407ed6e
fix: upgrade graphql from 15.5.3 to 15.6.0 (#7612)
snyk-bot Oct 12, 2021
8cc1cf2
test: clean on after each
Moumouls Oct 12, 2021
0d46d2b
ci: disable docker auto publish (#7615)
mtrezza Oct 12, 2021
a00e903
ci: bump environment (#7616)
mtrezza Oct 12, 2021
ce57bf8
build: release 5.0.0-alpha.1 (#7617)
mtrezza Oct 12, 2021
0525e4b
ci: bump node version in release
mtrezza Oct 12, 2021
825b302
ci: fix docker build error
mtrezza Oct 12, 2021
049dd6b
ci: fix docker build error
mtrezza Oct 12, 2021
2ac694d
docs: update incorrect link to Back4App in README
alyssoncm Oct 13, 2021
9a6bb6b
ci: disable npm publishing on release
mtrezza Oct 13, 2021
040b695
Merge branch 'upstream/master' into pr-migrations-moumouls
Moumouls Oct 13, 2021
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches:
- '**'
env:
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
PARSE_SERVER_TEST_TIMEOUT: 20000
jobs:
check-ci:
Expand Down Expand Up @@ -106,38 +106,38 @@ jobs:
MONGODB_VERSION: 5.0.3
MONGODB_TOPOLOGY: replicaset
MONGODB_STORAGE_ENGINE: wiredTiger
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: MongoDB 4.4, ReplicaSet, WiredTiger
MONGODB_VERSION: 4.4.9
MONGODB_TOPOLOGY: replicaset
MONGODB_STORAGE_ENGINE: wiredTiger
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: MongoDB 4.2, ReplicaSet, WiredTiger
MONGODB_VERSION: 4.2.17
MONGODB_TOPOLOGY: replicaset
MONGODB_STORAGE_ENGINE: wiredTiger
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: MongoDB 4.0, ReplicaSet, WiredTiger
MONGODB_VERSION: 4.0.27
MONGODB_TOPOLOGY: replicaset
MONGODB_STORAGE_ENGINE: wiredTiger
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: MongoDB 4.0, Standalone, MMAPv1
MONGODB_VERSION: 4.0.27
MONGODB_TOPOLOGY: standalone
MONGODB_STORAGE_ENGINE: mmapv1
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: Redis Cache
PARSE_SERVER_TEST_CACHE: redis
MONGODB_VERSION: 4.4.9
MONGODB_TOPOLOGY: standalone
MONGODB_STORAGE_ENGINE: wiredTiger
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: Node 12
MONGODB_VERSION: 4.4.9
MONGODB_TOPOLOGY: standalone
MONGODB_STORAGE_ENGINE: wiredTiger
NODE_VERSION: 12.22.6
NODE_VERSION: 12.22.7
- name: Node 15
MONGODB_VERSION: 4.4.9
MONGODB_TOPOLOGY: standalone
Expand Down Expand Up @@ -184,16 +184,16 @@ jobs:
include:
- name: PostgreSQL 11, PostGIS 3.0
POSTGRES_IMAGE: postgis/postgis:11-3.0
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: PostgreSQL 11, PostGIS 3.1
POSTGRES_IMAGE: postgis/postgis:11-3.1
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: PostgreSQL 12, PostGIS 3.1
POSTGRES_IMAGE: postgis/postgis:12-3.1
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
- name: PostgreSQL 13, PostGIS 3.1
POSTGRES_IMAGE: postgis/postgis:13-3.1
NODE_VERSION: 14.18.0
NODE_VERSION: 14.18.1
fail-fast: false
name: ${{ matrix.name }}
timeout-minutes: 15
Expand Down
60 changes: 0 additions & 60 deletions .github/workflows/docker-publish.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release-manual-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=${{ steps.branch.outputs.branch_name == 'master' && github.event.inputs.ref == '' }}
latest=${{ steps.branch.outputs.branch_name == 'release' && github.event.inputs.ref == '' }}
tags: |
type=semver,enable=true,pattern={{version}},value=${{ github.event.inputs.ref }}
type=raw,enable=${{ github.event.inputs.ref == '' }},value=latest
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '10.14'
node-version: '12.2'
registry-url: https://registry.npmjs.org/
- name: Cache Node.js modules
uses: actions/cache@v2
Expand All @@ -19,9 +19,10 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
# Disable publishing until release automation; enable ad-hoc with correct npm tag (alpha, beta)
# - run: npm publish --tag alpha
# env:
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
publish-docs:
runs-on: ubuntu-18.04
timeout-minutes: 30
Expand All @@ -30,7 +31,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.14'
node-version: '12.2'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
Expand Down
Loading