Skip to content

Commit

Permalink
Meteor 3 compatiblity releases
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jul 16, 2024
1 parent e4ff9ea commit 9ebb824
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 35 deletions.
26 changes: 13 additions & 13 deletions accounts-line/.versions
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
accounts-base@2.2.10
accounts-oauth@1.4.3
accounts-base@2.2.11
accounts-oauth@1.4.4
allow-deny@1.1.1
babel-compiler@7.10.5
babel-runtime@1.5.1
base64@1.0.12
binary-heap@1.0.11
boilerplate-generator@1.7.2
callback-hook@1.5.1
check@1.3.2
check@1.4.1
ddp@1.4.1
ddp-client@2.6.1
ddp-common@1.4.0
ddp-client@2.6.2
ddp-common@1.4.1
ddp-rate-limiter@1.2.1
ddp-server@2.7.0
ddp-server@2.7.1
diff-sequence@1.1.2
dynamic-import@0.7.3
ecmascript@0.16.8
Expand All @@ -25,13 +25,13 @@ geojson-utils@1.0.11
id-map@1.1.1
inter-process-messaging@0.1.1
localstorage@1.2.0
logging@1.3.3
logging@1.3.4
meteor@1.11.5
minimongo@1.9.3
minimongo@1.9.4
modern-browsers@0.1.10
modules@0.20.0
modules-runtime@0.13.1
mongo@1.16.8
mongo@1.16.10
mongo-decimal@0.1.3
mongo-dev-server@1.1.0
mongo-id@1.0.8
Expand All @@ -47,13 +47,13 @@ reactive-var@1.0.12
reload@1.3.1
retry@1.1.0
routepolicy@1.1.1
service-configuration@1.3.3
service-configuration@1.3.4
socket-stream-client@0.5.2
storyteller:accounts-line@1.3.2-alpha.2
storyteller:line-oauth@1.4.1-alpha.2
storyteller:accounts-line@1.3.2
storyteller:line-oauth@1.4.1
tracker@1.3.3
typescript@4.9.5
underscore@1.6.0
underscore@1.6.1
url@1.3.2
webapp@1.13.8
webapp-hashing@1.1.1
Expand Down
3 changes: 3 additions & 0 deletions accounts-line/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## 1.3.2 - 2024-07-16
* Meteor 3 release

## 1.3.2-alpha.2 - 2024-05-04
* Meteor build targets added for 3.0-rc.0
* Updated `zodern:types` to version 1.0.13
Expand Down
6 changes: 3 additions & 3 deletions accounts-line/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
Package.describe({
name: 'storyteller:accounts-line',
summary: 'Login service for LINE accounts',
version: '1.3.2-alpha.2',
version: '1.3.2',
git: 'https://github.com/StorytellerCZ/meteor-accounts-line'
});

Package.onUse(api => {
api.versionsFrom(['2.3.6', '2.9.0', '3.0-rc.0']);
api.versionsFrom(['2.9.0', '3.0']);
api.use(['ecmascript', 'typescript']);
api.use('zodern:types@1.0.13')
api.use('accounts-base', ['client', 'server']);
// Export Accounts (etc) to packages using this one.
api.imply('accounts-base', ['client', 'server']);
api.use('accounts-oauth', ['client', 'server']);
api.use('storyteller:line-oauth@1.4.1-alpha.2');
api.use('storyteller:line-oauth@1.4.1');
api.imply('storyteller:line-oauth');

// If users use accounts-ui but not facebook-config-ui, give them a tip.
Expand Down
3 changes: 3 additions & 0 deletions line-config-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## 1.2.2 - 2024-07-XX
* Meteor 3 release

## 1.2.1 - 2024-05-04
* Meteor build targets added for 3.0-rc.0
* Updated `zodern:types` to version v1.0.13
Expand Down
4 changes: 2 additions & 2 deletions line-config-ui/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
Package.describe({
name: 'storyteller:line-config-ui',
summary: 'Blaze configuration templates for LINE OAuth.',
version: '1.2.1',
version: '1.2.2',
git: 'https://github.com/StorytellerCZ/meteor-accounts-line'
});

Package.onUse(api => {
api.versionsFrom(['2.3.6', '3.0-rc.0']);
api.versionsFrom(['2.3.6', '3.0']);
api.use('zodern:types@1.0.13', 'server')
api.use(['ecmascript', 'typescript'], 'client');
api.use('templating@1.4.3 || 2.0.0-alpha300.10', 'client');
Expand Down
22 changes: 11 additions & 11 deletions line-oauth/.versions
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
accounts-base@2.2.10
accounts-base@2.2.11
allow-deny@1.1.1
babel-compiler@7.10.5
babel-runtime@1.5.1
base64@1.0.12
binary-heap@1.0.11
boilerplate-generator@1.7.2
callback-hook@1.5.1
check@1.3.2
check@1.4.1
ddp@1.4.1
ddp-client@2.6.1
ddp-common@1.4.0
ddp-client@2.6.2
ddp-common@1.4.1
ddp-rate-limiter@1.2.1
ddp-server@2.7.0
ddp-server@2.7.1
diff-sequence@1.1.2
dynamic-import@0.7.3
ecmascript@0.16.8
Expand All @@ -24,13 +24,13 @@ geojson-utils@1.0.11
id-map@1.1.1
inter-process-messaging@0.1.1
localstorage@1.2.0
logging@1.3.3
logging@1.3.4
meteor@1.11.5
minimongo@1.9.3
minimongo@1.9.4
modern-browsers@0.1.10
modules@0.20.0
modules-runtime@0.13.1
mongo@1.16.8
mongo@1.16.10
mongo-decimal@0.1.3
mongo-dev-server@1.1.0
mongo-id@1.0.8
Expand All @@ -46,12 +46,12 @@ reactive-var@1.0.12
reload@1.3.1
retry@1.1.0
routepolicy@1.1.1
service-configuration@1.3.3
service-configuration@1.3.4
socket-stream-client@0.5.2
storyteller:line-oauth@1.4.1-alpha.2
storyteller:line-oauth@1.4.1
tracker@1.3.3
typescript@4.9.5
underscore@1.6.0
underscore@1.6.1
url@1.3.2
webapp@1.13.8
webapp-hashing@1.1.1
Expand Down
9 changes: 5 additions & 4 deletions line-oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog
## 1.4.2-alpha.3 - 2024-05-04
* Meteor build targets added for 3.0-rc.0
* Updated `zodern:types` to version 1.0.13
## 1.4.1 - 2024-07-16
* Meteor 3 release

## 1.4.1-alpha.2 - 2023-08-24
## 1.4.1-alpha.2 - 2024-05-04
* Use async call to `ServiceConfiguration`
* * Meteor build targets added for v3.0
* Updated `zodern:types` to version 1.0.13

## 1.4.1-alpha.1 - 2023-08-24
* Added target of Meteor `3.0-alpha.11` to allow building in Meteor 3.0 alpha
Expand Down
4 changes: 2 additions & 2 deletions line-oauth/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name: 'storyteller:line-oauth',
summary: 'LINE OAuth flow',
version: '1.4.1-alpha.2',
version: '1.4.1',
git: 'https://github.com/StorytellerCZ/meteor-accounts-line'
});

Expand All @@ -11,7 +11,7 @@ Npm.depends({
});

Package.onUse(api => {
api.versionsFrom(['2.9.0', '3.0-rc.0']);
api.versionsFrom(['2.9.0', '3.0']);
api.use('zodern:types@1.0.13', 'server')
api.use(['ecmascript', 'typescript'], ['client', 'server']);
api.use('oauth2', ['client', 'server']);
Expand Down

0 comments on commit 9ebb824

Please sign in to comment.