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

BOT: Dart Dependency Updater #94

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [3.3.0+1] - October 8, 2024

* Automated dependency updates


## [3.3.0] - October 5th, 2024

* Adds `path` to `Map`, `List`, and `String` objects to find the json path value.
Expand Down
2 changes: 1 addition & 1 deletion lib/expressions.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library expressions;
library;

export 'src/expressions/evaluator.dart';
export 'src/expressions/expressions.dart';
2 changes: 1 addition & 1 deletion lib/src/expressions/evaluator.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library expressions.evaluator;
library;

import 'package:json_class/json_class.dart';
import 'package:logging/logging.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/expressions/expressions.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library expressions.core;
library;

import 'package:meta/meta.dart';
import 'package:petitparser/petitparser.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/expressions/parser.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library expressions.parser;
library;

import 'package:meta/meta.dart';
import 'package:petitparser/petitparser.dart';
Expand Down
24 changes: 12 additions & 12 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
name: 'template_expressions'
description: 'A Dart library to process string based templates using expressions.'
homepage: 'https://github.com/peiffer-innovations/template_expressions'
version: '3.3.0'
version: '3.3.0+1'

environment:
environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
dependencies:
convert: '^3.1.1'
crypto: '^3.0.1'
encrypt: '^5.0.3'
fake_async: '^1.3.0'
intl: '^0.19.0'
json_class: '^3.0.0+14'
json_class: '^3.0.0+16'
json_path: '>=0.6.3 <1.0.0'
logging: '^1.2.0'
meta: '^1.12.0'
petitparser: '^6.0.1'
pointycastle: '^3.9.1'
quiver: '^3.2.1'
rxdart: '^0.27.7'
quiver: '^3.2.2'
rxdart: '^0.28.0'
yaon: '^1.1.4+10'

dev_dependencies:
flutter_lints: '^4.0.0'
test: '^1.25.7'
dev_dependencies:
flutter_lints: '^5.0.0'
test: '^1.25.8'

permittedLicenses:
permittedLicenses:
- 'Apache-2.0'
- 'BSD-2-Clause'
- 'BSD-3-Clause'
Expand All @@ -35,7 +35,7 @@ permittedLicenses:
- 'MPL-2.0'
- 'Zlib'

packageLicenseOverride:
packageLicenseOverride:
flutter: 'BSD-3-Clause'
flutter_driver: 'BSD-3-Clause'
flutter_goldens: 'BSD-3-Clause'
Expand All @@ -46,7 +46,7 @@ packageLicenseOverride:
integration_test: 'BSD-3-Clause'
rxdart: 'Apache-2.0'

ignore_updates:
ignore_updates:
- 'archive'
- 'async'
- 'boolean_selector'
Expand Down
2 changes: 1 addition & 1 deletion test/expressions/async_evaluator_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ void main() {
});

test('Call expression with subsequent stream results', () async {
await fakeAsync((async) async {
await fakeAsync((async) async* {
final expression = Expression.parse('f(x)');

const evaluator = AsyncExpressionEvaluator();
Expand Down