Skip to content
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

Release v0.1.1 #81

Merged
merged 27 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ad5bd06
Update totalAwarded on Badge mint
nup9151f Dec 2, 2024
6bbe097
Added ERC20Point tokens support
nup9151f Dec 3, 2024
c8ecc9d
Merge pull request #74 from open-format/feature/of-487-subgraph-not-s…
nup9151f Dec 3, 2024
905a834
Enums for token type and deleted pointToken
nup9151f Dec 5, 2024
f9c2bd2
Merge pull request #75 from open-format/feature/of-488-update-subgrap…
nup9151f Dec 6, 2024
959bf4b
Remove generated subgraph.yaml files
george-openformat Dec 5, 2024
a0fb298
Ignore generated yaml files
george-openformat Dec 5, 2024
18d1894
Add reward entity to schema, deprecate mission and action entities
george-openformat Dec 9, 2024
9ff489c
Add todo's to remove deprecated functions
george-openformat Dec 9, 2024
ebe7453
Remove old comments
george-openformat Dec 9, 2024
5627f61
Remove unused entity
george-openformat Dec 9, 2024
29187ed
Update tests so that badge is created before
george-openformat Dec 10, 2024
a4d1327
Refactor so token association is in updated handlers
george-openformat Dec 10, 2024
91c6291
Update changelog, bump version
george-openformat Dec 10, 2024
0eecfb1
Add tests for reward entity
george-openformat Dec 10, 2024
e9ac1c6
Rename badges to badgeTokens
george-openformat Dec 11, 2024
4185b72
Merge pull request #76 from open-format/feature/of-328-replace-missio…
george-openformat Dec 11, 2024
689e3aa
Merge pull request #77 from open-format/feature/of-308-ignore-generat…
george-openformat Dec 11, 2024
4daf1d2
Added Fly deployment and config files for Turbo chain
nup9151f Jan 9, 2025
9a4e4a6
Updated test workflow file
nup9151f Jan 9, 2025
4bb1fd1
Add deployment scripts for arbitrum-one and arbitrum-sepolia graph st…
george-openformat Jan 9, 2025
00b4b99
clean up polygon testnet files and scripts
george-openformat Jan 9, 2025
6328c0a
Update changelog with release v0.1.1
george-openformat Jan 9, 2025
19e8cb0
Merge pull request #79 from open-format/feature/of-596-deploy-subgrap…
nup9151f Jan 9, 2025
2e50b48
Fix test workflow
george-openformat Jan 9, 2025
7c240bf
Merge branch 'staging' into feature/of-595-deploy-latest-rewardfacet-…
george-openformat Jan 9, 2025
81363d1
Merge pull request #80 from open-format/feature/of-595-deploy-latest-…
george-openformat Jan 9, 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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
run-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: Execute Tests
steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,9 @@ typings/
.yarn
.pnp*

tests/.bin/
tests/.bin/

# generated subgraph.yaml files
subgraph.*.yaml
# Except for subgraph.template.yaml
!subgraph.template.yaml
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.1.1] - 2025-01-09

### Added
- `Reward` entity ([#76](https://github.com/open-format/subgraph/pull/76))
- Support for different `FungibleToken` types ([#75](https://github.com/open-format/subgraph/pull/75))

### Fixed
- Bug with totalAwarded not updating on `Badge` entity ([#74](https://github.com/open-format/subgraph/pull/74))

### Deprecated
- `Mission` and `Action` entities ([#76](https://github.com/open-format/subgraph/pull/76))


## [v0.1.0] - 2024-11-19

Expand Down
Loading