Skip to content

build: Release #9695

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 23 commits into from
Apr 4, 2025
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3270089
refactor: Bump uuid from 11.0.5 to 11.1.0 (#9660)
dependabot[bot] Mar 21, 2025
bde9899
refactor: Bump mongodb from 6.13.0 to 6.15.0 (#9659)
dependabot[bot] Mar 21, 2025
b9917dd
refactor: Bump globals from 15.15.0 to 16.0.0 (#9670)
dependabot[bot] Mar 21, 2025
12b5d78
feat: Add default ACL (#8701)
dblythy Mar 24, 2025
bb74f02
chore(release): 8.1.0-alpha.1 [skip ci]
semantic-release-bot Mar 24, 2025
b6d155f
refactor: Bump commander from 13.0.0 to 13.1.0 (#9673)
dependabot[bot] Mar 24, 2025
67f4c1a
refactor: Bump typescript from 5.7.3 to 5.8.2 (#9674)
dependabot[bot] Mar 24, 2025
dcbbda8
refactor: Bump @babel/cli from 7.26.4 to 7.27.0 (#9679)
dependabot[bot] Mar 25, 2025
a95e9af
refactor: Bump @babel/preset-typescript from 7.26.0 to 7.27.0 (#9680)
dependabot[bot] Mar 26, 2025
06ebd02
refactor: Bump lint-staged from 15.4.3 to 15.5.0 (#9678)
dependabot[bot] Mar 26, 2025
4683820
refactor: Bump router from 2.1.0 to 2.2.0 (#9682)
dependabot[bot] Mar 27, 2025
042a920
refactor: Bump eslint from 9.20.0 to 9.23.0 (#9681)
dependabot[bot] Mar 27, 2025
b2beaa8
feat: Add Cloud Code triggers `Parse.Cloud.beforeFind(Parse.File)`and…
dblythy Mar 27, 2025
f55de2b
chore(release): 8.1.0-alpha.2 [skip ci]
semantic-release-bot Mar 27, 2025
aed918d
fix: Parse Server doesn't shutdown gracefully (#9634)
dplewis Mar 27, 2025
59ad99a
chore(release): 8.1.0-alpha.3 [skip ci]
semantic-release-bot Mar 27, 2025
51e2e53
refactor: Upgrade @graphql-tools/utils from 10.6.3 to 10.8.4 (#9676)
parseplatformorg Mar 28, 2025
b559fbf
refactor: Bump jwks-rsa from 3.1.0 to 3.2.0 (#9684)
dependabot[bot] Mar 29, 2025
a9176d5
docs: Remove outdated code examples (#9685)
mtrezza Mar 31, 2025
f49c371
feat: Upgrade Parse JS SDK from 6.0.0 to 6.1.0 (#9686)
dblythy Apr 1, 2025
5dbd254
chore(release): 8.1.0-alpha.4 [skip ci]
semantic-release-bot Apr 1, 2025
257be69
refactor: Bump @babel/preset-env from 7.26.0 to 7.26.9 (#9683)
dependabot[bot] Apr 2, 2025
4352acc
empty commit to trigger CI
github-actions[bot] Apr 4, 2025
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
67 changes: 3 additions & 64 deletions README.md
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ A big *thank you* 🙏 to our [sponsors](#sponsors) and [backers](#backers) who
- [PostgreSQL](#postgresql)
- [Locally](#locally)
- [Docker Container](#docker-container)
- [Saving an Object](#saving-an-object)
- [Saving and Querying Objects](#saving-and-querying-objects)
- [Connect an SDK](#connect-an-sdk)
- [Running Parse Server elsewhere](#running-parse-server-elsewhere)
- [Sample Application](#sample-application)
@@ -186,70 +186,9 @@ That's it! You are now running a standalone version of Parse Server on your mach

**Using a remote MongoDB?** Pass the `--databaseURI DATABASE_URI` parameter when starting `parse-server`. Learn more about configuring Parse Server [here](#configuration). For a full list of available options, run `parse-server --help`.

### Saving an Object
### Saving and Querying Objects

Now that you're running Parse Server, it is time to save your first object. We'll use the [REST API](http://docs.parseplatform.org/rest/guide), but you can easily do the same using any of the [Parse SDKs](http://parseplatform.org/#sdks). Run the following:

```bash
$ curl -X POST \
-H "X-Parse-Application-Id: APPLICATION_ID" \
-H "Content-Type: application/json" \
-d '{"score":1337,"playerName":"Sean Plott","cheatMode":false}' \
http://localhost:1337/parse/classes/GameScore
```

You should get a response similar to this:

```js
{
"objectId": "2ntvSpRGIK",
"createdAt": "2016-03-11T23:51:48.050Z"
}
```

You can now retrieve this object directly (make sure to replace `2ntvSpRGIK` with the actual `objectId` you received when the object was created):

```bash
$ curl -X GET \
-H "X-Parse-Application-Id: APPLICATION_ID" \
http://localhost:1337/parse/classes/GameScore/2ntvSpRGIK
```
```json
// Response
{
"objectId": "2ntvSpRGIK",
"score": 1337,
"playerName": "Sean Plott",
"cheatMode": false,
"updatedAt": "2016-03-11T23:51:48.050Z",
"createdAt": "2016-03-11T23:51:48.050Z"
}
```

Keeping tracks of individual object ids is not ideal, however. In most cases you will want to run a query over the collection, like so:

```bash
$ curl -X GET \
-H "X-Parse-Application-Id: APPLICATION_ID" \
http://localhost:1337/parse/classes/GameScore
```
```json
// The response will provide all the matching objects within the `results` array:
{
"results": [
{
"objectId": "2ntvSpRGIK",
"score": 1337,
"playerName": "Sean Plott",
"cheatMode": false,
"updatedAt": "2016-03-11T23:51:48.050Z",
"createdAt": "2016-03-11T23:51:48.050Z"
}
]
}
```

To learn more about using saving and querying objects on Parse Server, check out the [Parse documentation](http://docs.parseplatform.org).
Now that you're running Parse Server, it is time to save your first object. The easiest way is to use the [REST API](http://docs.parseplatform.org/rest/guide), but you can easily do the same using any of the [Parse SDKs](http://parseplatform.org/#sdks). To learn more check out the [documentation](http://docs.parseplatform.org).

### Connect an SDK

28 changes: 28 additions & 0 deletions changelogs/CHANGELOG_alpha.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# [8.1.0-alpha.4](https://github.com/parse-community/parse-server/compare/8.1.0-alpha.3...8.1.0-alpha.4) (2025-04-01)


### Features

* Upgrade Parse JS SDK from 6.0.0 to 6.1.0 ([#9686](https://github.com/parse-community/parse-server/issues/9686)) ([f49c371](https://github.com/parse-community/parse-server/commit/f49c371c1373d41e68b091e65f33a71ff6fc6dd0))

# [8.1.0-alpha.3](https://github.com/parse-community/parse-server/compare/8.1.0-alpha.2...8.1.0-alpha.3) (2025-03-27)


### Bug Fixes

* Parse Server doesn't shutdown gracefully ([#9634](https://github.com/parse-community/parse-server/issues/9634)) ([aed918d](https://github.com/parse-community/parse-server/commit/aed918d3109e739f7231d481b5f48c68fc01cf04))

# [8.1.0-alpha.2](https://github.com/parse-community/parse-server/compare/8.1.0-alpha.1...8.1.0-alpha.2) (2025-03-27)


### Features

* Add Cloud Code triggers `Parse.Cloud.beforeFind(Parse.File)`and `Parse.Cloud.afterFind(Parse.File)` ([#8700](https://github.com/parse-community/parse-server/issues/8700)) ([b2beaa8](https://github.com/parse-community/parse-server/commit/b2beaa86ff543a7aa4ad274c7a23bc4aa302c3fa))

# [8.1.0-alpha.1](https://github.com/parse-community/parse-server/compare/8.0.2...8.1.0-alpha.1) (2025-03-24)


### Features

* Add default ACL ([#8701](https://github.com/parse-community/parse-server/issues/8701)) ([12b5d78](https://github.com/parse-community/parse-server/commit/12b5d781dc3f8c43c0c566dffa9308d02a7d8043))

## [8.0.2-alpha.1](https://github.com/parse-community/parse-server/compare/8.0.1...8.0.2-alpha.1) (2025-03-21)


Loading