-
-
Notifications
You must be signed in to change notification settings - Fork 136
Migration/3.0 #459
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
Open
jankapunkt
wants to merge
28
commits into
master
Choose a base branch
from
migration/3.0
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Migration/3.0 #459
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
8f3d961
deps: bump to Meteor 3.0 (stable)
jankapunkt 37cdd5c
published 3.0.0-rc.1
jankapunkt e170c87
await selector function
dokithonon 219a729
await allow, changeSelector and searchCustom
dokithonon b06983b
Merge pull request #460 from dokithonon/migration/3.0
lynchem 7f8a84e
publish 3.0.0-rc.2
jankapunkt 94848e6
observeChangesAsync
dokithonon 8541797
Merge pull request #462 from dokithonon/migration/3.0
jankapunkt 2cf3f0c
pubklished 3.0.0-rc.3
jankapunkt 4c8f727
feature(client): remove datatables npm version pinning and provide fl…
jankapunkt 15af2c5
docs: update README with 3.0 message
jankapunkt a43685e
feature(client/server): add isomorphic init function to prevent impor…
jankapunkt 0281be0
fix(deps): resolve dependency pinning
jankapunkt 41542da
publish 3.0.0-rc.4
jankapunkt 2b66bf2
Adding a property extraFieldWithSubDocument
ricaragao 9523aab
dev: add test suite
jankapunkt febb421
tests: fix imports
jankapunkt f99afe6
Merge pull request #466 from Meteor-Community-Packages/feature/extra-…
ricaragao 1989fa8
published 3.0.0-rc.5
jankapunkt 82013ef
build: add .meteorignore
jankapunkt df9c2ee
tests: added test proxy
jankapunkt d080aad
tests: make testsuite run (failing)
jankapunkt a794029
ci: add new testuite
jankapunkt f139782
fix: proper indentation
jankapunkt 0e77b42
fix: ci indenation
jankapunkt ddb21fd
ci: fix test suite
jankapunkt 146b782
ci: add permissions to testsuite
jankapunkt 8260d5f
Merge branch 'master' into migration/3.0
jankapunkt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Test suite | ||
permissions: | ||
contents: read | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
tests: | ||
name: tests | ||
runs-on: ubuntu-latest | ||
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup meteor | ||
uses: meteorengineer/setup-meteor@v1 | ||
with: | ||
meteor-release: '3.3.1' | ||
|
||
- name: cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- run: | | ||
cd test-proxy | ||
meteor npm install | ||
meteor npm run test | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package.json | ||
package-lock.json | ||
node_modules | ||
test-proxy | ||
.github | ||
biome.json |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.