Skip to content

Commit

Permalink
Merge pull request #28 from leaonline/release-1.1.0
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
jankapunkt authored Mar 13, 2024
2 parents febf08a + f0604df commit ab68542
Show file tree
Hide file tree
Showing 51 changed files with 1,563 additions and 790 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20

- name: cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-14-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-14-
${{ runner.os }}-node-20-
- run: npm install
- run: npm run lint:code
Expand All @@ -37,20 +37,20 @@ jobs:
needs: [lintcode]
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20

- name: cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-14-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-14-
${{ runner.os }}-node-20-
- run: npm install
- run: npm run lint:style

Expand All @@ -60,20 +60,20 @@ jobs:
needs: [lintcode,lintstyle]
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 20

- name: cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-14-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-14-
${{ runner.os }}-node-20-
- run: npm install
- run: npm run lint:markdown
Expand All @@ -85,46 +85,46 @@ jobs:

# CHECKOUTS
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout leaonline:testing repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leaonline/testing
path: github/testing

- name: Checkout leaonline:utils repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leaonline/utils
path: github/utils

- name: Checkout leaonline:corelib repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leaonline/corelib
path: github/corelib

- name: Checkout leaonline:ui repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leaonline/ui
path: github/ui

- name: Checkout leaonline:service-registry repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leaonline/service-registry
path: github/service-registry

- name: Checkout leaonline:theme repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leaonline/theme
path: github/theme

- name: Checkout Collection2
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Meteor-Community-Packages/meteor-collection2
path: github/meteor-collection2
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
- name: Setup meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: '2.7.3'
meteor-release: '2.12'

- name: Install NPM Dependencies
run: meteor npm ci
Expand All @@ -185,7 +185,7 @@ jobs:
needs: [tests]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download coverage
uses: actions/download-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ packages/
productionSettings.json
leaconfig.json
i18n_routes.json
routes.json

# proprietary stuff
public/fonts/
public/logos/

.deploy
.production
.dev

# Logs
logs
Expand Down
22 changes: 11 additions & 11 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

meteor-base@1.5.1 # Packages every Meteor app needs to have
mobile-experience@1.1.0 # Packages for a great mobile UX
mongo@1.15.0 # The database Meteor supports right now
mongo@1.16.6 # The database Meteor supports right now
blaze-html-templates@2.0.0 # Compile .html files into Meteor Blaze views
reactive-var@1.0.11 # Reactive variable for tracker
tracker@1.2.0 # Meteor's client-side reactive programming library
reactive-var@1.0.12 # Reactive variable for tracker
tracker@1.3.2 # Meteor's client-side reactive programming library

# standard-minifier-css@1.5.3 # CSS minifier run for production mode
standard-minifier-js@2.8.0 # JS minifier run for production mode
standard-minifier-js@2.8.1 # JS minifier run for production mode
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers
ecmascript@0.16.2 # Enable ECMAScript2015+ syntax in app code
ecmascript@0.16.7 # Enable ECMAScript2015+ syntax in app code
# shell-server@0.5.0 # Server-side component of the `meteor shell` command


Expand Down Expand Up @@ -55,15 +55,15 @@ dburles:mongo-collection-instances@0.3.6
mdg:validated-method

# Accounts
accounts-base@2.2.3
accounts-password@2.3.1
accounts-base@2.2.8
accounts-password@2.3.4
leaonline:ddp-login
leaonline:ddp-login-handler
service-configuration@1.3.0
service-configuration@1.3.1

# UI
reactive-dict@1.3.0
hot-module-replacement@0.5.1
reactive-dict@1.3.1
hot-module-replacement@0.5.3
blaze-hot

fourseven:scss@4.15.0
Expand All @@ -82,7 +82,7 @@ jkuester:template-loader
ccorcos:subs-cache

# reporting
email@2.2.1
email@2.2.5

#========================================
# SECURITY
Expand Down
2 changes: 1 addition & 1 deletion .meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
METEOR@2.7.3
METEOR@2.12
104 changes: 52 additions & 52 deletions .meteor/versions
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
accounts-base@2.2.4
accounts-password@2.3.1
accounts-base@2.2.8
accounts-password@2.3.4
aldeed:autoform@7.0.0
aldeed:collection2@4.0.0
allow-deny@1.1.1
audit-argument-checks@1.0.7
autoupdate@1.8.0
babel-compiler@7.9.2
babel-compiler@7.10.4
babel-runtime@1.5.1
base64@1.0.12
binary-heap@1.0.11
blaze@2.6.1
blaze@2.7.1
blaze-hot@1.1.1
blaze-html-templates@2.0.0
blaze-tools@1.1.3
boilerplate-generator@1.7.1
caching-compiler@1.2.2
caching-html-compiler@1.2.1
callback-hook@1.4.0
callback-hook@1.5.1
ccorcos:subs-cache@0.9.12
check@1.3.1
check@1.3.2
dburles:mongo-collection-instances@0.3.6
ddp@1.4.0
ddp-client@2.5.0
ddp@1.4.1
ddp-client@2.6.1
ddp-common@1.4.0
ddp-rate-limiter@1.1.0
ddp-server@2.5.0
ddp-rate-limiter@1.2.0
ddp-server@2.6.1
deps@1.0.12
diff-sequence@1.1.1
dynamic-import@0.7.2
ecmascript@0.16.2
ecmascript-runtime@0.8.0
diff-sequence@1.1.2
dynamic-import@0.7.3
ecmascript@0.16.7
ecmascript-runtime@0.8.1
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
ejson@1.1.2
email@2.2.1
ejson@1.1.3
email@2.2.5
es5-shim@4.8.0
fetch@0.1.1
fetch@0.1.3
force-ssl@1.1.0
force-ssl-common@1.1.0
fourseven:scss@4.15.0
geojson-utils@1.0.10
geojson-utils@1.0.11
hot-code-push@1.0.4
hot-module-replacement@0.5.1
hot-module-replacement@0.5.3
html-tools@1.1.3
htmljs@1.1.1
http@2.0.0
id-map@1.1.1
inter-process-messaging@0.1.1
jkuester:http@2.2.0
jkuester:http@2.3.0
jkuester:template-loader@1.0.0
jkuester:template-states@0.3.1
jquery@3.0.0
Expand All @@ -57,69 +57,69 @@ leaonline:collection-factory@1.0.4
leaonline:corelib@1.0.0
leaonline:ddp-login@2.0.2
leaonline:ddp-login-handler@2.0.0
leaonline:method-factory@1.1.0
leaonline:method-factory@1.1.1
leaonline:publication-factory@1.1.1
leaonline:ratelimit-factory@1.0.0
leaonline:service-registry@1.0.0
leaonline:theme@1.1.0
leaonline:ui@1.0.0
leaonline:ui@1.1.0
livedata@1.0.18
lmieulet:meteor-coverage@3.2.0
localstorage@1.2.0
logging@1.3.1
mdg:validated-method@1.2.0
meteor@1.10.0
logging@1.3.2
mdg:validated-method@1.3.0
meteor@1.11.2
meteor-base@1.5.1
meteortesting:browser-tests@1.3.5
meteortesting:mocha@2.0.3
meteortesting:browser-tests@1.4.2
meteortesting:mocha@2.1.0
meteortesting:mocha-core@8.0.1
minifier-css@1.6.1
minifier-css@1.6.4
minifier-js@2.7.5
minimongo@1.8.0
minimongo@1.9.3
mobile-experience@1.1.0
mobile-status-bar@1.1.0
modern-browsers@0.1.8
modules@0.18.0
modules-runtime@0.13.0
modules-runtime-hot@0.14.0
modern-browsers@0.1.9
modules@0.19.0
modules-runtime@0.13.1
modules-runtime-hot@0.14.2
momentjs:moment@2.29.3
mongo@1.15.0
mongo@1.16.6
mongo-decimal@0.1.3
mongo-dev-server@1.1.0
mongo-id@1.0.8
npm-mongo@4.3.1
observe-sequence@1.0.20
npm-mongo@4.16.0
observe-sequence@1.0.21
ordered-dict@1.1.0
ostrio:cstorage@4.0.1
ostrio:flow-router-extra@3.9.0
ostrio:i18n@3.2.0
promise@0.12.0
ostrio:i18n@3.2.1
promise@0.12.2
raix:eventemitter@1.0.0
random@1.2.0
rate-limit@1.0.9
react-fast-refresh@0.2.3
reactive-dict@1.3.0
reactive-var@1.0.11
random@1.2.1
rate-limit@1.1.1
react-fast-refresh@0.2.7
reactive-dict@1.3.1
reactive-var@1.0.12
reload@1.3.1
retry@1.1.0
routepolicy@1.1.1
seba:minifiers-autoprefixer@2.0.1
service-configuration@1.3.0
service-configuration@1.3.1
sha@1.0.9
socket-stream-client@0.5.0
spacebars@1.3.0
socket-stream-client@0.5.1
spacebars@1.4.1
spacebars-compiler@1.3.1
standard-minifier-js@2.8.1
templating@1.4.2
templating-compiler@1.4.1
templating-runtime@1.6.1
templating-runtime@1.6.3
templating-tools@1.2.2
tmeasday:check-npm-versions@1.0.2
tracker@1.2.0
typescript@4.5.4
tracker@1.3.2
typescript@4.9.4
ui@1.0.13
underscore@1.0.10
underscore@1.0.13
url@1.3.2
webapp@1.13.1
webapp-hashing@1.1.0
webapp@1.13.5
webapp-hashing@1.1.1
zodern:types@1.0.9
Loading

0 comments on commit ab68542

Please sign in to comment.